欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux系统基础配置(centos7.5)

程序员文章站 2024-03-11 16:01:31
...

1、关闭防火墙

//临时关闭

systemctl stop firewalld

//禁止开机启动

systemctl disable firewalld

Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.

Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.

centos6以下:

//临时关闭

service iptables stop

//禁止开机启动

chkconfig iptables off

2、修改IP

linux系统基础配置(centos7.5)

linux系统基础配置(centos7.5)

3、修改机器名

将etc 目录下的hostname文件里的内容全部删除改成想要设置的机器名

linux系统基础配置(centos7.5)

相关标签: 运维