Cenos/Redhat 6下nginx的安裝以及部署 與 代理/反向代理

 

第一步:下載nginx壓縮包
Nginx 通常有兩個版本,分別是穩定版和開發版,您能夠根據您的目的來選擇這兩個版本的其中一個html

wget -c https://nginx.org/download/nginx-1.12.0.tar.gznginx

 

第二步:配置nginx安裝所需的環境c++

1. 安裝gcc
安裝 nginx 須要先將官網下載的源碼進行編譯,編譯依賴 gcc 環境。安裝指令以下:
yum install -y gcc gcc-c++web

2. 安裝PCRE pcre-devel
Nginx的Rewrite模塊和HTTP核心模塊會使用到PCRE正則表達式語法。這裏須要安裝兩個安裝包pcre和pcre-devel。第一個安裝包提供編譯版本的庫,而第二個提供
開發階段的頭文件和編譯項目的源代碼。安裝指令以下:
yum install -y pcre pcre-devel正則表達式

3.安裝zlib
zlib庫提供了開發人員的壓縮算法,在Nginx的各類模塊中須要使用gzip壓縮。安裝指令以下:
yum install -y zlib zlib-devel算法

4.安裝Open SSL
nginx不只支持 http協議,還支持 https(即在 ssl 協議上傳輸 http),若是使用了 https,須要安裝 OpenSSL 庫。安裝指令以下:
yum install -y openssl openssl-develvim


第三步:解壓nginx壓縮包並安裝
tar -zxvf nginx-1.12.0.tar.gz瀏覽器

配置,編譯安裝 開啓nginx狀態監測功能
./configure --prefix=/usr/local/nginx/
make
make installtomcat


第四步:啓動nginx
進入/usr/local/nginx/sbin目錄,輸入./nginx便可啓動nginx
./nginxbash

--------------添加防火牆容許端口訪問-----------------

iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 80 -j ACCEPT

在其它電腦使用瀏覽器訪問 http://ip 進行測試

關閉nginx
./nginx -s quit 或者 ./nginx -s stop

重啓nginx
./nginx -s reload

查看nginx進程
ps aux|grep nginx

 

此外,nginx的配置文件位置 ->/usr/local/nginx/conf/nginx.conf

如修改域名、端口、反向代理,都在這裏面使用vim進行配置修改

 

e.g:使用nginx 代理 tomcat部署的web項目

vim /usr/local/nginx/conf/nginx.conf

最簡單的部署方案

 server {
    listen 80;
    server_name www.xxxx.com;
    location / {
    proxy_pass http://127.0.0.1:8080/web項目路徑/;
    }

 

經過nginx反向代理tomcat

 在http{  } 中添加以下內容

    upstream xxxx{
        server 192.168.0.1:8080;
        server 192.168.0.2:8080;
    }

在server{location /{}}中添加以下內容 

 server {
    listen 80;
    server_name www.xxxx.com;
    #charset koi8-r;
    #access_log  logs/host.access.log  main;

    location / {
    root    html;
    index    index.html index.htm;
    proxy_pass http://xxxx;
    }

反向代理完成,經過外部瀏覽器訪問 http://192.168.0.1/xxxx/ 與 http://192.168.0.2/xxxx/  便可

 

 


-----------------------將Nginx註冊爲Linux服務---------------------------------
1.在/etc/init.d目錄下新建文件,命名爲nginx
對nginx文件進行編輯,執行

vim /etc/init.d/nginx

2.粘貼如下內容,並修改路徑爲本身實際的路徑

#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
# it is v.0.0.2 version.
# chkconfig: - 85 15
# description: Nginx is a high-performance web and proxy server.
# It has a lot of features, but it's not for everyone.
# processname: nginx
# pidfile: /var/run/nginx.pid
# config: /usr/local/nginx/conf/nginx.conf

nginxd=/usr/local/nginx/sbin/nginx
nginx_config=/usr/local/nginx/conf/nginx.conf
nginx_pid=/var/run/nginx.pid
RETVAL=0
prog="nginx"

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
[ -x $nginxd ] || exit 0

# Start nginx daemons functions.
start() {
if [ -e $nginx_pid ];then
echo "nginx already running...."
exit 1

fi
echo -n $"Starting $prog: "
daemon $nginxd -c ${nginx_config}
RETVAL=$?

echo
[ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
return $RETVAL
}

# Stop nginx daemons functions.
stop() {
echo -n $"Stopping $prog: "
killproc $nginxd
RETVAL=$?
echo
[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}

# reload nginx service functions.
reload() {
echo -n $"Reloading $prog: "

#kill -HUP `cat ${nginx_pid}`
killproc $nginxd -HUP
RETVAL=$?
echo
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
stop
start
;;
status)
status $prog
RETVAL=$?
;;
*)
echo $"Usage: $prog {start|stop|restart|reload|status|help}"
exit 1
esac
exit $RETVAL

 

3.設置nginx的文件屬性,把nginx 修改成可運行的文件

#chmod a+x nginx

4.設置服務運行級別

#chkconfig --add nginx

5.服務就添加成功了

而後用 chkconfig --list 查看,在服務列表裏就會出現自定義的服務了

# chkconfig --list

6.測試

service nginx start

service nginx stop

service nginx restart

service nginx status

 

至此,nginx的安裝便到此結束!

經過外部瀏覽器訪問 http://ip 測試後臺頁面

相關文章
相關標籤/搜索