deepin 15.5 LAMP(Apache ,MySQL,PHP) + phpMyadmin 安装

参考各种 Blog ,安装过 lamp,XAMPP(lampp),MySQL 5.7,MariaDB 10.1 ....... 折腾了一天,耗了这么多时间,没能安装完成。最后尝试出安装成功的方案,有必要记录一下,这种事一次就够了。

在 deepin 15.5 桌面版配置成功的过程。
系统是刚刚全新安装的。

使用 root 用户

$ sudo -i

安装 Apache2

# apt-get install apache2

打开浏览器访问 localhost 成功


localhost

安装 MySQL 5.6

# apt-get install mysql-server-5.6

安装过程设置 root 密码

登录 MySQL

# mysql -u root -p

输入密码(密码不可见)回车确认

Enter password: 

输入 quit <回车> 退出 MySQL

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.6.30-1 (Debian)

Copyright (c) 2000, 2016, 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.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> quit
Bye

如果要修改 MySQL 用户密码,如 root 用户

# mysqladmin -u root -p password

输入原密码,输入新密码,再次输入新密码

Enter password: 
New password: 
Confirm new password: 

安装 PHP 5

# apt-get install php5

新建一个 info.php 文件

# vim /var/www/html/info.php

输入如下内容,并保存


访问 localhost/info.php 成功,表示 PHP 5 成功安装


info.php

安装 phpMyadmin

# apt-get install phpmyadmin
phpMyadmin
phpMyadmin1
phpMyadmin2

建立软连接

# ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin

访问 http://localhost/phpmyadmin/

phpmyadmin3

安装 php5-mysqlnd(代替mysqli)

# apt-get install php5-mysqlnd

重启 apache2

# systemctl restart apache2

刷新浏览器页面,使用 root 用户登录

phpmyadmin4

root 用户登录成功

phpmyadmin5

Apache、MySQL、PHP 和 phpMyadmin 安装完成 ,有什么问题以后再补充。

说明:MySQL 5.7 版本使用 phpMyadmin 登录,所以使用 5.6版本;
先安装 php5 防止安装 phpMyadmin 后默认使用 php7.1;

你可能感兴趣的:(deepin 15.5 LAMP(Apache ,MySQL,PHP) + phpMyadmin 安装)