2)然後解壓到自己的乙個目錄。
3)配置環境變數,將解壓到的路徑加進去。
4)修改配置檔案
nginx/conf/nginx.conf檔案,找server ->listen 把80埠改成其他的。如:8080
5)nginx啟動 直接命令 nginx
報錯:nginx: [alert] could not open error log file: createfile() "logs/error.log" failed (3: the system cannot find the path specified)
2018/11/17 17:43:20 [emerg] 16204#3512: createfile() "c:\users\administrator/conf/nginx.conf" failed (3: the system cannot find the path specified)
原因:啟動需要配置檔案,指定配置檔案命令
nginx -c d:\tool\nginx-1.15.6\conf\nginx.conf
報錯:nginx: [alert] could not open error log file: createfile() "logs/error.log" failed (3: the system cannot find the path specified)
2018/11/17 17:44:44 [emerg] 14976#4176: invalid number of arguments in "root" directive in d:\tool\nginx-1.15.6\conf\nginx.conf:45
配置檔案root指定乙個目錄的時候,最末尾不能是"\"
再執行命令報錯
nginx: [alert] could not open error log file: createfile() "logs/error.log" failed (3: the system cannot find the path specified)
2018/11/17 18:00:01 [emerg] 8664#1348: createdirectory() "c:\users\administrator/temp/client_body_temp" failed (3: the system cannot find the path specified)
去建目錄:c:\users\administrator/temp/client_body_temp
c:\users\administrator>nginx -c d:\tool\nginx-1.15.6\conf\nginx.conf
nginx: [alert] could not open error log file: createfile() "logs/error.log" failed (3: the system cannot find the path specified)
2018/11/17 18:08:27 [emerg] 10848#8284: createfile() "d:\logs
ginx\error.log" failed (123: the filename, directory name, or volume label syntax is incorrect)
什麼鬼,還帶 \n轉義的???
去配置檔案裡改路徑 error_log d:\logs\\nginx\error.log;
把這裡開啟
nginx: [emerg] createfile() "c:\users\administrator/logs/nginx.pid" failed (3: the system cannot find the path specified)
去配置檔案改pid目錄,或者去建立個目錄
這個是個警告
nginx: [alert] could not open error log file: createfile() "logs/error.log" failed (3: the system cannot find the path specified)
進到安裝目錄
d:\tool\nginx-1.15.6>nginx -c conf\nginx.conf
XCode錯誤集錦
在開發工程中碰到過各種xcode的錯誤,當時只是為了解決問題就完事了,現在將自己再遇到的這些編譯問題一一記錄發表出來,希望為和我遇到共同問題的盆友提供一些思路。以後會不斷的往上新增。xcode error could not find developer disk image 解決方法 xcode版...
2016 11 25 錯誤集錦
d1 t1 1.編號no w 可能是 n 的倍數,使得no w n 0,可以這麼寫 n ow 1 n 1 算出的編號在 1 n 內。2.由於操作一次的數字不會超過 n,也可以當no w n 時 n 當no w 0 時 n d2 t2 1.分析資料範圍可以o n2 拿下前25分,然而在考試中過於緊張丟...
錯誤集錦 一
前言 工作幾年了,沒有寫部落格記錄的習慣,突然發現以前的一些問題,又再次犯下錯誤,實在煩惱,特在此開啟此系列,以記錄來自我提醒 一 問題 viewpager中有viewpager,切換過程中裡面的viewpager頁面第一次正常,第二次沒有資料顯示 解決 在第乙個viewpager中的fragmen...