我按照Debian的说明安装了CUPS:
apt-get install cups-client cups-pdf cups
然后启动CUPS服务/etc/init.d/cups start
,然后尝试连接到http://localhost:631/
,但firefox
或w3m
无法与之连接。
当我运行/etc/init.d/cups status
时,答案是:
通用Unix打印系统的状态: cupsd正在运行。
我的操作系统是Debian Wheezy。
编辑:添加日志和一些命令的输出
来自netstat -lntp
的输出:
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1834/rpcbind
tcp 0 0 0.0.0.0:48240 0.0.0.0:* LISTEN 1868/rpc.statd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2564/cupsd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 3206/exim4
tcp6 0 0 :::111 :::* LISTEN 1834/rpcbind
tcp6 0 0 :::44155 :::* LISTEN 1868/rpc.statd
来自/var/log/cups/error_log
的输出:
E [25/Sep/2013:00:07:12 +0200] Unable to bind socket for address 127.0.0.1:631 - Cannot assign requested address.
E [25/Sep/2013:00:11:42 +0200] Unable to bind socket for address [v1.::1]:631 - Cannot assign requested address.
E [25/Sep/2013:00:11:42 +0200] Unable to bind socket for address 127.0.0.1:631 - Cannot assign requested address.
E [25/Sep/2013:00:34:43 +0200] Avahi client failed, closing client to allow a clean restart
E [25/Sep/2013:08:09:21 +0200] Unable to bind socket for address [v1.::1]:631 - Cannot assign requested address.
E [25/Sep/2013:10:34:11 +0200] Unable to bind socket for address [v1.::1]:631 - Cannot assign requested address.
E [25/Sep/2013:10:47:41 +0200] Unable to bind socket for address [v1.::1]:631 - Cannot assign requested address.
E [25/Sep/2013:16:20:49 +0200] Unable to bind socket for address [v1.::1]:631 - Cannot assign requested address.
E [25/Sep/2013:16:53:56 +0200] Unable to bind socket for address [v1.::1]:631 - Cannot assign requested address.
E [25/Sep/2013:16:53:56 +0200] Unable to bind socket for address 127.0.0.1:631 - Cannot assign requested address.
来自/var/log/cups/access_log
的输出:
localhost - - [25/Sep/2013:00:07:15 +0200] "POST / HTTP/1.1" 200 3498492 CUPS-Get-PPDs -
iptables-save
没有输出。
发布于 2013-09-24 17:09:11
查看一下/var/log/cups
目录。通常有3个文件是CUPS用来记录消息的:
访问此目录将需要sudo
。你可以这样做:
$ sudo head -5 access_log error_log page_log
==> access_log <==
localhost - ethan [24/Sep/2013:07:39:57 -0400] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - ethan [24/Sep/2013:07:53:57 -0400] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - ethan [24/Sep/2013:08:07:57 -0400] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - ethan [24/Sep/2013:08:21:57 -0400] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
localhost - ethan [24/Sep/2013:08:35:57 -0400] "POST / HTTP/1.1" 200 186 Renew-Subscription successful-ok
==> error_log <==
E [24/Sep/2013:07:38:40 -0400] Unknown directive SystemGroup on line 16 of /etc/cups/cupsd.conf.
W [24/Sep/2013:07:38:40 -0400] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Brother-MFC-8480DN-Gray..' already exists
W [24/Sep/2013:07:38:40 -0400] CreateDevice failed: org.freedesktop.ColorManager.AlreadyExists:device id 'cups-Brother-MFC-8480DN' already exists
==> page_log <==
当您试图在http://localhost:631
中浏览access_log
时,您应该会看到访问。
https://unix.stackexchange.com/questions/92222
复制相似问题