1、修改主机hostname
vi /etc/hostname修改hosts
vi /etc/hosts 192.168.10.201 cdh201 192.168.10.202 cdh202 192.168.10.203 cdh203 192.168.10.204 cdh204重启电脑使hostname生效
2、防火墙相关命令
#先查看防火墙是否开启的状态,以及开放端口的情况: systemctl status firewalld.service # 查看防火墙开启还是关闭 sudo firewall-cmd --list-all #可以查看端口开放情况 #使用以下命令来开启或者关闭虚拟机的防火墙 systemctl stop firewalld.service(停止防火墙) systemctl start firewalld.service(打开防火墙) disable firewalld.service(关闭开机自启) #接下来通过以下命令开放http 8080(80) 端口: sudo firewall-cmd --add-service=http --permanent (允许http服务) sudo firewall-cmd --add-port=8080/tcp --permanent(打开8080端口) # 注:命令末尾的–permanent表示用久有效,不加这句的话重启后刚才开放的端口就又失效了。 # 最后重启防火墙: sudo firewall-cmd --reload (查看端口开放情况) sudo firewall-cmd --list-all # 发现 services: 出现 http 服务,ports:出现了8080/80 端口:
标签:sudo,--,基础,cmd,端口,防火墙,firewall,设置,linux From: https://www.cnblogs.com/YA-Zed/p/17069820.html