Debian 8.10에서 Php 5.6 및 Mysql 5.6.x를 실행할 수 있습니까?
답변1
PHP-5.6은 debian jessie에서 사용할 수 있으며 다음을 통해 설치할 수 있습니다.
apt-get install php5
MySQL-5.6은 다음을 통해 설치할 수 있습니다.MySQL APT 저장소:
wget https://repo.mysql.com//mysql-apt-config_0.8.9-1_all.deb
dpkg -i mysql-apt-config_0.8.9-1_all.deb
5.6
Debian jessie를 선택한 다음 패키지를 통해 버전을 업데이트하고 설치합니다 .mysql
mysql-community-server
apt-get install mysql-community-server
mysql_secure_installation
mysql_install_db
systemctl start mysql
MySQL 버전을 확인하세요.
mysqladmin -p -u root version
예제 출력:
mysqladmin Ver 8.42 Distrib 5.6.39, for Linux on x86_64
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Server version 5.6.39
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /var/run/mysqld/mysqld.sock
Uptime: 1 min 32 sec
또는 mysql --version
:
mysql Ver 14.14 Distrib 5.6.39, for Linux (x86_64) using EditLine wrapper
답변2
예, Debian 8에서 PHP 5.6 및 MySQL 5.6을 실행할 수 있으며 실제로는 Debian 8의 기본값입니다.
매우 기본적인 작업으로 설치하세요.
apt-get install mysql-server php5
그러나 더 나은 경험을 위해 다음을 권장합니다.
apt-get install mysql-server php5 php-pear php5-mysql apache2