同步與異步:
創(chuàng)新互聯(lián)致力于網(wǎng)站建設(shè),網(wǎng)站制作設(shè)計,營銷網(wǎng)頁按需策劃設(shè)計,外貿(mào)網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),小程序制作,網(wǎng)站SEO優(yōu)化,網(wǎng)站設(shè)計制作案例豐富,是成都做網(wǎng)站公司和建站公司,歡迎咨詢。同步與異步的重點在消息通知的方式上,也就是調(diào)用結(jié)果的通知方式不同。
**同步:**當一個同步調(diào)用發(fā)出去后,調(diào)用者要一直等待調(diào)用的結(jié)果通知后,才能進行后續(xù)的執(zhí)行。
**異步:**當一個異步調(diào)用發(fā)出去后,調(diào)用者不必一直等待調(diào)用結(jié)果的返回,異步調(diào)用,要想獲得結(jié)果,
一般有兩種方式:
阻塞與非阻塞的概念
阻塞與非阻塞的重點在于進/線程等待消息時候的行為,也就是在等待消息的時候,當前進/線程是掛起狀態(tài),還是非掛起狀態(tài)。
**阻塞:**調(diào)用在發(fā)出去后,在消息返回之前,當前進/線程會被掛起,直到有消息返回,當前進/線程才會被激活
**非阻塞:**調(diào)用在發(fā)出去后,不會阻塞當前進/線程,而會立即返回。
同步與異步,重點在于消息通知的方式;阻塞與非阻塞,重點在于等消息時候的行為。
四種組合方式
epoll模型
當連接有 I/O 事件產(chǎn)生的時候,epoll 就會去告訴進程哪個連接有 I/O 事件產(chǎn)生,然后進程就去處理這個事件。
Nginx 采用了異步非阻塞的方式工作。我們先來先了解一下 I/O 多路復(fù)用中的 epoll 模型。
2、nginx概述Nginx的工作原理
nginx的概述:
Nginx工作模式
nginx 有兩種工作模式:master-worker 模式和單進程模式;在 master-worker 模式下,有一個 master 進程和至少一個的 worker 進程,單進程模式顧名思義只有一個進程。這兩種模式有各自的特點和適用場景。
master-worker模式:
單進程模式:
單進程模式下,nginx 啟動后只有一個進程,nginx 的所有工作都由這個進程負責。由于只有一個進程,因此可以很方便地利用 gdb 等工具進行調(diào)試。該模式不支持 nginx 的平滑升級功能,任何的信號處理都可能造成服務(wù)中斷,并且由于是單進程,進程掛掉后,在沒有外部監(jiān)控的情況下,無法重啟服務(wù)。因此,該模式一般只在開發(fā)階段和調(diào)試時使用,生產(chǎn)環(huán)境下不會使用。
3、nginx配置文件結(jié)構(gòu)user www www;
#程序運行用戶和組
worker_processes auto;
#啟動進程,指定 nginx 啟動的工作進程數(shù)量,建議按照 cpu 數(shù)目來指定,一般等于 cpu 核心數(shù)目
error_log /home/wwwlogs/nginx_error.log crit;
#全局錯誤日志
pid /usr/local/nginx/logs/nginx.pid;
#主進程 PID 保存文件
worker_rlimit_nofile 51200;
#文件描述符數(shù)量
events
{use epoll;
#使用 epoll 模型,對于 2.6 以上的內(nèi)核,建議使用 epoll 模型以提高性能
worker_connections 51200;
#工作進程的大連接數(shù)量
}
http{#網(wǎng)站優(yōu)化參數(shù)
server {#具體的某一網(wǎng)站的配置信息
listen 80; #監(jiān)聽端口
root html; #網(wǎng)頁根目錄(/usr/local/nginx/html)
server_name www.atguigu.com; #服務(wù)器域名
index index.html; #默認加載頁面
access_log logs/access.log; #訪問日志保存位置
......;
location (.*)\.php$ {#用正則匹配具體的訪問對象;
}
location {#跳轉(zhuǎn)等規(guī)則;
}
} #這個括號是到server級
} #這個對應(yīng)的是http這個括號
4、Nginx的實驗注意事項:
實驗1:nginx的狀態(tài)統(tǒng)計
#修改配置文件
[root@Node3 ~]# vim /usr/local/nginx/conf/nginx.conf
.............
#在server中找個位置寫入這個
location /stub_status {stub_status on;
access_log off;
}
#重啟nginx
[root@Node3 ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@Node3 ~]# nginx -s reload
[root@Node3 ~]#
#瀏覽器訪問
http://192.168.75.133/stub_status
#輸出的結(jié)果詳情:
"Active connections"表示當前的活動連接數(shù);
"server accepts handled requests"表示已經(jīng)處理的連接信息
三個數(shù)字依次表示已處理的連接數(shù)、成功的 TCP 握手次數(shù)、已處理的請求數(shù)
實驗2:目錄保護
[root@Node3 ~]# vim /usr/local/nginx/conf/nginx.conf
...............
#添加兩行
location /stub_status {stub_status on;
access_log off;
auth_basic "Weclome to nginx_status";
auth_basic_user_file /usr/local/nginx/html/htpasswd.nginx;
}
#重啟nginx
#創(chuàng)建密碼文件
#我們要提取這個htpasswd命令
[root@Node3 ~]# yum -y install httpd
[root@Node3 ~]# htpasswd -c /usr/local/nginx/html/htpasswd.nginx zhangsan
New password:
Re-type new password:
Adding password for user zhangsan
#然后瀏覽器驗證
http://192.168.75.133/stub_status
#輸入:zhangsan
#輸入密碼:
實驗3:基于ip的身份驗證(訪問控制)
allow 192.168.75.1
deny 192.168.75.0/24
僅允許 192.168.75.1 訪問服務(wù)器
#修改配置文件
[root@Node3 ~]# vim /usr/local/nginx/conf/nginx.conf
.....................
location /stub_status {allow 192.168.75.1;
deny 192.168.75.0/24;
stub_status on;
access_log off;
auth_basic "Weclome to nginx_status";
auth_basic_user_file /usr/local/nginx/html/htpasswd.nginx;
}
#重啟驗證
[root@Node3 ~]# nginx -s reload
#瀏覽器訪問
http://192.168.75.133/stub_status
[root@Node3 ~]# curl 192.168.75.133/stub_status
實驗4:nginx的虛擬主機(基于域名)
#準備好兩個網(wǎng)站的頁面
[root@Node3 html]# mkdir blog bbs
[root@Node3 html]# vim blog/index.html
THis is blog.liangjiawei.net
[root@Node3 html]# vim bbs/index.html
This is BBS.LIANGJAIWEI.NET
#修改一下hosts文件-->識別兩個網(wǎng)站
[root@Node3 html]# vim /etc/hosts
192.168.75.133 blog.liangjiawei.net
192.168.75.133 bbs.liangjiawei.net
#修改nginx的配置文件
[root@Node3 nginx]# vim conf/nginx.conf
............
#把日志文件定義打卡
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;
...................
#添加下面的內(nèi)容
server {listen 80;
server_name blog.liangjiawei.net;
index index.html index.htm index.php;
root html/blog;
access_log logs/blog-access.log main;
}
server {listen 80;
server_name bbs.liangjiawei.net;
index index.html index.htm index.php;
root html/bbs;
access_log logs/blog-access.log main;
}
#重啟nginx
[root@Node3 nginx]# nginx -s reload
#然后驗證
[root@Node3 nginx]# curl blog.liangjiawei.net
THis is blog.liangjiawei.net
[root@Node3 nginx]# curl bbs.liangjiawei.net
This is BBS.LIANGJAIWEI.NET
實驗5:nginx的發(fā)現(xiàn)代理
代理與反向代理
實驗的規(guī)劃
location / { proxy_pass http://192.168.75.134:80; #此處填寫 apache 服務(wù)器的 IP 地址
}
#開啟另外一臺服務(wù)器,并且安裝個apache
[root@Node4 ~]# yum -y install httpd
[root@localhost ~]# service httpd start
[root@localhost ~]# vim /var/www/html/index.html
this is Centos6
#nginx服務(wù)器配置,修改配置文件
[root@Node3 nginx]# vim conf/nginx.conf
............
#添加這個表格,把之前的/都注釋掉
location / {proxy_pass http://192.168.75.110:80;
}
# location / { # root html;
# index index.php index.html index.htm;
# }
#重啟
[root@Node3 nginx]# nginx -s reload
#然后直接訪問nginx服務(wù)器-->瀏覽器訪問
http://192.168.75.133/
實驗6:負載調(diào)度(負載均衡)
負載均衡(Load Balance)其意思就是將任務(wù)分攤到多個操作單元上進行執(zhí)行,例如 Web 服務(wù)器、FTP 服務(wù)器、企業(yè)關(guān)鍵應(yīng)用服務(wù)器和其它關(guān)鍵任務(wù)服務(wù)器等,從而共同完成工作任務(wù)。
upstream bbs {#此標簽在 server 標簽前添加
server 192.168.75.110:80;
server 192.168.75.130:80;
}
server {........;
#修改自帶的 location / 的標簽,將原內(nèi)容刪除,添加下列兩項
location / {proxy_pass http://bbs; #添加反向代理,代理地址填寫 upstream 聲明的名字
proxy_set_header Host $host; #重寫請求頭部,保證網(wǎng)站所有頁面都可訪問成功
}
}
拓展補充:rr 算法實現(xiàn)加權(quán)輪詢
upstream bbs {server 192.168.88.100:80 weight=1;
server 192.168.88.200:80 weight=2;
}
實驗過程
#再開一臺服務(wù)器;然后安裝httpd
[root@node0 ~]# yum -y install httpd
[root@node0 ~]# systemctl start httpd
[root@node0 ~]# vim /var/www/html/index.html
This is 130
#nginx服務(wù)器修改配置文件
[root@Node3 nginx]# vim conf/nginx.conf
........
#在server標簽上面添加
upstream LL {server 192.168.75.110:80;
server 192.168.75.130:80;
}
..............
#然后在location /這個標簽上修改
location / {proxy_pass http://LL;
proxy_set_header Host $host;
}
#重啟nginx
[root@Node3 nginx]# nginx -t
[root@Node3 nginx]# nginx -s reload
#直接訪問本機-->可以看到輪詢了
[root@Node3 nginx]# curl 192.168.75.133
This is 130
[root@Node3 nginx]# curl 192.168.75.133
this is Centos6
[root@Node3 nginx]# curl 192.168.75.133
This is 130
實驗7:nginx實現(xiàn)https{證書+rewrite}
server {.......;
ssl on;
ssl_certificate /usr/local/nginx/conf/ssl/liangjiawei.crt;
ssl_certificate_key /usr/local/nginx/conf/ssl/liangjiawei.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers
"EECDH+CHACHA20:EECDH+CHACHA20draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
}
# openssl genrsa -out atguigu.key 1024
建立服務(wù)器私鑰,生成 RSA 密鑰
# openssl req -new -key atguigu.key -out atguigu.csr
需要依次輸入國家,地區(qū),組織,email。最重要的是有一個 common name,可以寫你的名字或者域名。如果為了 https 申請,這個必須和域名吻合,否則會引發(fā)瀏覽器警報。生成的 csr 文件交給 CA 簽名后形成服務(wù)端自己的證書
# openssl x509 -req -days 365 -sha256 -in atguigu.csr -signkey atguigu.key -out atguigu.crt
生成簽字證書
# cp atguigu.crt /usr/local/nginx/conf/ssl/atguigu.crt
# cp atguigu.key /usr/local/nginx/conf/ssl/atguigu.key
將私鑰和證書復(fù)制到指定位置
server {..........;
listen 443;
}
新增以下 server 標簽(利用虛擬主機+rewrite 的功能)
server{listen 80;
server_name blog.liangjiawei.net;
rewrite ^(.*)$ https://blog.liangjiawei.net permanent;
root html;
index index.html index.htm;
}
實驗過程
#修改nginx的配置文件
[root@Node3 nginx]# vim conf/nginx.conf
#找到之前做的blog的server標簽,添加進去
.............
server {listen 80;
server_name blog.liangjiawei.net;
index index.html index.htm index.php;
root html/blog;
access_log logs/blog-access.log main;
ssl on;
ssl_certificate /usr/local/nginx/conf/ssl/liangjiawei.crt;
ssl_certificate_key /usr/local/nginx/conf/ssl/liangjiawei.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3
DES:RSA+3DES:!MD5";
}
#生成證書和密鑰文件
[root@Node3 nginx]# cd conf/
[root@Node3 conf]# mkdir ssl
[root@Node3 conf]# cd ssl
[root@Node3 ssl]# openssl genrsa -out liangjiawei.key 1024
Generating RSA private key, 1024 bit long modulus
............................................++++++
...++++++
e is 65537 (0x10001)
[root@Node3 ssl]# openssl req -new -key liangjiawei.key -out liangjiawei.csr
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [XX]:cn
State or Province Name (full name) []:gd
Locality Name (eg, city) [Default City]:gz
Organization Name (eg, company) [Default Company Ltd]:ns
Organizational Unit Name (eg, section) []:zjj
Common Name (eg, your name or your server's hostname) []:ja
Email Address []:liangjaiwei@123
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
[root@Node3 ssl]# openssl x509 -req -days 365 -sha256 -in liangjiawei.csr -signkey liangjiawei.key -out liangjiawei.crt
Signature ok
subject=/C=cn/ST=gd/L=gz/O=ns/OU=zjj/CN=ja/emailAddress=liangjaiwei@123
Getting Private key
#再回到nginx上調(diào)整一下端口
[root@Node3 ssl]# cd ..
[root@Node3 conf]# vim nginx.conf
.......
#原來加密的server標簽要改為443
server {listen 443;
server_name blog.liangjiawei.net;
index index.html index.htm index.php;
root html/blog;
access_log logs/blog-access.log main;
ssl on;
ssl_certificate /usr/local/nginx/conf/ssl/liangjiawei.crt;
ssl_certificate_key /usr/local/nginx/conf/ssl/liangjiawei.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+CHACHA20:EECDH+CHACHA20draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3
DES:RSA+3DES:!MD5";
}
#然后新添加一個標簽
server{listen 80;
server_name blog.liangjiawei.net;
rewrite ^(.*)$ https://blog.liangjiawei.net permanent;
root html;
index index.html index.htm;
}
#重啟驗證
[root@Node3 conf]# nginx -s reload
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
標題名稱:Nginx服務(wù)講解-創(chuàng)新互聯(lián)
本文路徑:http://m.rwnh.cn/article14/ehdde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、用戶體驗、靜態(tài)網(wǎng)站、網(wǎng)站內(nèi)鏈、網(wǎng)站建設(shè)、全網(wǎng)營銷推廣
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容