0%

Linux(3)高级配置

Linux高级配置

3.1 静态IP设置

1
2
3
4
5
6
7
8
9
10
vim /etc/sysconfig/network-scripts/ifcfg-ens33

修改增加内容
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.182.100 # IP地址
GATEWAY=192.168.182.2 # 网关IP
DNS1=192.168.182.2 # DNS服务器地址

serivce netword restart # 重启网卡

3.2 hostname设置

3.2.1 临时设置(立即生效,重启后失效)

1
2
hostname  # 查看域名
hostname bigdata01

3.2.2 永久设置(机器重启后才能生效)

1
2
3
vim /etc/hostname
bigdata01 # 修改文件内容
reboot

3.3 防火墙关闭

3.3.1 临时关闭

1
2
3
systemctl stop fire  # 关闭防火墙

systemctl status firewalld # 查看防火墙状态

3.3.2 永久关闭

1
systemctl disable firewalld  # 永久关闭防火墙,移除开机启动项

-------------本文结束感谢您的阅读-------------