LAMP指的Linux(操作系统)、ApacheHTTP 服务器,MySQL(有时也指MariaDB,数据库软件) 和PHP(有时也是指Perl或Python) 的第一个字母,一般用来建立web应用平台
一、虚拟机上安装ubunto
- 最简单的方法:
虚拟机--新建虚拟机--经典模式--设镜像地址--设置admin账户和pwd--创建完成,虚拟机自动加载IOS
- 注意事项:
ubuntu系统默认root用户是不能登录的,密码也是空的。 如果要使用root用户登录,必须先为root用户设置密码 打开终端,输入:sudo passwd root 然后按回车后键入root用户密码
二、安装apache
1.使用命令:"sudo apt-get install apache2"
- 注意事项:
1)需要注意的是我在使用这个命令后出现了报错,报错信息:"E:Unable to correct problems,you have held broken packages."
2)使用命令"sudo apt-get update"解决,但是貌似更新速度会很慢,看网上有朋友说可以更换一下源,换成了163的源,果然速度快了一些,更换方法如下:
a.使用命令备份ubunto自带的源列表,有备无患嘛。"sudo cp /etc/apt/sources.list /etc/apt/sources.list10"
b.修改更新源(记得加sudo)。"sudo vim /etc/apt/sources.list"
c.把163的源贴进去(#是注释,所以可以放心贴)
#163 deb http://mirrors.163.com/ubuntu/ natty main universe restricted multiverse deb-src http://mirrors.163.com/ubuntu/ natty main universe restricted multiverse deb http://mirrors.163.com/ubuntu/ natty-security universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-security universe main multiverse restricted deb http://mirrors.163.com/ubuntu/ natty-updates universe main multiverse restricted deb http://mirrors.163.com/ubuntu/ natty-proposed universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-proposed universe main multiverse restricted deb http://mirrors.163.com/ubuntu/ natty-backports universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-backports universe main multiverse restricted deb-src http://mirrors.163.com/ubuntu/ natty-updates universe main multiverse restricted
d.保存退出vim格式(:wq+enter是vim中的保存退出)
e.使用命令"sudo apt-get update"更新一下库
3)"sudo apt-get update"执行完毕后再使用命令"sudo apt-get install apache2"这次应该就可以正常下载apache服务器了
2.安装完成后打开浏览器输入"127.0.0.1"或"localhost"如果可以正常加载说明apache安装成功(默认根目录:/var/www/)
三、安装Mysql
1.使用命令"sudo apt-get install mysql-server-5.0"
- 注意事项:
这里又出了一个错"package ‘mysql-server-5.0‘ has no installation candidate",解决方法如下:
1)"sudo apt-get update"
2)"sudo apt-get upgrade"(若出现类似"The following packages have been kept back"的报错请使用命令"sudo apt-get -u dist-upgrade"统一更新到发布的版本)
3)"sudo apt-get install mysql-server-5.0"
2.安装过程中应该会提示输入密码,请牢记密码
三、安装PHP 5 and Apache PHP 5 module
1.使用命令"sudo apt-get install php5 libapache2-mod-php5"
2.使用命令"sudo /etc/init.d/apache2 restart"
3.试试成功否:
命令:gksudo gedit /var/www/text.php 【在apache默认根目录/var/www/下创建一text.php文件】
在text.php文件中输入以下代码检验是否安装成功:
<?php
echo "hello,world";
?>
在浏览器地址栏输入:http://localhost/text.php 如果页面显示helloworld则表示成功
四、让apache和php支持php
1."sudo apt-get install libapache2-mod-auth-mysql"
2."sudo apt-get install php5-mysql"
3."sudo /etc/init.d/apache2 restart"(重启apache)
--------------------------------------------------------------------------
至此环境已搭建完!
/var/www/(apache2网页文件放在这里)
/var/lib/mysql(mysql文件放在这里)
如果你要远程连接的话,还要安装SSH,命令:sudo apt-get install ssh