1. 程式人生 > >MacOS 下 Nginx 安裝記錄

MacOS 下 Nginx 安裝記錄

之前寫過:

最近工作辦公電腦換了 Mac,剛好有機會實踐一下。

安裝非常簡單:

sudo port install nginx
或者使用:
sudo brew install nginx
使用brew可能還需要:
brew search nginx
port 和 brew 是 Mac 下兩大包管理工具,使用它們安裝軟體非常的方便,類似 CentOS下的 yum ,Ubuntu 下的 apt-get 。

安裝完成會輸出以下提示:我是使用 port 安裝的:

nginx has the following notes:
    A set of sample configuration files has been installed in /opt/local/share/nginx/examples.
    
    Additionally, the files nginx.conf, mime.types, fastcgi.conf have been copied to /opt/local/etc/nginx if they didn't
    exist yet.
    Adjust these files to your needs before starting nginx.
檢視可執行檔案 目錄:
which nginx
/opt/local/sbin/nginx

/opt/local/share/nginx/examples 目錄下是配置示例檔案;

/opt/local/etc/nginx 實際使用的配置檔案 在這個目錄下;

編輯配置&重新載入配置:

sudo vi nginx.conf 
sudo nginx -s reload
配置檔案 示例:我改了下埠和預設文件
#user  nobody;
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       88;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   share/nginx/html;
            index  default.htm 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   share/nginx/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           share/nginx/html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    include        fastcgi.conf;
        #}

        # 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   share/nginx/html;
    #        index  index.html index.htm;
    #    }
    #}
}

常用命令

nginx  啟動,可能需要許可權,使用 sudo nginx

nginx -V 檢視Nginx的版本號

大V顯示的是非常詳細的資訊,小v只顯示第一行:

nginx version: nginx/1.11.10
built with OpenSSL 1.0.2k  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/opt/local --with-cc-opt='-I/opt/local/include -Os' --with-ld-opt='-L/opt/local/lib -Wl,-headerpad_max_install_names' --conf-path=/opt/local/etc/nginx/nginx.conf --error-log-path=/opt/local/var/log/nginx/error.log --http-log-path=/opt/local/var/log/nginx/access.log --pid-path=/opt/local/var/run/nginx/nginx.pid --lock-path=/opt/local/var/run/nginx/nginx.lock --http-client-body-temp-path=/opt/local/var/run/nginx/client_body_temp --http-proxy-temp-path=/opt/local/var/run/nginx/proxy_temp --http-fastcgi-temp-path=/opt/local/var/run/nginx/fastcgi_temp --http-uwsgi-temp-path=/opt/local/var/run/nginx/uwsgi_temp --with-ipv6 --with-http_flv_module --with-http_mp4_module --with-http_secure_link_module --with-http_ssl_module

nginx -s quit 正常停止或關閉Nginx

nginx -s stop 快速停止或關閉Nginx

nginx -s reload 重新載入配置檔案

nginx -t 測試nginx.conf配置檔案是否正確

nginx -s stop 和 -s quit 有什麼區別呢?

quit 是一種優雅的退出方式。優雅在哪裡呢?

Quit is a graceful shutdown. Nginx finishes serving the open connections before shutdown

Stop is a quick shutdown where is terminates in between serving the connection

當nginx收到quit訊號後,首先停止接受連線,不再接受新的連線請求了;然後程序如果還在服務中(也就是還有訪問請求沒有處理並響應完成),那麼就不會關閉該程序,直到程序完成服務為止。當所有未完成的請求都處理完成了,再退出。

而接收到 Stop 訊號後就不管那麼多了,直接退出程序。

quit 就好比到下班時間了,手頭還有點工作沒做完,做完了再走;stop 是下班就走。

======================文件資訊========================

署名(BY) :testcs_dn(微wx笑)

文章出處:[無知人生,記錄點滴](http://blog.csdn.NET/testcs_dn)

==============歡迎關注我的個人微信訂閱號(微wx笑)============

相關推薦

MacOS Nginx 安裝記錄

之前寫過:最近工作辦公電腦換了 Mac,剛好有機會實踐一下。安裝非常簡單:sudo port install nginx或者使用:sudo brew install nginx使用brew可能還需要:brew search nginxport 和 brew 是 Mac 下兩大

linuxnginx安裝php

啟動 end pen ini 找不到 令行 pdo 主配置文件 ref 把php安裝包上傳到linux的/usr/local/src 1.解壓 cd /usr/local/src tar zxvf php-5.6.9.tar.gz cd php-5.6.9   

CentOS6.5nginx安裝

模塊 pcre acc .cn nginx fig 啟動服務 tab start 一、nginx安裝環境 1、Gcc rpm -qa | grep gcc 安裝nginx需要先將官網下載的源碼進行編譯,編譯依賴gcc環境,如果沒有gcc環境,需要

nginx安裝記錄

ron 服務 重啟命令 err chown dex rest nginx安裝 用戶 1、安裝依賴包yum install gcc yum install pcre-develyum install zlib zlib-develyum install openssl ope

linuxnginx安裝腳本

軟件包 函數調用 ces -h linux led 文件夾 efi get #!/bin/bash#安裝編譯工具及庫文件#軟件包準備PCRE和nginxpackage_dir="/data/app/Softpackage"install_dir="/usr/local"pc

centos 6.x和7.x nginx安裝與配置

一、安裝gcc(命令:yum install gcc)   備註:可以輸入gcc -v 查詢版本資訊,看系統是否自帶安裝 二、安裝pcre(命令: yum install pcre-devel) 三、安裝zlib 四、安裝openssl 綜合命令:   yum -y inst

CentOS 6 5Redis安裝記錄

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

windows10TensorFlow安裝記錄

1.安裝anaconda 安裝最新版:https://repo.anaconda.com/archive/Anaconda3-5.3.0-Windows-x86_64.exe 加入環境變數: path加anaconda安裝目錄 path加anaconda安裝目錄/scripts  

1102_Centos Nginx安裝與配置

Centos下 Nginx安裝與配置 Nginx是一款輕量級的網頁伺服器、反向代理伺服器。相較於Apache、lighttpd具有佔有記憶體少,穩定性高等優勢。它最常的用途是提供反向代理服務。 安裝 在Centos下,yum源不提供nginx的安裝,可以通過切換yum源的方法獲取安裝

CentOS 7 Nginx安裝以及配置

一、Nginx介紹 Nginx(發音同 engine x)是一款輕量級的Web 伺服器/反向代理伺服器及電子郵件(IMAP/POP3)代理伺服器,並在一個BSD-like 協議下發行。由俄羅斯的程式設計師Igor Sysoev所開發,最初供俄國大型的入口網站及搜尋引擎R

centos7Nginx安裝

1、安裝依賴和相關庫: [[email protected] ~]# yum -y install gcc-c++ zlib-devel openssl-devel libtool 2、下載nginx安裝包並解壓: [[email protected]

微軟開源分散式高效能GB框架LightGBM MacOS編譯安裝過程

LightGBM(Light Gradient Boosting Machine)是一個基於決策樹演算法的快速的、分散式的、高效能 gradient boosting(GBDT、GBRT、GBM 或 MART)框架,可被用於排行、分類以及其他許多機器學習任務中。開源專案地址:

UbuntuVCS安裝記錄

一、系統與軟體版本 1、Ubuntu 16.04.5 LTS 2、vcs2016 3、scl_v2018.06 4、SynopsysInstaller_v4.0 5、keygen 二、安裝軟體 建議預先設定好需要的目錄。 1、Installer 解壓Installer,得

CentosNginx安裝與配置

Nginx是一款輕量級的網頁伺服器、反向代理伺服器。相較於Apache、lighttpd具有佔有記憶體少,穩定性高等優勢。它最常的用途是提供反向代理服務。 安裝 在Centos下,yum源不提供nginx的安裝,可以通過切換yum源的方法獲取安裝。也可以通過直接下載安裝包

CentOS 6.5Redis安裝記錄

Redis簡介:Redis是一個開源的使用ANSI C語言編寫、支援網路、可基於記憶體亦可持久化的日誌型、Key-Value資料庫,並提供多種語言的API。從2010年3月15日起,Redis的開發工作由VMware主持。redis是一個key-value儲存系統。和Memc

Linux(centOS 7.2)nginx安裝步驟

1、gcc安裝 檢視是否有gcc gcc -v 沒有需要安裝gcc,執行以下命令 yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake yum -y install wget

LinuxNGINX安裝

Linux版本: CentOS 6.5 64位 一. 安裝編譯工具及庫檔案 # yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel 二. 安裝

CentOS 6.5 Tengine 安裝記錄

Tengine是由淘寶網發起的Web伺服器專案。它在Nginx的基礎上,針對大訪問量網站的需求,添加了很多高階功能和特性。Tengine的效能和穩定性已經在大型的網站如淘寶網,天貓商城等得到了很好的檢驗。它的最終目標是打造一個高效、穩定、安全、易用的Web平臺。官網:http

linuxnginx安裝與設定開機啟動

http://www.myhack58.com/Article/sort099/sort0102/2015/66341.htm 環境準備yum -y install gcc gcc-c++ autoconf automake make yum -y install zli

MySQL在MacOS上的安裝記錄

1.到網上下載安裝dmg ftp://ftp.ntu.edu.tw/pub/MySQL/Downloads/MySQL-5.5/mysql-5.5.19-osx10.6-x86_64.dmg 2.解壓,依次安裝mysql-5.5.19-osx10.6-x86_64.dmg和