LAMP 服务器搭建 ubuntu 16.04 篇

1. 更新源

    sudo apt-get update

2. Apache2 安装

    sudo apt-get install apache2
    查看状态: 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

&测试

<在浏览器中输入:http://localhost或http://127.0.0.1,可以看到下图:>

3. PHP安装

&安装代码

    sudo apt-get install php7.0 
    // ubuntu16.04中没有php5了,直接装7吧
     sudo apt-get install libapache2-mod-php7.0 
     // 配置APACHE+PHP7的
     sudo /etc/init.d/apache2 restart 
     // 重启

测试php文件

在你的目录下建一个 test.php
输入代码,然后浏览器输入对应文件夹名字可以看到如下图
phpinfo();


4. MySql 安装

&安装代码

    sudo apt-get install mysql-server mysql-client
    // 安装时会要求输入mysql管理员密码,输入即可  

常用软件 安装

1. SSH

    sudo apt-get installr openssh-server

2. Vim

    sudo apt-get installr vim

3. git

    sudo apt-get installr git

你可能感兴趣的:(LAMP 服务器搭建 ubuntu 16.04 篇)