如何设置 apache 以提供无错误页面内容?我不想要默认行为、空白或自定义页面。除了标题,我不想返回任何内容,所有浏览器都必须显示自己的本机错误页面。我正在使用 Apache 2.2.22
主页
/
user-120634
kbec's questions
kbec
Asked:
2012-05-13 14:30:58 +0800 CST
我想使用 强制日志文件轮换logrotate -f /var/log/syslog
,但它只是返回音调:
error: syslog:1 unknown option 'May' -- ignoring line
error: syslog:1 unexpected text
我知道在这个系统上 rsyslogd 正在运行。如何旋转/var/log/syslog
?我想要它是空的。
kbec
Asked:
2012-05-13 12:12:16 +0800 CST
我已经在 debian squeeze 上安装了 bind9。这是我的named.conf.local
文件:
options {
directory "/var/cache/bind";
auth-nxdomain no;
listen-on { any; };
listen-on-v6 { any; };
};
zone "devhub.pl" IN {
type master;
file "db.devhub";
};
这是我的区域文件:
$TTL 3h
devhub.pl. IN SOA ns1.devhub.pl. root.devhub.pl. (
2012051201 ; serial
3h ; refresh
1h ; retry
1w ; expire
1h ) ; negative caching
IN NS ns1.devhub.pl.
IN NS ns2.devhub.pl.
ns1.devhub.pl. IN A 193.93.207.231
ns2.devhub.pl. IN A 193.93.207.231
www IN CNAME devhub.pl.
named-checkconf
并named-checkzone
报告一切正常,但是当我尝试将外部 DNS 设置为
ns1.devhub.pl -> 193.93.207.231
ns2.devhub.pl -> 193.93.207.231
我的提供商的管理面板显示如下错误:
dns1: ns1.devhub.pl server isn't configured for devhub.pl domain. Please contact admin...
dns2: ns2.devhub.pl server isn't configured for devhub.pl domain. Please contact admin...
我缺少什么?有什么建议么?
和日志:
starting BIND 9.7.3 -u bind -t /var/jail/bind
built with '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--sysconfdir=/etc/bind' '--localstatedir=/var' '--enable-threads' '--enable-largefile' '--with-libtool' '--enable-shared' '--enable-static' '--with-openssl=/usr' '--with-gssapi=/usr' '--with-gnu-ld' '--with-dlz-postgres=no' '--with-dlz-mysql=no' '--with-dlz-bdb=yes' '--with-dlz-filesystem=yes' '--with-dlz-ldap=yes' '--with-dlz-stub=yes' '--with-geoip=/usr' '--enable-ipv6' 'CFLAGS=-fno-strict-aliasing -DDIG_SIGCHASE -O2' 'LDFLAGS=' 'CPPFLAGS='
adjusted limit on open files from 1024 to 1048576
found 2 CPUs, using 2 worker threads
using up to 4096 sockets
loading configuration from '/etc/bind/named.conf'
reading built-in trusted keys from file '/etc/bind/bind.keys'
using default UDP/IPv4 port range: [1024, 65535]
using default UDP/IPv6 port range: [1024, 65535]
listening on IPv6 interfaces, port 53
binding TCP socket: address in use
listening on IPv4 interface lo, 127.0.0.1#53
binding TCP socket: address in use
listening on IPv4 interface eth0, 172.16.7.1#53
binding TCP socket: address in use
listening on IPv4 interface eth1, 193.93.207.231#53
binding TCP socket: address in use
generating session key for dynamic DNS
set up managed keys zone for view _default, file 'managed-keys.bind'
automatic empty zone: 254.169.IN-ADDR.ARPA
automatic empty zone: 2.0.192.IN-ADDR.ARPA
automatic empty zone: 100.51.198.IN-ADDR.ARPA
automatic empty zone: 113.0.203.IN-ADDR.ARPA
automatic empty zone: 255.255.255.255.IN-ADDR.ARPA
automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
automatic empty zone: D.F.IP6.ARPA
automatic empty zone: 8.E.F.IP6.ARPA
automatic empty zone: 9.E.F.IP6.ARPA
automatic empty zone: A.E.F.IP6.ARPA
automatic empty zone: B.E.F.IP6.ARPA
automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA
couldn't add command channel 127.0.0.1#953: address in use
couldn't add command channel ::1#953: address in use
zone 0.in-addr.arpa/IN: loaded serial 1
zone 127.in-addr.arpa/IN: loaded serial 1
zone 255.in-addr.arpa/IN: loaded serial 1
zone localhost/IN: loaded serial 2
zone devhub.pl/IN: loaded serial 2012051201
managed-keys-zone ./IN: loading from master file managed-keys.bind failed: file not found
managed-keys-zone ./IN: loaded serial 0
zone devhub.pl/IN: sending notifies (serial 2012051201)
running
这个怎么样address in use
——有问题吗?
顺便说一句,绑定已 chroot 并正在运行/etc/init.d/bind9 start
,然后/etc/init.d/bind9 status
说could not access PID file for bind9 ... failed!
kbec
Asked:
2012-05-11 05:54:29 +0800 CST
我想将我的来宾系统固定到现有网络 - 他们必须像主机一样从同一个 dhcp 服务器获取 ip,并且可以通过该网络与主机和其他服务器通信。我可以这样做吗?怎么做?