反向代理
负载均衡
动静分离
nginx是一个高性能的http和反向代理web服务器
Linux下安装nginx
./nginx 启动
./nginx -s stop
./nginx -s quit
./nginx -s reload
ps aux | grep nginx
[root@centos7 ~]# service firewalld start
[root@centos7 ~]# service firewalld restart
[root@centos7 ~]# service firewalld stop
[root@centos7 ~]# firewalld-cmd reload
[root@centos7 ~]# firewalld-cmd --list-all 查看防火墙规则
[root@centos7 ~]# firewalld-cmd --query-port=8080/tcp 检查端口是否开放
[root@centos7 ~]# firewalld-cmd --permanent --add-port=3306/tcp 开放3306端口
[root@centos7 ~]# firewalld-cmd --permanent --remove-port=3306/tcp 移除3306端口
firewalld-cmd 是Linux提供的操作防火墙的一个工具
--permanent 表示设置为持久