Aliyu+Ubuntu14.04安装lamp-server^

我的安装步骤如下:

经过几次失败,最终成功安装,为方便以后再配置,特记录下成功的过程

1.在正式安装之前更换一下源

国外的服务器,替换到国内源,为防止意外,先备份源:
cp /etc/apt/sources.list /etc/apt/sources.list_backup

2.更新源,我比较喜欢中科大的源

在用vi编辑:vi /etc/apt/sources.list替换成如下内容

deb http://debian.ustc.edu.cn/ubuntu/ trusty main restricted universe multiverse
deb http://debian.ustc.edu.cn/ubuntu/ trusty-security main restricted universe multiverse
deb http://debian.ustc.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse
deb http://debian.ustc.edu.cn/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://debian.ustc.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://debian.ustc.edu.cn/ubuntu/ trusty main restricted universe multiverse
deb-src http://debian.ustc.edu.cn/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://debian.ustc.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://debian.ustc.edu.cn/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://debian.ustc.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse

更新:apt-get update

3.安装lamp-server,图文详解可以参考(如何在Ubuntu上安装LAMP)

Ubuntu的开发人员让人们很容易安装和配置LAMP软件包,只要借助一个终端命令。所以,打开终端窗口,输入以下命令:
sudo apt-get install lamp-server^后面这个^不能少

4.配置Apache虚拟主机,详细过程参考(在Ubuntu 14.04 LTS系统中设置Apache虚拟主机)

  1. 打开目录 /etc/apache2/sites-available/, 发现 default 和 default-ssl 两个文件, 其中 default 是 http 虚拟主机服务的配置文件, default-ssl 是配置 https 服务使用的. 可以复制一份 default 文件. 并修改配置文件名, 文件名必须与域名一致 (如: demo.neoease.com)

  2. 打开新建的配置文件, 修改 DocumentRoot, ServerName 和对应的配置目录. 例子如下:

#
# DocumentRoot 是网站文件存放的根目录
# ServerName 是网站域名, 需要跟 DNS 指向的域名一致
#
80>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot /var/www/httpdocs/demo_neoease_com
    ServerName demo.neoease.com
    ErrorLog ${APACHE_LOG_DIR}/demo.neoease.com-error.log
    CustomLog ${APACHE_LOG_DIR}/demo.neoease.com-access.log combined
  1. 通过 a2ensite 激活虚拟主机配置
    sudo a2ensite demo.neoease.com
  2. 打开目录 /etc/apache2/sites-enabled/, 你会发现所有激活的虚拟主机, 可以通过 a2dissite 进行注销
    sudo a2dissite demo.neoease.com
  3. 重启 Apache 服务, 激活虚拟主机
    service apache2 restart

你可能感兴趣的:(Linux-杂货铺)