web-dev-qa-db-ja.com

CUPSに接続できません

DebianWikiの指示に従って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は実行中です。

私のOSはDebianWheezyです。

編集:ログといくつかのコマンドの出力を追加しました

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には出力がありません。

2
David Martínez

/var/log/cupsディレクトリを見てください。通常、CUPSがメッセージをログに記録するために使用するファイルは3つあります。

  • access_log
  • エラーログ
  • page_log

このディレクトリにアクセスするには、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:631access_logを参照しようとすると、アクセスが表示されます。

1
slm