【2017/8/11】Linux7 简单安装nginx


一.安装依赖

yum install -y gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel


二.安装nginx

tar -zxvf nginx-1.6.2.tar.gz
cd nginx-1.6.2 
./configure --prefix=/usr/local/nginx
make && make install




三.编辑index.html

vi /usr/local/nginx/html/index.html 


四.防火墙放行端口80

firewall-cmd --permanent --zone=public --add-port=80/tcp


firewall-cmd --permanent --zone=public --add-port=80/udp


firewall-cmd --reload 


[root@112 ~]# firewall-cmd --list-all
public (default, active)
  interfaces: eno16777736
  sources: 
  services: dhcpv6-client http mysql ssh
  ports: 80/tcp 80/udp
  masquerade: no
  forward-ports: 
  icmp-blocks: 
  rich rules: 

[root@111 ~]# 

五.启动nginx

/usr/local/nginx/sbin/nginx   
ps -ef | grep nginx  
如果要关闭nginx
 /usr/local/nginx/sbin/nginx -s stop  
重新热启动nginx
 /usr/local/nginx/sbin/nginx -s reload  









六.测试

[root@112 nginx-1.6.2]# curl 127.0.0.1



Welcome to nginx!



Welcome to nginx!


If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.




For online documentation and support please refer to
nginx.org.

Commercial support is available at
nginx.com.




Thank you for using 158.112.



你可能感兴趣的:(linux,installations)