一、nginx的安裝、啟動、停止及文件解讀 yum -y install gcc gcc-c++ autoconf pcre-devel make automake yum -y install wget httpd-tools vim (1)基於Yum的方式安裝Nginx 我們可以先來查看一下yu ...
一、nginx的安裝、啟動、停止及文件解讀
yum -y install gcc gcc-c++ autoconf pcre-devel make automake yum -y install wget httpd-tools vim
(1)基於Yum的方式安裝Nginx
我們可以先來查看一下yum是否已經存在,命令如下:
yum list | grep nginx
配置nginx下載源:
[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1
將上述代碼寫入 /etc/yum.repos.d/nginx.repo 中
1 yum install nginx 2 nginx -v
(2)查看nginx安裝目錄
1 rpm -ql nginx
rpm 是linux的rpm包管理工具,-q 代表詢問模式,-l 代表返回列表。
(3)nginx.conf文件解讀
nginx.conf 文件是Nginx總配置文件,在我們搭建伺服器時經常調整的文件。
cd /etc/nginx
vim nginx.conf
1 #運行用戶,預設即是nginx,可以不進行設置 2 user nginx; 3 #Nginx進程,一般設置為和CPU核數一樣 4 worker_processes 1; 5 #錯誤日誌存放目錄 6 error_log /var/log/nginx/error.log warn; 7 #進程pid存放位置 8 pid /var/run/nginx.pid; 9 10 11 events { 12 worker_connections 1024; # 單個後臺進程的最大併發數 13 } 14 15 16 http { 17 include /etc/nginx/mime.types; #文件擴展名與類型映射表 18 default_type application/octet-stream; #預設文件類型 19 #設置日誌模式 20 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 21 '$status $body_bytes_sent "$http_referer" ' 22 '"$http_user_agent" "$http_x_forwarded_for"'; 23 24 access_log /var/log/nginx/access.log main; #nginx訪問日誌存放位置 25 26 sendfile on; #開啟高效傳輸模式 27 #tcp_nopush on; #減少網路報文段的數量 28 29 keepalive_timeout 65; #保持連接的時間,也叫超時時間 30 31 #gzip on; #開啟gzip壓縮 32 33 include /etc/nginx/conf.d/*.conf; #包含的子配置項位置和文件
(4)default.conf 配置項講解
進入conf.d目錄,然後使用 vim default.conf 進行查看。
1 server { 2 listen 80; #配置監聽埠 3 server_name localhost; //配置功能變數名稱 4 5 #charset koi8-r; 6 #access_log /var/log/nginx/host.access.log main; 7 8 location / { 9 root /usr/share/nginx/html; #服務預設啟動目錄 10 index index.html index.htm; #預設訪問文件 11 } 12 13 #error_page 404 /404.html; # 配置404頁面 14 15 # redirect server error pages to the static page /50x.html 16 # 17 error_page 500 502 503 504 /50x.html; #錯誤狀態碼的顯示頁面,配置後需要重啟 18 location = /50x.html { 19 root /usr/share/nginx/html; 20 } 21 22 # proxy the PHP scripts to Apache listening on 127.0.0.1:80 23 # 24 #location ~ \.php$ { 25 # proxy_pass http://127.0.0.1; 26 #} 27 28 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 29 # 30 #location ~ \.php$ { 31 # root html; 32 # fastcgi_pass 127.0.0.1:9000; 33 # fastcgi_index index.php; 34 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 35 # include fastcgi_params; 36 #} 37 38 # deny access to .htaccess files, if Apache's document root 39 # concurs with nginx's one 40 # 41 #location ~ /\.ht { 42 # deny all; 43 #} 44 }
得知服務目錄放在了/usr/share/nginx/html
下
(5)nginx啟動、停止、重啟
啟動
在centos7以上使用命令 nginx 可直接啟動
使用systemctl命令啟動 systemctl start nginx.service
使用 ps aux | grep nginx 查看服務開啟狀況
使用 netstat -lunpt 可查看埠開啟狀況
停止
1 nginx -s stop 2 nginx -s quit 3 killall nginx 4 systemctl stop nginx.service
重啟
systemctl restart nginx.service
nginx -s reload