您好,登錄后才能下訂單哦!
今天小編給大家分享一下linux上nginx安裝部署及使用的方法的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
2.1安裝前提
在linux下安裝需要安裝一下組件
1. gcc && g++ yum install gcc-c++ 2. pcre yum install -y pcre pcre-devel 3. zlib yum install -y zlib zlib-devel 4. openssl yum install -y openssl openssl-devel
2.2 安裝
1. 解壓nginx文件 tar -zxvf nginx-1.17.5.tar.gz 2. 安裝 ## 創(chuàng)建一個(gè)nginx安裝目錄 mkdir nginx cd nginx-1.12.2 ## 指定文件安裝路徑 ./configure --prefix=/home/lege/nginx make make install #安裝完成后內(nèi)容會(huì)安裝到指定的路徑 /home/lege/nginx下,否則會(huì)在默認(rèn)目錄/usr/local/nginx
2.3 啟動(dòng)nginx
## 修改配置文件 cd /home/lege/nginx/conf vim nginx.conf ## 設(shè)置端口為8080,也可設(shè)置成其他 listen 8080; ## 進(jìn)入到啟動(dòng)目錄 cd /home/lege/nginx/sbin ## 檢查配置文件是否有問題 ./nginx -t ##沒有問題的結(jié)果如下所示: [soa@testsoa04 sbin]$ ./nginx -t nginx: the configuration file /home/lege/nginx/conf/nginx.conf syntax is ok nginx: configuration file /home/lege/nginx/conf/nginx.conf test is successful [soa@testsoa04 sbin]$ ## 查詢配置參數(shù) ./nginx -v ## 對(duì)于已安裝的nginx需要修改配置參數(shù) ./configure --prefix=/home/lege/nginx ...配置參數(shù) make make install 然后重新啟動(dòng)nginx即可 ## 啟動(dòng) ./nginx ## 停止 ./nginx -s stop ## 重啟 ./nginx -s reload ## 輸入網(wǎng)址驗(yàn)證是否啟動(dòng)成功 http://ip:port/
日志定義的格式: 語法格式: access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]]; access_log off; 默認(rèn)值 : access_log logs/access.log combined; 作用域 : http, server, location, if in location, limit_except 1. 定義日志格式 語法格式: log_format name [escape=default|json] string ...; 默認(rèn)值 : log_format combined "..."; 作用域 : http 常見的日志變量 $remote_addr, $http_x_forwarded_for 記錄客戶端ip地址 $remote_user記錄客戶端用戶名稱 $request記錄請(qǐng)求的url和http協(xié)議(get,post,del,等) $status記錄請(qǐng)求狀態(tài) $body_bytes_sent發(fā)送給客戶端的字節(jié)數(shù),不包括響應(yīng)頭的大??; 該變量與apache模塊mod_log_config里的“%b”參數(shù)兼容。 $bytes_sent發(fā)送給客戶端的總字節(jié)數(shù)。 $connection連接的序列號(hào)。 $connection_requests 當(dāng)前通過一個(gè)連接獲得的請(qǐng)求數(shù)量。 $msec 日志寫入時(shí)間。單位為秒,精度是毫秒。 $pipe如果請(qǐng)求是通過http流水線(pipelined)發(fā)送,pipe值為“p”,否則為“.”。 $http_referer 記錄從哪個(gè)頁面鏈接訪問過來的 $http_user_agent記錄客戶端瀏覽器相關(guān)信息 $request_length請(qǐng)求的長(zhǎng)度(包括請(qǐng)求行,請(qǐng)求頭和請(qǐng)求正文)。 $request_time 請(qǐng)求處理時(shí)間,單位為秒,精度毫秒; 從讀入客戶端的第一個(gè)字節(jié)開始,直到把最后一個(gè)字符發(fā)送給客戶端后進(jìn)行日志寫入為止。 $time_iso8601 iso8601標(biāo)準(zhǔn)格式下的本地時(shí)間。 $time_local通用日志格式下的本地時(shí)間。 示例: log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" "$request_time" ' '"$http_user_agent" "$http_x_forwarded_for"
對(duì)于日志相關(guān)的清理可以使用linux的定時(shí)任務(wù)去處理,示例如下:
clear.sh腳本如下:
#!/bin/bash #logs_path為日志存放路徑 logs_path=/home/lege/data/nginx/logs yesterday=$(date -d "yesterday" +%y-%m-%d) keeptime=$(date -d "-3 days" +%y-%m-%d) #切分日志文件 mv ${logs_path}/access.log ${logs_path}/access_${yesterday}.log mv ${logs_path}/error.log ${logs_path}/error_${yesterday}.log #通過nginx信號(hào)量控制重讀日志,/web/nginx/為nginx安裝目錄 kill -usr1 $(cat /home/lege/data/nginx/logs/nginx.pid) #刪除3天前的日志文件 rm -f ${logs_path}/access_{keeptime}.log rm -f ${logs_path}/error_{keeptime}.log echo 0 crontab -e 添加如下: 0 0 * * * /bin/sh /home/lege/data/nginx/logs/clear.sh crontab -l 查看是否添加成功
http { server_tokens off; client_header_buffer_size 8k; client_max_body_size 130m; proxy_buffer_size 64k; proxy_buffers 8 64k; log_format access '$remote_addr $host $remote_user [$time_local] $status $request_length $body_bytes_sent $request_time 0 0 0 - "-" "$request" "$http_referer" "$http_user_agent" $http_cookie $bytes_sent'; access_log logs/access.log access; keepalive_requests 16; keepalive_timeout 5; server { listen 8080; server_name localhost; charset utf-8; location / { default_type 'application/octet-stream'; add_header content-disposition "attachment"; ## 配置可以下載的文件路徑,下面是在windows下測(cè)試使用的路徑,linux也可換成對(duì)應(yīng)的路徑 root d://tools//nginx-1.17.4//conf; } } }
配置完成后重啟nginx,然后進(jìn)入瀏覽器輸入下的文件名即可下載到對(duì)應(yīng)的文件。ps:不能下載目錄只能下載文件。
以上就是“l(fā)inux上nginx安裝部署及使用的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。