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

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

linux修改主机名的方法* 临时修改 用hostname命令可以临时修改机器名,但机器重新启动之后就会恢复原来的值。#hostname   //查看机器名#hostname -I  //查看本机器名对应的ip地址《jb@panda:~$ hostnamepandajb@panda:~$ hostname -I192.168.10.39 》* 永久修改      1)编辑文件/etc/hosts 将下面的一行  127.0.1.1 xxxxx  替换为  127.0.1.1 newhostname  2) 编辑 /etc/hostname文件 删除该文件的所有内容,添加newhostname《里面只有原来的主机名》  3)运行一下命令 hostname newhostname《这个需要切换成rootsu - root普通用户,不行jb@panda4460:~$ hostname 380hostname: you must be root to change the host namesudo 也不行jb@panda4460:~$ sudo hostname 380sudo: unable to resolve host panda4460jb@panda4460:~$ hostname380换成root就好了jb@panda4460:~$ su - rootPassword: root@380:~# hostname 380root@380:~# 》  3.退出root用户 改用一般用户登录即可  注:  其中 xxxxx为原来的主机名 newhostname为你想修改的主机名how to avoid the warning: apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerNameEdit your httpd.conf and add your ServerNamenano /etc/apache2/httpd.conf Add your server name:ServerName YourHostName Reboot the system for the new changes to take effectsudo shutdown -r now Done!ctrl+d注销一下系统,再重登录

转载于:https://www.cnblogs.com/vipzrx/p/3470990.html

你可能感兴趣的文章
leetcode——Best Time to Buy and Sell Stock
查看>>
Android LinearLayout 的几个属性
查看>>
strcpy函数里的小九九
查看>>
搭建ssm过程中遇到的问题集
查看>>
OpenLayers绘制图形
查看>>
tp5集合h5 wap和公众号支付
查看>>
Flutter学习笔记(一)
查看>>
iOS10 国行iPhone联网权限问题处理
查看>>
洛谷 P1991 无线通讯网
查看>>
[HIHO1184]连通性二·边的双连通分量(双连通分量)
查看>>
Codeforces Round #178 (Div. 2) B. Shaass and Bookshelf 【动态规划】0-1背包
查看>>
SparkStreaming 源码分析
查看>>
【算法】—— 随机音乐的播放算法
查看>>
mysql asyn 示例
查看>>
DataGrid 点击 获取 行 ID
查看>>
git 使用
查看>>
边框圆角方法
查看>>
asp.net WebApi自定义权限验证消息返回
查看>>
php中eval函数的危害与正确禁用方法
查看>>
20172315 2017-2018-2 《程序设计与数据结构》第十一周学习总结
查看>>