真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

nginx讀寫分離怎么配置

本文小編為大家詳細(xì)介紹“nginx讀寫分離怎么配置”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“nginx讀寫分離怎么配置”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。

在山陽等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都做網(wǎng)站、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需設(shè)計(jì)網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),高端網(wǎng)站設(shè)計(jì),全網(wǎng)營銷推廣,外貿(mào)營銷網(wǎng)站建設(shè),山陽網(wǎng)站建設(shè)費(fèi)用合理。

nginx之讀寫分離

1.實(shí)驗(yàn)拓?fù)?/p>

nginx讀寫分離怎么配置

需求分析,前端一臺nginx做負(fù)載均衡反向代理,后面兩臺httpd服務(wù)器。整個(gè)架構(gòu)是提供bbs(論壇)服務(wù),有一需求得實(shí)現(xiàn)讀寫分離,就是上傳附件的功能,我們上傳的附件只能上傳到web1,然后在web1上利用rsync+inotify實(shí)現(xiàn)附件同步,大家都知道rsync+inotify只能是主向從同步,不能雙向同步。所以web1可進(jìn)行寫操作,而web2只能進(jìn)行讀操作,這就帶來讀寫分離的需求,下面我們就來說一下,讀寫分離怎么實(shí)現(xiàn)。

2.webdav功能說明

webdav (web-based distributed authoring and versioning) 一種基于 http 1.1協(xié)議的通信協(xié)議。它擴(kuò)展了http 1.1,在get、post、head等幾個(gè)http標(biāo)準(zhǔn)方法以外添加了一些新的方法,使應(yīng)用程序可直接對web server直接讀寫,并支持寫文件鎖定(locking)及解鎖(unlock),還可以支持文件的版本控制。這樣我們就能配置讀寫分離功能了,下面我們來具體配置一下。

3.修改配置文件

[root@nginx nginx]# vim /etc/nginx/nginx.conf
server {
    listen    80;
    server_name localhost;
    #charset koi8-r;
    #access_log logs/host.access.log main;
    location / {
        proxy_pass http://192.168.18.202;
        if ($request_method = "put"){
            proxy_pass http://192.168.18.201;
        }
    }
}

4.重新加載一下配置文件

[root@nginx ~]# service nginx reload
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
重新載入 nginx:                      [確定]

5.配置httpd的webdav功能

[root@web1 ~]# vim /etc/httpd/conf/httpd.conf

nginx讀寫分離怎么配置

注,在下啟用就行。

6.重新啟動一下httpd

[root@web1 ~]# service httpd restart
停止 httpd:                        [確定]
正在啟動 httpd:                      [確定]

7.測試一下

[root@nginx ~]# curl http://192.168.18.201

web1.test.com

[root@nginx ~]# curl http://192.168.18.202

web2.test.com

注,web1與web2訪問都沒問題。

[root@nginx ~]# curl -t /etc/issue http://192.168.18.202


405 method not allowed

method not allowed

the requested method put is not allowed for the url /issue.
apache/2.2.15 (centos) server at 192.168.18.202 port 80

注,我們上傳文件到,web2上時(shí),因?yàn)閣eb2只人讀功能,所以沒有開戶webdav功能,所以顯示是405 method not allowed。 

[root@nginx ~]# curl -t /etc/issue http://192.168.18.201


403 forbidden

forbidden

you don't have permission to access /issue on this server.
apache/2.2.15 (centos) server at 192.168.18.201 port 80

注,我們在web1開啟了webdav功能,但我們目錄是root目錄是不允許apache用戶上傳的,所以顯示的是403 forbidden。下面我們給apache授權(quán),允許上傳。

[root@web1 ~]# setfacl -m u:apache:rwx /var/www/html/

下面我們再來測試一下,

[root@nginx ~]# curl -t /etc/issue http://192.168.18.201


201 created

created

resource /issue has been created.
apache/2.2.15 (centos) server at 192.168.18.201 port 80

注,大家可以看到我們成功的上傳了文件,說明nginx讀寫分離功能配置完成。最后,我們來查看一下上傳的文件。

[root@web1 ~]# cd /var/www/html/
[root@web1 html]# ll

總用量 12

drwxr-xr-x 2 root  root  4096 9月  4 13:16 forum
-rw-r--r-- 1 root  root   23 9月  3 23:37 index.html
-rw-r--r-- 1 apache apache  47 9月  4 14:06 issue

讀到這里,這篇“nginx讀寫分離怎么配置”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文標(biāo)題:nginx讀寫分離怎么配置
URL網(wǎng)址:http://weahome.cn/article/jdjpho.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部