CentOS7常用设置

1、临时修改IP地址,重启无效:

    ifconfig eno16777736 ip地址 netmask 255.255.255.0

2、修改主机名:

    2.1、查看主机名:hostnamectl、hostnamectl status

    2.2、查看静态、瞬态、灵活的主机名:

        hostnamectl --static、hostnamectl --transient、hostnamectl --pretty

    2.3、同时修改所有三个主机名:静态、瞬态和灵活主机名:

        hostnamectl set-hostname 主机名

在修改静态/瞬态主机名时,任何特殊字符或空白字符会被移除,而提供的参数中的任何大写字母会自动转化为小写。一旦修改了静态主机名,/etc/hostname 将被自动更新。然而,/etc/hosts 不会更新以保存所做的修改,所以你每次在修改主机名后一定要手动更新/etc/hosts,之后再重启CentOS 7。否则系统再启动时会很慢。

    2.4、手动更新/etc/hosts

        vim /etc/hosts  #编辑配置文件

  127.0.0.1 localhost 主机名  #修改localhost.localdomain为主机名

  :wq! #保存退出

  shutdown -r now #重启系统

3、查看端口:netstat -lntup

4、服务器之间通过主机名互相访问:

CentOS7常用设置_第1张图片


你可能感兴趣的:(CentOS7)