国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

mac os LNMP 配置(親測)

khs1994 / 3197人閱讀

摘要:在歷時兩天的折騰后,我想有必要總結一下經驗,一方面自我梳理,方便以后用。另一方面也給其他碰到相同問題的人提供方法。開啟的時候可能會出現缺少配置文件缺少日志目錄的情況,參考以下命令啟動。

在歷時兩天的折騰后,我想有必要總結一下經驗,一方面自我梳理,方便以后用。另一方面也給其他碰到相同問題的人提供方法。

安裝brew:(mac 下的包管理工具),在最新的 mac os 下是自帶的

在最新的 mac os 下,php 是自帶的

安裝nginx :brew install nginx

啟動 nginx:sudo nginx ,訪問 http://localhost:8080看是否正常訪問

前面都不要更改服務器配置但是接下來就厲害了,重點!!!
廢話不多說直接上配置文件nginx.conf

#user  *root*;
worker_processes  1;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  "$remote_addr - $remote_user [$time_local] "$request" "
    #                  "$status $body_bytes_sent "$http_referer" "
    #                  ""$http_user_agent" "$http_x_forwarded_for"";

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8080;
        server_name  localhost;

        #charset koi8-r;

       # access_log  logs/host.access.log  main;

        location / {
            root   /Users/qsong/Desktop/MILANJUJIA/public;
            index  index.php index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        *location ~ .php$ {
            root          /Users/qsong/Desktop/MILANJUJIA/public;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }*

        # deny access to .htaccess files, if Apache"s document root
        # concurs with nginx"s one
        #
        #location ~ /.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    include servers/*;
}

想要配置多個項目的可以在server下添加項目配置(注意保持最后一行配置 include server/*打開),在 server 下每個項目對應一個配置文件,下面是我的一個配置文件

server {
        listen  8995;
        server_name  localhost;
        access_log  access_default.log  ;
        location / {
            root   /Users/qsong/Desktop/MILANJUJIA/public;
            index  index.php index.html index.htm;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /usr/share/nginx/html;
        }
       # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ .php$ {
            root          /Users/qsong/Desktop/MILANJUJIA/public;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
        location ~ /.ht {
            deny  all;
        }
}

完成這些后按道理就可以從不同端口訪問項目了,但這之前還需開啟 php-fpm。
開啟的時候可能會出現缺少配置文件、缺少日志目錄的情況,參考以下命令啟動。

php-fpm --fpm-config /usr/local/etc/php/7.0/php-fpm.conf  --prefix /usr/local/var

到這里應該就完成了 nginx 和 php的部署

mysql
安裝的教程很多,這里不多說。這里說一下如果碰到不能登入 mysql (未設置密碼)的情況進入mysql的安全模式

sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables

現在就可以直接執行 mysql 進入 mysql命令行
修改密碼

UPDATE mysql.user SET authentication_string=PASSWORD("123456") where User="root"; //將root用戶密碼改成 123456
flush privileges; //更新配置

重啟 mysql就可以登入

mysql -u root -p 123456

至此,php、php-fpm、nginx、mysql 配置完畢

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/22112.html

相關文章

  • mac os LNMP 配置親測

    摘要:在歷時兩天的折騰后,我想有必要總結一下經驗,一方面自我梳理,方便以后用。另一方面也給其他碰到相同問題的人提供方法。開啟的時候可能會出現缺少配置文件缺少日志目錄的情況,參考以下命令啟動。 在歷時兩天的折騰后,我想有必要總結一下經驗,一方面自我梳理,方便以后用。另一方面也給其他碰到相同問題的人提供方法。 安裝brew:(mac 下的包管理工具),在最新的 mac os 下是自帶的 在最新...

    CastlePeaK 評論0 收藏0
  • MacOS High Sierra下完整搭建MNMP開發環境

    摘要:一些關于在最新下搭建開發環境的流程建議,直接進入正題安裝開發常用包軟件又叫,是上的軟件包管理工具,能在中方便的安裝軟件或者卸載軟件,和系統中的非常相似,只需要一個命令,非常方便。 一些關于在最新 Macos 下搭建LNMP開發環境的流程建議,直接進入正題: Preparing安裝 Homebrew、Ohmyzsh、開發常用包&軟件 1.1 Homebrew Homebrew又叫Br...

    jay_tian 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<