标签:当前目录 隐藏 启动 打开 cin 查看 stat get configure
NGINX安装二.创建nginx用户和组
1.[root@localhost nginx-1.11.2]# useradd -s /sbin/nologin -M nginx
[root@localhost nginx-1.11.2]# id nginx
三.安装依赖包
1.yum install pcre-devel zlib zlib-devel openssl openssl-devel
2.Yum install gcc gcc+
四.安装部署nginx
1.因yum无法安装nginx需官网下载:
wget http://nginx.org/download/nginx-1.12.2.tar.gz(下载到/usr/local下)
2.解压nginx包: tar -zxf nginx-1.12.2.tar.gz
3.进入解压目录:cd /nginx-1.12.2
4.修改nginx版本,隐藏版本对 Nginx WEB 启动安全的作用,指令
如下:sed -i -e ‘s/1.12.2//g‘ -e ‘s/nginx\//JWS/g‘ -e
‘s/"NGINX"/"JWS"/g‘ src/core/nginx.h
5.预编译: ./configure --prefix=/usr/local/nginx/ --user=nginx
--group=nginx --with-http_stub_status_module
--with-http_ssl_module
5.编译: make -j4
6.安装:make -j4 install
7.启动Nginx: /usr/local/nginx/sbin/nginx
查看服务及端口: 服务: ps -ef|grep nginx 端口:netstat -tnlp |grep 80.
8.关闭防火墙:systemctl stop firewalld.servic
9.关闭slinux
临时关闭:
[root@localhost ~]#?getenforce
Enforcing
[root@localhost ~]#?setenforce 0
[root@localhost ~]#?getenforce
Permissive
永久关闭:
[root@localhost ~]# vim /etc/sysconfig/selinux
SELINUX=enforcing 改为?SELINUX=disabled
标签:当前目录 隐藏 启动 打开 cin 查看 stat get configure
原文地址:https://blog.51cto.com/12584051/2463184