溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Ubuntu16.04搭建LNMP

發(fā)布時(shí)間:2020-07-23 08:37:03 來源:網(wǎng)絡(luò) 閱讀:558 作者:高鵬舉 欄目:建站服務(wù)器

1.進(jìn)行更新   (具體文檔請(qǐng)聯(lián)系本博主,首頁有博主郵箱)



2.安裝MySQL

                    # 連續(xù)輸入兩次相同的密碼


3.安裝nginx和php

添加nginx和php的ppa源




4.安裝Nginx



5.安裝PHPFastCGI管理器



6.修改配置文件(此步可以省略)



7.查看 listen = /run/php/php7.0-fpm.sock 是否被開啟

一般為開啟


8.修改重啟下 php-fpm7.0 (可以忽略)



9.修改nginx配置文件

sudo vim /etc/nginx/sites-enabled/default



        # Add index.php to the list if you are using PHP

        index index.php index.html index.htm index.nginx-debian.html;               添加index.php


        server_name _;


        location / {

                # First attempt to serve request as file, then

                # as directory, then fall back to displaying a 404.

                try_files $uri $uri/ =404;

        }


        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

        #

         location ~ \.php$ {                                                       在此把#去掉

                include snippets/fastcgi-php.conf;                                 在此把#去掉

        #

        #       # With php7.0-cgi alone:

        #       fastcgi_pass 127.0.0.1:9000;                                

        #       # With php7.0-fpm:

               fastcgi_pass unix:/run/php/php7.0-fpm.sock;                          在此把#去掉

         }                                                                          在此把#去掉

 



10.socket 方式 必須和上面socket的listen路徑一樣



11.重啟nginx



12.在/var/www/html/目錄下,新建個(gè)index.php測(cè)試下看看



13.搭建完成 探針顯示

PHP Version 7.0.18-0ubuntu0.16.04.1 

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI