红联Linux门户
Linux帮助

ubuntu12.04&15.04安装lamp(12.04为主)

发布时间:2015-07-30 15:47:35来源:csdn作者:二师兄被妖怪抓走了

注意:如果是ubuntu15.04下,apache2.4.10的话,直接在/etc/apache2/apache2.conf文件的后边直接加上:
#ServerName
ServerName 127.0.0.1
然后 sudo apachectl restart。
如果不行的话,再执行下文的第2.2点。
特别注意:如果修改了apache的配置文件一定记得让配置生效:sudo apachectl graceful


以下是UBUNTU12.04
1) 安装LAMP
>sudo apt-get install apache2 mysql-server mysql-client php5 php5-gd php5-mysql
配置MYSQL-SERVER密码。
 
1.1、安装完成后,
APACHE的配置文件目录:/etc/apache2
PHP的配置文件目录:/etc/php5
MYSQL的配置文件目录:/etc/mysql


2)配置APACHE
2.1 修改httpd.conf
sudo gedit /etc/apache2/httpd.conf
2.2 默认的httpd.conf是个空文件,现在向里面加入如下内容:
ServerName localhost
2.3 重启APACHE
sudo apachectl restart
2.4 sudo gedit /var/www/index.php
输入:
<?php
echo "hello word!";
?>
保存退出
2.5 让配置生效:sudo apachectl graceful
2.6 浏览器中输入:http://localhost/
显示:hello word!


Ubuntu 14.10下安装LAMP服务图文详解:http://www.linuxdiyf.com/linux/10304.html

CentOS/Debian/Ubuntu系统一键安装LNMP/LAMP/LNMPA网站环境:http://www.linuxdiyf.com/linux/13084.html

在ubuntu搭建lamp环境:http://www.linuxdiyf.com/linux/12413.html

CentOS 7下搭建LAMP平台环境:http://www.linuxdiyf.com/linux/12558.html

Ubuntu Server 14.04安装LAMP:http://www.linuxdiyf.com/linux/11349.html