ubuntu16.04快速安装LNMP

Posted 知秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu16.04快速安装LNMP相关的知识,希望对你有一定的参考价值。

ubuntu16默认安装的LNMP(nginx:1.10 php:7.0 mysql:5.7)
1.更新ubuntu软件源:

apt-get update

2.安装nginx:

apt-get install nginx
访问ip可以看到Welcome Nginx的界面,说明nginx安装成功

3.安装mysql:

apt-get install mysql-server mysql-client

4.安装php:

apt-get install php php-gd php-xml php-mbstring php-curl php-mysql php-mongodb

5.nginx简单配置:

vim /etc/php/7.0/fpm/pool.d/www.conf   #修改php-fpm配置文件
listen = /run/php/php7.0-fpm.sock
#listen = 127.0.0.1:9000
php-fpm7.0 -t  #检查下配置文件是否有错误
service php7.0-fpm restart   #重启 php-fpm7.0  
vim /etc/nginx/sites-enabled/default   #修改nginx配置文件
root /var/www;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
location ~ \\.php$ { 
          #socket 方式 必须和php-fpm设置的listen路径一样
          # With php7.0-fpm:
          fastcgi_pass unix:/run/php/php7.0-fpm.sock;
          # With php7.0-cgi alone:
          #fastcgi_pass 127.0.0.1:9000;
}
nginx -t  #检查下配置文件是否有错误
service nginx restart   #重启nginx

6.网站测试:

mkdir /var/www/test
echo \'<?php phpinfo();\'  > /var/www/test/index.php
chown -R www-data:www-data /var/www/test && chmod -R 755 /var/www/test
cd /etc/nginx/conf.d
vim test.conf
写入以下内容:
server {
    listen 80 default_server;
    listen [::]:80 default_server;
    root /var/www/test;
    index index.php index.html index.htm;
    server_name _;
    #禁止执行PHP的目录。
    location ~ .*(Images|images|Img|img|Template|template|Upload|upload|Public|public)/.*\\.php$ {
        deny all;
    }
    #设置图片缓存为30天,暂时注释掉
    location ~ .*\\.(gif|jpg|jpeg|png|bmp|swf)$ {
        expires 30d;
    }
    #设置js和css缓存为12小时,暂时注释掉
    location ~ .*\\.(js|css)?$ {
        expires 12h;
    }
    location / {
        try_files $uri $uri/ =404;
    }
    location ~ \\.php$ {
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }
}
service nginx restart
浏览器访问http:ip地址/index.php
![image](https://image-static.segmentfault.com/187/290/1872904387-6017b9333f0f3)
看到上图页面则表示已经网站搭建成功
之后你可以到万网,阿里云或腾讯云等买个域名,修改下nginx配置,即可用域名访问

7.扩展安装(mongodb,php扩展前面4步骤已经安装):

apt-get install mongodb

以上是关于ubuntu16.04快速安装LNMP的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu16.04安装lnmp环境

ubuntu16.04安装LNMP(ubuntu+Nginx+mysql+PHP7.0)

Ubuntu 16.04 LTS 安装 Nginx/PHP 5.6/MySQL 5.7 (LNMP) 与Laravel

ubuntu 16.04快速搭建nginx + php7.1 + mysql 环境

Ubuntu 16.04LTS LNMP环境配置 -- 转(有修改)

ubuntu16.04环境LNMP实现PHP5.6和PHP7.2