nginx 基本配置,操作 一

2021-09-13 04:00:16 字數 1930 閱讀 9843

yum list | grep nginx
出現類似下面的內容,說明yum源是存在的。

安裝命令

yum install nginx
檢視版本

配置目錄tc/nginx

#執行使用者,預設即是nginx,可以不進行設定

user nginx;

#nginx程序,一般設定為和cpu核數一樣

worker_processes 1;

#錯誤日誌存放目錄

error_log /var/log/nginx/error.log warn;

#程序pid存放位置

#error_page 404 /404.html; # 配置404頁面

# redirect server error pages to the static page /50x.html

#error_page 500 502 503 504 /50x.html; #錯誤狀態碼的顯示頁面,配置後需要重啟

location = /50x.html

# proxy the php scripts to apache listening on 127.0.0.1:80

##location ~ \.php$

# pass the php scripts to fastcgi server listening on 127.0.0.1:9000

##location ~ \.php$

# deny access to .htaccess files, if apache's document root

# concurs with nginx's one

##location ~ /\.ht

}

ps aux | grep nginx
有這三條記錄,說明我們nginx被正常開啟了

沒有開啟

nginx
啟動成功

啟動失敗,要先殺死nginx,再啟動

killall nginx
在重新編寫或者修改nginx的配置檔案後,都需要作一下重新載入,這時候可以用nginx給的命令

nginx -s reload
在預設情況下,nginx啟動後會監聽80埠,從而提供http訪問,如果80埠已經被占用則會啟動失敗。我麼可以使用netstat -tlnp命令檢視埠號的占用情況。

nginx配置一 基本配置

1 安裝完成nginx之後,首先需要明白的,資料返回的流程是怎麼樣的?這裡假設我們的後端伺服器是tomcat,web伺服器我們使用nginx。那麼請求流程如下圖 如上圖所示 我們的請求首先是被我們的web服務nginx攔截之後,再去請求後台服務的tomcat,然後後端的服務tomcat將我們的資料通...

nginx(一)基本配置講解

中文手冊 配置檔案詳解 如果主程序以root執行,nginx將會呼叫setuid setgid 來設定使用者 組,如果沒有指定組,那麼將使用與使用者名稱相同的組,預設情況下會使用nobody使用者與nobody組 或者nogroup 或者在編譯時指定的 user user和 group group的...

一 Nginx 基本操作命令

原文出自 啟動操作命令 nginx c usr nginx conf nginx.conf c引數指定了要載入的nginx配置檔案 路徑。停止操作 停止操作是通過向nginx程序傳送訊號 什麼是訊號請參閱linux文章 來進行的 步驟1 查詢nginx主程序號 ps ef grep nginx 在程...