美文网首页我爱编程
Ubuntu 16.04搭建LAMP开发环境

Ubuntu 16.04搭建LAMP开发环境

作者: Lucy_Lucy | 来源:发表于2018-03-28 18:46 被阅读0次

    本文转载自:https://blog.csdn.net/miaoqiucheng/article/details/72663636

    基本设置

    1.用xshell链接到服务器的公网ip
    2.修改root密码
    sudo passwd
    切换到root用户:su 或 su - 或 su root
    切换到普通用户:su 用户名 或 logout
    3.更新源
    sudo apt-get update
    源保存的文件为:/etc/apt/sources.list

    安装常用软件

    1.SSH
    sudo apt-get install openssh-server

    或:/etc/init.d/ssh status/start/stop/retsrt 
    实际上,service命令就是执行/etc/init.d脚本,二者功能是一样的
    

    2.Vim
    sudo apt-get install vim
    3.Tree
    sudo apt-get install tree
    4.Git
    sudo apt-get install git

    搭建LAMP

    1.安装apache
    sudo apt-get install apache2

    测试: 浏览器访问[http://Ubuntu](http://ubuntu/)的IP(即`http://localhost`),出现It Works!网页。 
    查看状态: 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 
    

    2.安装mysql
    sudo apt-get install mysql-server mysql-client

    测试:mysql -u root -p 
    查看状态:service mysql status/start/stop/retart 
    查看监听端口的情况:netstat -tunpl或 netstat -tap
    

    3.安装php
    sudo apt-get install php7.0

    测试:php7.0 -v
    

    4.安装其他模块
    sudo apt-get install libapache2-mod-php7.0
    sudo apt-get install php7.0-mysql

    重启服务 
    service apache2 restart
    service mysql restart
    测试Apache能否解析PHP 
    vim /var/www/html/phpinfo.php
    文件中写:<?php echo phpinfo();?> 
    浏览器访问:[http://ubuntu](http://ubuntu/)地址/phpinfo.php(即http://localhost/phpinfo.php),出现PHP Version网页
    

    5.修改权限
    sudo chmod 777 /var/www
    6.安装phpMyAdmin

    sudo apt-get install phpmyadmin
    sudo apt-get install php-mbstring
    sudo apt-get install php-gettext
    
    接下来是激活PHP的mcrypt和mbstring扩展,
    $ sudo phpenmod mcrypt
    $ sudo phpenmod mbstring
    

    安装:选择apache2,点击确定。下一步选择是要配置数据库,并输入密码。
    创建phpMyAdmin快捷方式:sudo ln -s /usr/share/phpmyadmin /var/www/html
    启用Apache mod_rewrite模块:sudo a2enmod rewrite
    重启服务:
    service php7.0-fpm restart
    service apache2 restart
    测试:浏览器访问:http://ubuntu地址/phpmyadmin(`http://localhost/phpmyadmin)

    7.配置Apache
    `vim /etc/apache2/apache2.conf`
    `添加:` ```AddType application/x-httpd-php .php .htm .html ```
    ```AddDefaultCharset UTF-8 ```
    `重启Apache服务`
    
    

    相关文章

      网友评论

        本文标题:Ubuntu 16.04搭建LAMP开发环境

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