博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos修改主机名的正确方法
阅读量:6704 次
发布时间:2019-06-25

本文共 1443 字,大约阅读时间需要 4 分钟。

1 centos6下修改hostname

[root@centos6 ~]$ hostname                                              # 查看当前的hostnmaecentos6.magedu.com[root@centos6 ~]$ vim /etc/sysconfig/network                            # 编辑network文件修改hostname行(重启生效)[root@centos6 ~]$ cat /etc/sysconfig/network                            # 检查修改NETWORKING=yesHOSTNAME=centos66.magedu.com[root@centos6 ~]$ hostname centos66.magedu.com                          # 设置当前的hostname(立即生效)[root@centos6 ~]$ vim /etc/hosts                                        # 编辑hosts文件,给127.0.0.1添加hostname[root@centos6 ~]$ cat /etc/hosts                                        # 检查127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 centos66.magedu.com::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

2 centos7修改hostname

[root@centos7 ~]$ hostnamectl set-hostname centos77.magedu.com             # 使用这个命令会立即生效且重启也生效[root@centos7 ~]$ hostname                                                 # 查看下centos77.magedu.com[root@centos7 ~]$ vim /etc/hosts                                           # 编辑下hosts文件, 给127.0.0.1添加hostname[root@centos7 ~]$ cat /etc/hosts                                           # 检查127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4 centos77.magedu.com::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

 

转载于:https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_linux_043_hostname.html

你可能感兴趣的文章
10月第3周网络安全报告:境内被篡改网站升至4202个
查看>>
我的友情链接
查看>>
都996了,研发效能还是提不出起来,关键在这里
查看>>
分布式事务中间件 Fescar—RM 模块源码解读
查看>>
ZooKeeper典型使用场景一览
查看>>
更新代码
查看>>
Linux下常用的压缩与解压命令
查看>>
简单的 jQuery 浮动层随窗口滚动滑动插件实例
查看>>
我的友情链接
查看>>
Cocos2d-x3.2 Loading场景的设计
查看>>
Cocos2d-x3.2 多点触控
查看>>
企业Exchange邮件服务器搭建实例
查看>>
linux下 htop 工具简介
查看>>
Ubuntu 中文输入法安装
查看>>
服务交付经理的职责
查看>>
php-fpm监控监本
查看>>
xcode 弹出“could not change executable permission...
查看>>
Google Java编程风格指南中文版
查看>>
阿里云Linux一键安装LNMP环境使用
查看>>
EF数据库迁移
查看>>