LAMP 是 Linux、Apache、MySQL、PHP 的简称。本教程使用的 Ubuntu 14.04 LTS Server 64 位的系统,安装 Apache2 web服务、PHP5 支持 (mod_php)和 MySQL。
使用 SSH 连接到服务器,切换到 ROOT 账户:
sudo su
在正式安装之前更换一下源,国内的服务器,替换到国内源,为防止意外,先备份源:
cp /etc/apt/sources.list /etc/apt/sources.list_backup
在用vi编辑:
vi /etc/apt/sources.list
我比较喜欢中科大的源,比较快,共享一下:
deb trusty main restricted universe multiverse
deb trusty-security main restricted universe multiverse
deb trusty-updates main restricted universe multiverse
deb trusty-proposed main restricted universe multiverse
deb trusty-backports main restricted universe multiverse
deb-src trusty main restricted universe multiverse
deb-src trusty-security main restricted universe multiverse
deb-src trusty-updates main restricted universe multiverse
deb-src trusty-proposed main restricted universe multiverse
deb-src trusty-backports main restricted universe multiverse
跟新源:
apt-get update
1、安装数据库MySQL 5
apt-get install mysql-server mysql-client
系统提示设置密码:
--------------------------------------分割线 --------------------------------------
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置
CentOS 5.9下编译安装LAMP(Apache 2.2.44+MySQL 5.6.10+PHP 5.4.12)
RedHat 5.4下Web服务器架构之源码构建LAMP环境及应用PHPWind
LAMP源码环境搭建WEB服务器Linux+Apache+MySQL+PHP
--------------------------------------分割线 --------------------------------------
New password for the MySQL “root” user:<– 输入你的root密码
Repeat password for the MySQL “root” user:<– 在输入一次
2、安装 Apache:
apt-get install apache2
然后浏览器访问:
默认目录:/var/www/html,配置文件:/etc/apache2/apache2.conf
3、安装 PHP:
apt-get install php5 libapache2-mod-php5
再重启 apache2
service apache2 restart
4、测试 PHP,建立一个探针文件:
vi /var/www/html/info.php