NameVirtualHost???

发布于 2022-07-20 09:00:37 字数 1097 浏览 11 评论 3

/etc/httpd/conf/httpd.conf
部分:

NameVirtualHost 192.168.16.67
<VirtualHost 192.168.16.67:80>
    ServerAdmin webmaster@cdfun.net
    DocumentRoot /var/www/html/discuz
    ServerName bbs.cdfun.net
    ErrorLog logs/bbs.cdfun.net-error_log
    CustomLog logs/bbs.cdfun.net-access_log common
</VirtualHost>

我是按照参考书上写的一步步做的!!!
为什么启动httpd进程是报错???
#service httpd start

[Thu Feb 23 08:25:05 2006] [error] VirtualHost 192.168.16.67:80 -- mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results

不过,http://bbs.cdfun.net可以打开网页!!!

去掉NameVirtualHost 192.168.16.67这句,启动httpd进程没有报错!!!

请教高手指教,httpd.conf如何配置NameVirtualHost???

[ 本帖最后由 xy-coordinate 于 2006-2-23 08:37 编辑 ]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

初与友歌 2022-07-21 17:52:45

[root@localhost named]# rpm -aq|grep bind
redhat-config-bind-1.9.0-13
bind-9.2.1-16
bind-utils-9.2.1-16
ypbind-1.11-4

[root@localhost named]# rpm -aq|grep caching-nameserver
caching-nameserver-7.2-7

/etc/
vi named.conf
添加:

zone "cdfun.net" {
type master;
file "cdfun.net.hosts";
};
zone "16.168.192.in-addr.arpa" {
type master;
file "192.168.16.rev";
};

/var/named/
vi cdfun.net

$TTL 86400
cdfun.net. IN SOA localhost. root (
    10 ; serial
    28800 ; refresh
    14400 ; retry
    3600000 ; expire
    86400 ; ttl
    )

cdfun.net. IN NS dns.cdfun.net.
dns  IN A 192.168.16.67
gateway  IN A 192.168.16.1
rh9 IN A 192.168.16.68
winxp1 IN A 192.168.16.167
bbs IN CNAME dns.cdfun.net.
www IN A 192.168.16.66

vi 192.168.16.rev

$TTL 86400
@ IN SOA localhost. root (
    10 ; serial
    28800 ; refresh
    14400 ; retry
    3600000 ; expire
    86400 ; ttl
    )

@  IN NS dns.cdfun.net.
1  IN PTR gateway.cdfun.net.
67  IN PTR dns.cdfun.net.
68 IN PTR rh9.cdfun.net.
167 IN PTR winxp1.cdfun.net.
66 IN PTR www.cdfun.net

[ 本帖最后由 xy-coordinate 于 2006-2-23 10:46 编辑 ]

假装爱人 2022-07-21 10:35:01

谢谢斑竹!

我还想请教,为什么在VM-workstation5上安装的rh9与我在PC机上(OS:rh9),BIND配置的一模一样,只是IP不同,VM-rh9只能本机解析,其他机器不行!

而PC机上的rh9,named却工作正常!!!

是不是VM软件有什么bug呀?!

PS:
VM-rh9的网络配置类型为“桥接”!!!

[ 本帖最后由 xy-coordinate 于 2006-2-23 10:54 编辑 ]

燕归巢 2022-07-20 16:29:50

NameVirtualHost 192.168.16.67:80
<VirtualHost 192.168.16.67:80>
    ServerAdmin webmaster@cdfun.net
    DocumentRoot /var/www/html/discuz
    ServerName bbs.cdfun.net
    ErrorLog logs/bbs.cdfun.net-error_log
    CustomLog logs/bbs.cdfun.net-access_log common
</VirtualHost>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文