以开放8080端口为例: 方式一: 1、开启防火墙 systemctl start firewalld 2、开放指定端口 firewall-cmd --zone=public --add-port=1935/tcp --permanent 命令含义: --zone #作用域 --add-port=1935/tcp #添加端口,格式为:端口/通讯协议…
一、更改ssh端口 1、更改sshd配置文件 echo Port 4000 >>/etc/ssh/sshd_config 2、关闭selinux setenforce 0 sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config 3、配置防…