在Ubuntu上搭建LAMP平台

1.安装 Apache2服务器

终端:sudo apt-get install apache2 ,然后测试是否安装成功。

在Ubuntu上搭建LAMP平台_第1张图片

 浏览器地址栏输入:http://localhost,回车,出现下图所示内容则代表成功!

在Ubuntu上搭建LAMP平台_第2张图片

 2.安装PHP7.0和Apache的php模块

终端:sudo apt-get install  libapache2-mod-php7.0 

在Ubuntu上搭建LAMP平台_第3张图片

 重启Apache服务使php模块生效.

终端:sudo /etc/init.d/apache2 restart

测试php7.0是否安装成功,先编辑一个测试文件

终端:sudo vi /var/www/html/phpinfo.php,输入如下内容:

vi 操作:按 i 进入编辑模式,按 esc 退出编辑模式 ,然后接着输入 :wq 表示保存

退出保存,然后再在浏览器地址栏输入:http://localhost/phpinfo.php,出现如图所示内容表示安装成功!

在Ubuntu上搭建LAMP平台_第4张图片

 3.安装MySQL数据库,终端:sudo apt-get install mysql-server mysql-client 安装过程会提示设置密码,要记住密码就是了!

在Ubuntu上搭建LAMP平台_第5张图片

 在Ubuntu上搭建LAMP平台_第6张图片

 在Ubuntu上搭建LAMP平台_第7张图片

 直接输入两次密码即可,帐号默认为root

最后使用命令重启数据库

终端:sudo /etc/init.d/mysql restart

4.安装mysql的界面管理phpmyadmin

终端:sudo apt-get install phpmyadmin

在Ubuntu上搭建LAMP平台_第8张图片

安装过程会有提示选择web服务器,选中apache2,回车

在Ubuntu上搭建LAMP平台_第9张图片

 在随后过程中出现对配置数据库的选择时,选择no

在Ubuntu上搭建LAMP平台_第10张图片

phpmyadmin安装完后,并不在apache默认路径下,需要建立一个连接:

终端:sudo ln -s /usr/share/phpmyadmin /var/www/html

重启apache服务器,终端:sudo service apache2 restart

 

 5.PHP与MySQL协调工作

再进行一次测试,测试PHP与MySQL数据库是否能够协调工作

浏览器打开:http://localhost/phpmyadmin

出现下图所示登录页面则表示安装成功!

在Ubuntu上搭建LAMP平台_第11张图片

 

你可能感兴趣的:(ubuntu,apache,linux)