Nginx Linux下部署安裝Nginx

2021-09-24 15:58:29 字數 1840 閱讀 4758

如果是用來做fastdfs的話,nginx只需要安裝到storageserver所在的伺服器即可,用於訪問檔案。我這裡由於是單機,trackerserver和storageserver在一台伺服器上。

系統版本:centos 7

nginx:nginx-1.13.9

# yum install gcc-c++
# yum install -y pcre pcre-devel
# yum install -y zlib zlib-devel
# yum install -y openssl openssl-devel
wget -c
tar zxvf nginx-1.13.9.tar.gz
cd nginx-1.13.9
mkdir /usr/local/nginx
./configure --prefix=/usr/local/nginx 

或 ./configure

make
make install
cd usr/local/nginx/
# cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s reopen
./nginx -s reload
# vim /etc/rc.local

新增一行:

/usr/local/nginx/sbin/nginx

# 設定執行許可權

新增後就能在本機使用80埠訪問了。

# vim /etc/sysconfig/iptables

新增如下埠行:

-a input -m state --state new -m tcp -p tcp --dport 80 -j accept

重啟防火牆:

簡單的測試訪問檔案

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

新增如下行,將 /group1/m00 對映到 /home/fastdft/resource/data/

location /group1/m00

# 重啟nginx

好了,enjoy。

晚安,2023年6月22日03:52:30

Nginx Linux詳細安裝部署教程

nginx是乙個web伺服器也可以用來做負載均衡及反向 使用,目前使用最多的就是負載均衡,下面介紹安裝步驟 root localhost src wget root localhost src wget root localhost src wget root localhost src wget ...

Nginx Linux詳細安裝部署教程

nginx engine x 是乙個高效能的 http和反向 伺服器,也是乙個imap pop3 smtp 伺服器。正向 反向 1 http伺服器,可以做靜態網頁的http伺服器。2 配置虛擬機器。乙個網域名稱可以被多個ip繫結。可以根據網域名稱的不同吧請求 給執行在不同埠的伺服器。3 反向 負載均...

nginx linux下的部署

一些概念 一 使用xftp將程式上傳到你的linux上 二 安裝gcc yum yinstall gcc automake autoconf libtool make 三 安裝g yum install gcc gcc c 四 解壓nginx安裝包 tar zxvf nginx 1.8.1.tar....