Cups : Pb lors de l'ajout d'imprimante

Cups : Pb lors de l'ajout d'imprimante - Installation - Linux et OS Alternatifs

Marsh Posté le 14-04-2008 à 12:14:03    

Bonjour,
 
 
J'ai un serveur d'impression CUPS (1.3.6-3) sous Debian Lenny.
Lorsque je souhaite ajouter une imprimante via l'interface Web Cups tout se passe correctement jusqu'au moment de valider l'ajout, qui se traduit logiquement par le passage en https et la demande d'authentification.
Je n'ai aucune demande d'authentification et une page "Connexion réinitialisée" apparait.
 
Voici mes fichiers de conf :
CUPS

Code :
  1. #
  2. #
  3. #   Sample configuration file for the Common UNIX Printing System (CUPS)
  4. #   scheduler.  See "man cupsd.conf" for a complete description of this
  5. #   file.
  6. #
  7. # Log general information in error_log - change "info" to "debug" for
  8. # troubleshooting...
  9. LogLevel warning
  10. ServerName X.X.X
  11. DefaultCharset iso-8859-15
  12. DefaultLanguage fr
  13. MaxLogSize 0
  14. PreserveJobHistory Yes
  15. PreserveJobFiles Yes
  16. AutoPurgeJobs No
  17. MaxCopies 100
  18. MaxJobs 50
  19. # Administrator user group...
  20. SystemGroup lpadmin
  21. # Only listen for connections from the local machine.
  22. Listen X.X.X.X:631
  23. Listen /var/run/cups/cups.sock
  24. # Show shared printers on the local network.
  25. Browsing On
  26. BrowseOrder allow,deny
  27. BrowseAllow all
  28. # Default authentication type, when authentication is required...
  29. DefaultAuthType Basic
  30. # Restrict access to the server...
  31. <Location />
  32.   Order allow,deny
  33.   Allow localhost
  34.   Allow From X.X.X.X/X.X.X.X
  35.   Allow From X.X.X.X/X.X.X.X
  36.   Allow @LOCAL
  37. </Location>
  38. # Restrict access to the admin pages...
  39. <Location /admin>
  40.   Order allow,deny
  41.   Allow localhost
  42.   Allow From X.X.X.X/X.X.X.X
  43.   Allow From X.X.X.X/X.X.X.X
  44. </Location>
  45. # Restrict access to configuration files...
  46. <Location /admin/conf>
  47.   AuthType Default
  48.   Require user @SYSTEM
  49.   Order allow,deny
  50.   Allow localhost
  51. </Location>
  52. # Set the default printer/job policies...
  53. <Policy default>
  54.   # Job-related operations must be done by the owner or an administrator...
  55.   <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job CUPS-Move-Job>
  56.     Require user @OWNER @SYSTEM
  57.     Order deny,allow
  58.   </Limit>
  59.   # All administration operations require an administrator to authenticate...
  60.   <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
  61.     AuthType Default
  62.     Require user @SYSTEM
  63.     Order deny,allow
  64.   </Limit>
  65.   # All printer operations require a printer operator to authenticate...
  66.   <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Accept-Jobs CUPS-Reject-Jobs>
  67.     AuthType Default
  68.     Require user @SYSTEM
  69.     Order deny,allow
  70.   </Limit>
  71.   # Only the owner or an administrator can cancel or authenticate a job...
  72.   <Limit Cancel-Job CUPS-Authenticate-Job>
  73.     Require user @OWNER @SYSTEM
  74.     Order deny,allow
  75.   </Limit>
  76.   <Limit All>
  77.     Order deny,allow
  78.   </Limit>
  79. </Policy>


 
SAMBA

Code :
  1. [global]
  2. workgroup = X
  3. netbios name = X
  4. server string =
  5. domain master = No
  6. local master = No
  7. prefered master = No
  8. domain logons = Yes
  9. os level = 40
  10. #passwd program = /usr/sbin/smbldap-passwd ?u %u
  11. ldap passwd sync = Yes
  12. passdb backend = ldapsam:ldap://127.0.0.1/
  13. ldap admin dn = cn=admin,dc=X,dc=X
  14. ldap suffix = dc=X,dc=X
  15. ldap group suffix = ou=Groups
  16. ldap user suffix = ou=Users
  17. ldap machine suffix = ou=Machines
  18. add user script = /usr/sbin/smbldap-useradd -m "%u"
  19. ldap delete dn = Yes
  20. delete user script = /usr/sbin/smbldap-userdel "%u"
  21. add machine script = /usr/sbin/smbldap-useradd -w "%u"
  22. add group script = /usr/sbin/smbldap-groupadd -p "%g"
  23. #delete group script = /usr/sbin/smbldap-groupdel "%g"
  24. add user to group script = /usr/sbin/smbldap-groupmod -m "%u" "%g"
  25. delete user from group script = /usr/sbin/smbldap-groupmod -x "%u" "%g"
  26. set primary group script = /usr/sbin/smbldap-usermod -g "%g" "%u"
  27. logon path =
  28. logon drive =
  29. logon home =
  30. # logon home = \\%L\%U
  31. socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
  32. case sensitive = No
  33. default case = lower
  34. preserve case = yes
  35. short preserve case = Yes
  36. #character set = iso8859-1
  37. #domain admin group = @admin
  38. dns proxy = No
  39. # wins support = Yes
  40. wins server = X.X.X.X
  41. wins proxy = Yes
  42. hosts allow = X.X. X. 127.
  43. smb ports = 139
  44. winbind use default domain = Yes
  45. nt acl support = Yes
  46. msdfs root = Yes
  47. hide files = /desktop.ini/ntuser.ini/NTUSER.*/
  48. # CUPS printing.  See also the cupsaddsmb(8) manpage in the
  49. # cupsys-client package.
  50. printing = cups
  51. printcap name = cups
  52. [netlogon]
  53. path = /home/netlogon
  54. writeable = No
  55. browseable = No
  56. write list = @Admins,Administrateur
  57. [Temp]
  58. comment = Temp
  59. path = /tmp
  60. writeable = yes
  61. public = yes
  62. [printers]
  63. comment = All Printers
  64. browseable = yes
  65. path = /tmp
  66. guest ok = yes
  67. printable = yes


 
Error_log de CUPS

Code :
  1. D [14/Apr/2008:12:10:52 +0200] cupsdAcceptClient: 8 from X.X.X.X:631 (IPv4)
  2. D [14/Apr/2008:12:10:52 +0200] Report: clients=1
  3. D [14/Apr/2008:12:10:52 +0200] Report: jobs=0
  4. D [14/Apr/2008:12:10:52 +0200] Report: jobs-active=0
  5. D [14/Apr/2008:12:10:52 +0200] Report: printers=0
  6. D [14/Apr/2008:12:10:52 +0200] Report: printers-implicit=0
  7. D [14/Apr/2008:12:10:52 +0200] Report: stringpool-string-count=169
  8. D [14/Apr/2008:12:10:52 +0200] Report: stringpool-alloc-bytes=4944
  9. D [14/Apr/2008:12:10:52 +0200] Report: stringpool-total-bytes=3704
  10. D [14/Apr/2008:12:10:52 +0200] cupsdReadClient: 8 GET /admin/ HTTP/1.1
  11. D [14/Apr/2008:12:10:52 +0200] cupsdAuthorize: No authentication data provided.
  12. D [14/Apr/2008:12:10:52 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3288
  13. I [14/Apr/2008:12:10:52 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3288)
  14. D [14/Apr/2008:12:10:52 +0200] cupsdSendCommand: 8 file=9
  15. D [14/Apr/2008:12:10:52 +0200] [CGI] admin.cgi started...
  16. D [14/Apr/2008:12:10:52 +0200] cupsdAcceptClient: 11 from localhost (Domain)
  17. D [14/Apr/2008:12:10:52 +0200] [CGI] http=0x807a4f8
  18. D [14/Apr/2008:12:10:52 +0200] [CGI] No form data, showing main menu...
  19. D [14/Apr/2008:12:10:52 +0200] [CGI] /usr/share/cups/drivers/pscript5.dll: No such file or directory
  20. D [14/Apr/2008:12:10:52 +0200] cupsdReadClient: 11 POST / HTTP/1.1
  21. D [14/Apr/2008:12:10:52 +0200] cupsdAuthorize: No authentication data provided.
  22. D [14/Apr/2008:12:10:52 +0200] Get-Subscriptions ipp://localhost/
  23. D [14/Apr/2008:12:10:52 +0200] Get-Subscriptions client-error-not-found: Aucune souscription trouvée.
  24. D [14/Apr/2008:12:10:52 +0200] cupsdProcessIPPRequest: 11 status_code=406 (client-error-not-found)
  25. D [14/Apr/2008:12:10:52 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  26. D [14/Apr/2008:12:10:52 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  27. D [14/Apr/2008:12:10:52 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  28. D [14/Apr/2008:12:10:52 +0200] cupsdCloseClient: 11
  29. D [14/Apr/2008:12:10:52 +0200] PID 3288 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
  30. D [14/Apr/2008:12:10:54 +0200] cupsdReadClient: 8 GET /admin?op=add-printer HTTP/1.1
  31. D [14/Apr/2008:12:10:54 +0200] cupsdAuthorize: No authentication data provided.
  32. D [14/Apr/2008:12:10:54 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3289
  33. I [14/Apr/2008:12:10:54 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3289)
  34. D [14/Apr/2008:12:10:54 +0200] cupsdSendCommand: 8 file=9
  35. D [14/Apr/2008:12:10:54 +0200] [CGI] admin.cgi started...
  36. D [14/Apr/2008:12:10:54 +0200] cupsdAcceptClient: 11 from localhost (Domain)
  37. D [14/Apr/2008:12:10:54 +0200] [CGI] http=0x807a4f8
  38. D [14/Apr/2008:12:10:54 +0200] [CGI] op="add-printer"...
  39. D [14/Apr/2008:12:10:54 +0200] [CGI] do_am_printer: DEVICE_URI="(null)"
  40. D [14/Apr/2008:12:10:54 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  41. D [14/Apr/2008:12:10:54 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  42. D [14/Apr/2008:12:10:54 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  43. D [14/Apr/2008:12:10:54 +0200] cupsdCloseClient: 11
  44. D [14/Apr/2008:12:10:54 +0200] PID 3289 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
  45. D [14/Apr/2008:12:10:59 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
  46. D [14/Apr/2008:12:10:59 +0200] cupsdAuthorize: No authentication data provided.
  47. D [14/Apr/2008:12:10:59 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3290
  48. I [14/Apr/2008:12:10:59 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3290)
  49. D [14/Apr/2008:12:10:59 +0200] cupsdSendCommand: 8 file=11
  50. D [14/Apr/2008:12:10:59 +0200] [CGI] admin.cgi started...
  51. D [14/Apr/2008:12:10:59 +0200] cupsdAcceptClient: 9 from localhost (Domain)
  52. D [14/Apr/2008:12:10:59 +0200] [CGI] http=0x807a4f8
  53. D [14/Apr/2008:12:10:59 +0200] [CGI] op="add-printer"...
  54. D [14/Apr/2008:12:10:59 +0200] [CGI] do_am_printer: DEVICE_URI="(null)"
  55. D [14/Apr/2008:12:10:59 +0200] [CGI] Getting list of devices...
  56. D [14/Apr/2008:12:10:59 +0200] cupsdReadClient: 9 POST / HTTP/1.1
  57. D [14/Apr/2008:12:10:59 +0200] cupsdAuthorize: No authentication data provided.
  58. D [14/Apr/2008:12:10:59 +0200] CUPS-Get-Devices ipp://localhost/printers/
  59. D [14/Apr/2008:12:10:59 +0200] [CGI] /usr/lib/cups/daemon/cups-deviced started - PID = 3291
  60. I [14/Apr/2008:12:10:59 +0200] Started "/usr/lib/cups/daemon/cups-deviced" (pid=3291)
  61. D [14/Apr/2008:12:10:59 +0200] cupsdSendCommand: 9 file=12
  62. D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Setting locale failed.
  63. D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Please check that your locale settings:
  64. D [14/Apr/2008:12:10:59 +0200] [CGI] LANGUAGE = (unset),
  65. D [14/Apr/2008:12:10:59 +0200] [CGI] LC_ALL = (unset),
  66. D [14/Apr/2008:12:10:59 +0200] [CGI] LANG = "fr.UTF8"
  67. D [14/Apr/2008:12:10:59 +0200] [CGI] are supported and installed on your system.
  68. D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Falling back to the standard locale ("C" ).
  69. D [14/Apr/2008:12:10:59 +0200] [cups-deviced] Added device "beh"...
  70. D [14/Apr/2008:12:10:59 +0200] [cups-deviced] Added device "ipp"...
  71. D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Setting locale failed.
  72. D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Please check that your locale settings:
  73. D [14/Apr/2008:12:10:59 +0200] [CGI] LANGUAGE = (unset),
  74. D [14/Apr/2008:12:10:59 +0200] [CGI] LC_ALL = (unset),
  75. D [14/Apr/2008:12:10:59 +0200] [CGI] LANG = "fr.UTF8"
  76. D [14/Apr/2008:12:10:59 +0200] [CGI] are supported and installed on your system.
  77. D [14/Apr/2008:12:10:59 +0200] [CGI] perl: warning: Falling back to the standard locale ("C" ).
  78. D [14/Apr/2008:12:11:01 +0200] cupsdAcceptClient: 13 from localhost (Domain)
  79. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  80. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  81. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
  82. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
  83. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  84. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  85. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  86. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes
  87. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes client-error-not-found: Aucune destination ajoutée.
  88. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  89. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  90. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  91. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default
  92. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default client-error-not-found: Pas d’imprimante par défaut
  93. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  94. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  95. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  96. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
  97. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
  98. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  99. D [14/Apr/2008:12:11:01 +0200] [CGI] lpstat: Aucune destination ajoutée.
  100. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  101. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  102. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
  103. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
  104. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  105. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  106. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  107. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes
  108. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Classes client-error-not-found: Aucune destination ajoutée.
  109. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  110. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  111. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  112. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default
  113. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Default client-error-not-found: Pas d’imprimante par défaut
  114. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  115. D [14/Apr/2008:12:11:01 +0200] cupsdReadClient: 13 POST / HTTP/1.1
  116. D [14/Apr/2008:12:11:01 +0200] cupsdAuthorize: No authentication data provided.
  117. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers
  118. D [14/Apr/2008:12:11:01 +0200] CUPS-Get-Printers client-error-not-found: Aucune destination ajoutée.
  119. D [14/Apr/2008:12:11:01 +0200] cupsdProcessIPPRequest: 13 status_code=406 (client-error-not-found)
  120. D [14/Apr/2008:12:11:01 +0200] [CGI] lpstat: Aucune destination ajoutée.
  121. D [14/Apr/2008:12:11:01 +0200] cupsdCloseClient: 13
  122. D [14/Apr/2008:12:11:01 +0200] [cups-deviced] Added device "socket://X.X.X.X"...
  123. D [14/Apr/2008:12:11:01 +0200] [cups-deviced] Added device "socket"...
  124. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "socket://X.X.X.X"...
  125. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "socket://X.X.X.X"...
  126. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "smb"...
  127. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "lpd"...
  128. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "http"...
  129. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "parallel:/dev/lp0"...
  130. D [14/Apr/2008:12:11:02 +0200] [cups-deviced] Added device "scsi"...
  131. D [14/Apr/2008:12:11:02 +0200] PID 3291 (/usr/lib/cups/daemon/cups-deviced) exited with no errors.
  132. D [14/Apr/2008:12:11:02 +0200] [CGI] Got device list!
  133. D [14/Apr/2008:12:11:02 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  134. D [14/Apr/2008:12:11:02 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  135. D [14/Apr/2008:12:11:02 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  136. D [14/Apr/2008:12:11:02 +0200] cupsdCloseClient: 9
  137. D [14/Apr/2008:12:11:02 +0200] PID 3290 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
  138. D [14/Apr/2008:12:11:03 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
  139. D [14/Apr/2008:12:11:03 +0200] cupsdAuthorize: No authentication data provided.
  140. D [14/Apr/2008:12:11:03 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3308
  141. I [14/Apr/2008:12:11:03 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3308)
  142. D [14/Apr/2008:12:11:03 +0200] cupsdSendCommand: 8 file=11
  143. D [14/Apr/2008:12:11:03 +0200] [CGI] admin.cgi started...
  144. D [14/Apr/2008:12:11:03 +0200] cupsdAcceptClient: 9 from localhost (Domain)
  145. D [14/Apr/2008:12:11:03 +0200] [CGI] http=0x807a4f8
  146. D [14/Apr/2008:12:11:03 +0200] [CGI] op="add-printer"...
  147. D [14/Apr/2008:12:11:03 +0200] [CGI] do_am_printer: DEVICE_URI="socket"
  148. D [14/Apr/2008:12:11:03 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  149. D [14/Apr/2008:12:11:03 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  150. D [14/Apr/2008:12:11:03 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  151. D [14/Apr/2008:12:11:03 +0200] cupsdCloseClient: 9
  152. D [14/Apr/2008:12:11:03 +0200] PID 3308 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
  153. D [14/Apr/2008:12:11:08 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
  154. D [14/Apr/2008:12:11:08 +0200] cupsdAuthorize: No authentication data provided.
  155. D [14/Apr/2008:12:11:08 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3309
  156. I [14/Apr/2008:12:11:08 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3309)
  157. D [14/Apr/2008:12:11:08 +0200] cupsdSendCommand: 8 file=11
  158. D [14/Apr/2008:12:11:08 +0200] [CGI] admin.cgi started...
  159. D [14/Apr/2008:12:11:08 +0200] cupsdAcceptClient: 9 from localhost (Domain)
  160. D [14/Apr/2008:12:11:08 +0200] [CGI] http=0x807a4f8
  161. D [14/Apr/2008:12:11:08 +0200] [CGI] op="add-printer"...
  162. D [14/Apr/2008:12:11:08 +0200] [CGI] do_am_printer: DEVICE_URI="socket://X.X.X.X|infotec  IS2045"
  163. D [14/Apr/2008:12:11:08 +0200] cupsdReadClient: 9 POST / HTTP/1.1
  164. D [14/Apr/2008:12:11:08 +0200] cupsdAuthorize: No authentication data provided.
  165. D [14/Apr/2008:12:11:08 +0200] CUPS-Get-PPDs ipp://localhost/printers/
  166. D [14/Apr/2008:12:11:08 +0200] [CGI] /usr/lib/cups/daemon/cups-driverd started - PID = 3310
  167. I [14/Apr/2008:12:11:08 +0200] Started "/usr/lib/cups/daemon/cups-driverd" (pid=3310)
  168. D [14/Apr/2008:12:11:08 +0200] cupsdSendCommand: 9 file=12
  169. E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/usr/share/cups/model": No such file or directory
  170. E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/opt/share/ppd": No such file or directory
  171. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] requested-attributes="all"
  172. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] ppd-make="infotec"
  173. D [14/Apr/2008:12:11:08 +0200] PID 3310 (/usr/lib/cups/daemon/cups-driverd) exited with no errors.
  174. D [14/Apr/2008:12:11:08 +0200] cupsdReadClient: 9 POST / HTTP/1.1
  175. D [14/Apr/2008:12:11:08 +0200] cupsdAuthorize: No authentication data provided.
  176. D [14/Apr/2008:12:11:08 +0200] CUPS-Get-PPDs ipp://localhost/printers/
  177. D [14/Apr/2008:12:11:08 +0200] [CGI] /usr/lib/cups/daemon/cups-driverd started - PID = 3311
  178. I [14/Apr/2008:12:11:08 +0200] Started "/usr/lib/cups/daemon/cups-driverd" (pid=3311)
  179. D [14/Apr/2008:12:11:08 +0200] cupsdSendCommand: 9 file=12
  180. E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/usr/share/cups/model": No such file or directory
  181. E [14/Apr/2008:12:11:08 +0200] [cups-driverd] Unable to open PPD directory "/opt/share/ppd": No such file or directory
  182. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] requested-attributes="ppd-make"
  183. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Dymo/dymo.ppd (Dymo Label Printer, 1.3)...
  184. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Epson/epson9.ppd (Epson 9-Pin Series, 1.3)...
  185. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/postscript.ppd (Generic PostScript Printer)...
  186. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/gs-esp/model/pxlcolor.ppd (HP Color LaserJet Series PCL 6 CUPS)...
  187. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Intellitech/intelbar.ppd (Intellitech IntelliBar Label Printer, 1.3)...
  188. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Oki/okidata9.ppd (Oki 9-Pin Series, 1.3)...
  189. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending raw (Raw Queue)...
  190. D [14/Apr/2008:12:11:08 +0200] [cups-driverd] Sending lsb/usr/cups-included/Zebra/zebracpl.ppd (Zebra CPCL Label Printer, 1.3)...
  191. D [14/Apr/2008:12:11:08 +0200] PID 3311 (/usr/lib/cups/daemon/cups-driverd) exited with no errors.
  192. D [14/Apr/2008:12:11:08 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  193. D [14/Apr/2008:12:11:08 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  194. D [14/Apr/2008:12:11:08 +0200] [CGI] lang="fr.UTF8", locale="/fr"...
  195. D [14/Apr/2008:12:11:08 +0200] cupsdCloseClient: 9
  196. D [14/Apr/2008:12:11:08 +0200] PID 3309 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
  197. D [14/Apr/2008:12:11:12 +0200] cupsdReadClient: 8 POST /admin HTTP/1.1
  198. D [14/Apr/2008:12:11:12 +0200] cupsdAuthorize: No authentication data provided.
  199. D [14/Apr/2008:12:11:12 +0200] [CGI] /usr/lib/cups/cgi-bin/admin.cgi started - PID = 3312
  200. I [14/Apr/2008:12:11:12 +0200] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=3312)
  201. D [14/Apr/2008:12:11:12 +0200] cupsdSendCommand: 8 file=11
  202. D [14/Apr/2008:12:11:12 +0200] [CGI] admin.cgi started...
  203. D [14/Apr/2008:12:11:12 +0200] cupsdAcceptClient: 9 from localhost (Domain)
  204. D [14/Apr/2008:12:11:12 +0200] [CGI] http=0x807a4f8
  205. D [14/Apr/2008:12:11:12 +0200] [CGI] op="add-printer"...
  206. D [14/Apr/2008:12:11:12 +0200] [CGI] do_am_printer: DEVICE_URI="socket://X.X.X.X"
  207. D [14/Apr/2008:12:11:12 +0200] [CGI] file->tempfile=/var/spool/cups/tmp/48032dc0ea09d
  208. D [14/Apr/2008:12:11:12 +0200] [CGI] file->name=PPD_FILE
  209. D [14/Apr/2008:12:11:12 +0200] [CGI] file->filename=Infotec-IS2045_PXL.ppd
  210. D [14/Apr/2008:12:11:12 +0200] [CGI] file->mimetype=application/octet-stream
  211. D [14/Apr/2008:12:11:12 +0200] cupsdReadClient: 9 POST /admin/ HTTP/1.1
  212. D [14/Apr/2008:12:11:12 +0200] cupsdAuthorize: No authentication data provided.
  213. D [14/Apr/2008:12:11:12 +0200] CUPS-Add-Modify-Printer ipp://localhost/printers/Copieur
  214. D [14/Apr/2008:12:11:12 +0200] cupsdIsAuthorized: username=""
  215. E [14/Apr/2008:12:11:12 +0200] CUPS-Add-Modify-Printer: Unauthorized
  216. D [14/Apr/2008:12:11:12 +0200] cupsdSendError: 9 code=401 (Unauthorized)
  217. D [14/Apr/2008:12:11:12 +0200] cupsdSendHeader: WWW-Authenticate: Basic realm="CUPS"
  218. D [14/Apr/2008:12:11:12 +0200] [CGI] cgi_passwd(prompt="Mot de passe pour lp sur localhost? " ) called!
  219. D [14/Apr/2008:12:11:12 +0200] cupsdSendError: 8 code=426 (Upgrade Required)
  220. D [14/Apr/2008:12:11:12 +0200] cupsdCloseClient: 8
  221. D [14/Apr/2008:12:11:12 +0200] cupsdCloseClient: 9
  222. D [14/Apr/2008:12:11:12 +0200] PID 3312 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.


Message édité par jaymzwise le 14-04-2008 à 12:14:35
Reply

Marsh Posté le 14-04-2008 à 12:14:03   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed