Ubuntu搭建LAMP开发环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu搭建LAMP开发环境相关的知识,希望对你有一定的参考价值。

1、安装Apache

sudo apt-get install apache2

测试: 浏览器访问 (如:http://localhost),出现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
查看状态:service mysql status/start/stop/retart
查看监听端口的情况:netstat -tunpl或 netstat -tap

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

重启服务

service apache2 restart 
service mysql restart 

测试
vim /var/www/html/phpinfo.php
文件中写:<?php echo phpinfo();?>
浏览器访问:http://地址/phpinfo.php(即http://localhost/phpinfo.php),出现PHP Version网页

5.修改权限

sudo chmod 777 /var/www

6.安装phpMyAdmin

sudo apt-get install phpmyadmin

安装:选择apache2,点击确定。下一步选择是要配置数据库,并输入密码。
创建phpMyAdmin快捷方式:sudo ln -s /usr/share/phpmyadmin /var/www/html
启用Apache mod_rewrite模块:sudo a2enmod rewrite

重启服务:

service php7.0-fpm restart 
service apache2 restart

测试:浏览器访问:http://地址/phpmyadmin(即http://localhost/phpmyadmin)

7.配置Apache

vim /etc/apache2/apache2.conf

添加:

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

重启Apache服务

service apache2 restart













以上是关于Ubuntu搭建LAMP开发环境的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 16.04搭建LAMP开发环境

Ubuntu搭建LAMP开发环境

Ubuntu-server14.04搭建LAMP环境

在LINUX UBUNTU下用LAMP搭建的服务环境可以支持局域网内或者不是局域网内其他电脑登陆查看吗?

Mac下用brew搭建LNMP和LAMP开发环境

Ubuntu 17.04 搭建LAMP服务器环境流程