由于工作原因需要在无网络情况下做一些服务,特意做一下无网络环境下安装nginx服务。
系统环境:
centos7(最小环境安装)(提前关闭firewalld和selinux)其中selinux可以不关闭。
IP | 节点名称 |
---|---|
192.168.182.150 | master |
需要nginx资源包的找博主私信。
注意:其实只需要nginx包就可以,至于为什么要安装gcc等一系列插件,是为了如果有编译安装的需求,那么可以直接编译安装,本文采用的是rpm安装。
1、安装gcc。
cd gcc
rpm -Uvh *.rpm --nodeps --force
2、安装g++。
cd gcc-c++
rpm -Uvh *.rpm --nodeps --force
3、安装pcre-8.35。
tar -zxf pcre-8.35.tar.gz
cd pcre-8.35
./configure
make
make install
4、安装libtool-2.4.2。
tar -zxf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure
make
make install
5、安装nginx。
tar -zxf nginx-1.13.9.tar.gz
cd nginx-1.13.9
./configure
make
make install
6、启动nginx(这里根据自己的nginx安装目录)。
/usr/local/nginx/sbin/nginx -c /nginx/nginx-1.13.9/conf/nginx.conf
7、查看nginx进程(因为是初始环境没安装net-tools,没有netstat命令在这里使用ps -ef|grep nginx 查看nginx进程是否启动)
ps -ef |grep nginx
root 15022 1 0 16:12 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /nginx/nginx-1.13.9/conf/nginx.conf
nobody 15023 15022 0 16:12 ? 00:00:00 nginx: worker process
root 15080 3867 0 16:22 pts/0 00:00:00 grep --color=auto nginx
8、web端验证(在浏览器输入本机IP地址)。