如何设置服务器的完全限定域名?

时间:2012-02-25 16:28:32

标签: apache configuration fqdn

当我尝试重启apache发布/etc/init.d/apache2 restart时,我收到以下消息:

root@server:~# /etc/init.d/apache2 restart
 * Restarting web server apache2                                                                                                                             apache2: apr_sockaddr_info_get() failed for server
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
 ... waiting apache2: apr_sockaddr_info_get() failed for server
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
                                                                                                                                                      [ OK ]
root@server:~# cat /etc/hostname
iSell
root@server:~# hostname
server
root@server:~# hostname -f
hostname: Name or service not known
root@server:~# cat /etc/hosts
127.0.0.1     localhost localhost.localdomain
108.1.*.*     eins
root@server:~#

注意:/ etc / hosts中ip末尾的两个星号是在发布时添加的。 注2:假设我的域名是www.xyz.net

我想知道我必须一步一步地做些什么。 非常感谢!

5 个答案:

答案 0 :(得分:21)

使用以下命令编辑Apache的空白httpd.conf:

sudo gedit /etc/apache2/httpd.conf

添加以下行:

ServerName localhost

保存并退出并重新启动Apache:

sudo /etc/init.d/apache2 restart

这将照顾它。

答案 1 :(得分:1)

1)编辑文件: vi /etc/apache2/apache.conf 2)写在最后一行(看你的机器名写:cat / etc / hostname): ServerName你的机器名 3)service apache2 reload

enjoyit!

答案 2 :(得分:1)

  1. 首先,检查您的apache版本
    $ apache2 -v
  2. 如果您的apache版本是2.x,请使用以下命令来避免此消息 $ echo "ServerName\t`cat /etc/hostname`" | sudo tee -a /etc/apache2/apache2.conf

答案 3 :(得分:1)

将ServerName添加到/etc/apache2/apache.conf

ServerName [yourservername or localhost]

并加载Apache配置: service apache2 restart

答案 4 :(得分:0)

编辑您的主持人文件

sudo nano /etc/hosts

看看你是否将ip 127.0.1.1作为服务器的好名称

127.0.1.1      srv-web-01

并重新启动Apache

sudo service apache2 restart