Blogger Information
Blog 9
fans 0
comment 0
visits 20597
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Ubuntu 16.04搭建LAMP环境
霸霸的博客
Original
1201 people have browsed it

参考的原文:原文链接:https://www.linuxidc.com/Linux/2016-10/136327.htm

腾讯云买了一个学生机,系统选的是ubuntu16.04,学习的是PHP,所以搭建一个lamp环境。

sudo apt-get update //更新源

1.安装apache

sudo apt-get install apache2

测试: 浏览器访问http://Ubuntu的IP,出现It Works!网页。

•查看状态:

 service apache2 status/start/stop/restart

       •Web目录: /var/www

       •安装目录: /etc/apache2/

       •全局配置: /etc/apache2/apache2.conf

       •监听端口: /etc/apache2/ports.conf

       •虚拟主机: /etc/apache2/sites-enabled/000-default.conf


2.安装mysql

sudo apt-get install mysql-server mysql-client

    •测试:

mysql -u root -p


3.安装PHP

sudo apt-get install php7.0

测试:php7.0 -v

4.安装其他模块

sudo apt-get install libapache2-mod-php7.0
sudo apt-get install php7.0-mysql

安装完了之后重启Apache和mysql:      

   ◦ sudo service apache2 restart
   ◦ sudo service mysql restart


5.修改文件夹权限

sudo chmod 777 /var/www    //  sudo chmod -R 777 /var/www  修改文件夹以及所有子文件的权限


6.安装phpmyadmin

sudo apt-get install phpmyadmin
  • 有一个选项要选择apache,回车。

  • 创建phpmyadmin快捷方式 : 

sudo ln -s /usr/share/phpmyadmin /var/www/html
  • 启用Apache 的mod_rewrite模块:

sudo a2emmod rewrite
  • 重启服务:

sudo service php7.0-fpm restart
sudo service apache2 restart
  • 测试 :浏览器访问 http://域名或者公网ip/phpmyadmin


7.配置Apache

vim /etc/apache2/apache2.conf

添加:

AddType application/x-httpd-php .php .htm .html
AddDefaultCharset UTF-8

重启Apache服务

这样一个PHP运行环境就在服务器搭建起来啦

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post