美文网首页
Ubuntu16.04 搭建LAMP7 - A2.4-M5.7-

Ubuntu16.04 搭建LAMP7 - A2.4-M5.7-

作者: 贾龙飞 | 来源:发表于2018-03-17 17:35 被阅读0次

    首先当然是链接服务器

    # ssh 用户名@服务器IP
    ssh root@192.168.0.1
    
    Snip20180317_1.png

    习惯复制代码的朋友请忽略此段 为了方便,这里我使用su命令切换到超管的身份,如果使用普通用户的话,后面图片中的所有命令,请配合 sudo 命令使用,否则部分命令会提示权限不足。


    开始安装

    • 1.更新资源库
    sudo apt-get update
    
    Snip20180317_2.png
    • 2.安装Apache2.4
    sudo apt-get install apache2
    
    Snip20180317_3.png
    • 3.安装PHP7.0
    sudo apt-get install php7.0
    
    Snip20180317_4.png
    • 4.安装依赖libapache2-mod-php7.0
    sudo apt-get install libapache2-mod-php7.0
    
    Snip20180317_5.png
    • 5.安装MySQL5.7
    sudo apt-get install mysql-server
    

    注意:安装过程需要 输入 和 确认 MySQL root 账户的密码

    Snip20180317_6.png
    • 6.安装依赖php7.0-mysql
    sudo apt-get install php7.0-mysql
    
    Snip20180317_7.png

    其他

    重启服务的命令

    • 重启Apache
    sudo service apache2 restart
    
    • 重启MySQL
    sudo service mysql restart
    

    默认访问路径
    /var/www/html/

    可以通过下面的配置文件修改默认访问路径
    /etc/apache2/apache2.conf
    /etc/apache2/sites-available/000-default.conf

    修改方式

    sudo vim /etc/apache2/apache2.conf
    # 将 <Directory /var/www/>
    # 改成 <Directory "自定义目录"> 即可
    
    sudo vim /etc/apache2/sites-available/000-default.conf
    # 将 DocumentRoot /var/www/html
    # 改成 DocumentRoot "自定义目录" 即可
    
    # 重启以生效
    sudo /etc/init.d/apache2 restart
    

    相关文章

      网友评论

          本文标题:Ubuntu16.04 搭建LAMP7 - A2.4-M5.7-

          本文链接:https://www.haomeiwen.com/subject/rfujqftx.html