我们正在尝试使用Passenger和Nginx在Linode Ubuntu 10.04 Lucid盒子上部署我们的Rails应用程序。
我们似乎无法从Ubuntu框的根IPv6地址设置主机名。
我们收到错误:
root@`ourIPv6`:~# hostname -f
hostname: Name or service not known
当我输入hostname
时,它会返回myhost
但是当我输入hostname -f
时,它会返回hostname: Name or service not known
设置主机名需要采取的措施是什么?
hosts file:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
97.107.128.97 plato.example.com plato
答案 0 :(得分:2)
修改/etc/hostname
和/etc/hosts
并确保您想要的主机名在那里的主机文件中,然后执行#: hostname -F /etc/hostname
。