修改Linux里的hosts文件
Posted sanqima
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改Linux里的hosts文件相关的知识,希望对你有一定的参考价值。
当我们使用自定义的域名时,而这些域名没有公网IP,这时就需要在/etc/hosts文件里指定这些域名。步骤如下:
1、打开/etc/hosts
sudo vim /etc/hosts
2、添加自定义的域名
192.168.30.11 orderer.example.com
192.168.30.22 peer0.org1.example.com
192.168.30.33 peer1.org1.example.com
192.168.30.44 peer0.org2.example.com
192.168.30.55 peer1.org2.example.com
## 0.0.0.0 account.jetbrains.com
3、重启网络
sudo /etc/init.d/networking restart
以上是关于修改Linux里的hosts文件的主要内容,如果未能解决你的问题,请参考以下文章