You are not logged in.
I've been trying to get this Canon LBP6000 to work with CUPS for the past 6 hours or so, I'm really in the Linux slam tonight, I got the latest Arch kernel (3.15.3-1) and an older 32 bit mobo... My question is, has anyone gotten through this before, and if so, how?
Offline
What exactly have you done so far? Did you follow a wiki? Which one?
Offline
Thanks for the response; my desktop has 32-bit processor and motherboard, and for it I have,
First: followed a lot of the Arch Wiki CUPS, https://wiki.archlinux.org/index.php/CUPS
Second: followed these command lines at cups website, http://localhost:631/help/options.html , or http://www.cups.org/documentation.php/d … tions.html
Third: tried to install driver off Canon website, here, http://www.usa.canon.com/cusa/consumer/ … ndSoftware, but couldn't because it was only a deb and rpm file.
(later they told me in an email that they actually have no official support for Linux)
Forth: looked at this, http://radu.cotescu.com/how-to-install- … in-ubuntu/, But found it was for 64-bit Linux.
Fifth: installed the PKGBUILD 'capt-src' from AUR and then followed the instructions that my terminal listed out after it was finished, here's a copy:
>>> Installation:
>>>
>>> 1) Before doing anything, be sure to add your user to the lp group:
>>> eg.
>>> gpasswd -a your_user lp
>>> and then reboot, or relogin
>>>
>>> 2) Connect the printer to your computer, turn it on and start CUPS, or restart it if it was already running
>>> eg.
>>> systemctl restart cups.service
>>>
>>> 3) /usr/bin/lpadmin -p <name> -m <corresponding ppd> -v ccp://localhost:59687 -E
>>> eg.
>>> /usr/bin/lpadmin -p LBP2900 -m CNCUPSLBP2900CAPTK.ppd -v ccp://localhost:59687 -E
>>> (you can find ppds in the /usr/share/cups/model/ directory)
>>>
>>> 4)
>>> a) For a locally connected printer (USB / Parallel port), check the name of
>>> the device, udev created for you.
>>> eg. /dev/usb/lp0
>>> and run: /usr/bin/ccpdadmin -p <name> -o udev_device
>>> eg.
>>> /usr/bin/ccpdadmin -p LBP2900 -o /dev/usb/lp0
>>> (it should show a table with the new printer)
>>>
>>> b) For a network printer:
>>> /usr/bin/ccpdadmin -p <Printer name> -o net:<IP address>
>>> eg. /usr/bin/ccpdadmin -p LBP2900 -o net:192.168.0.10
>>>
>>> 5) systemctl start ccpd.service (using systemd)
>>>
>>> 5) Check you have two instances of ccpd in memory, then run captstatusui, check it's
>>> telling you it's ready to print and the printer should work.
>>> eg. ps awx | grep ccpd
>>> or using systemd: systemctl status ccpd.service
>>> For captstatusui: /usr/bin/captstatusui -P LBP2900
>>>
>>> 6) Make sure cupsd and ccpd are running at boot
>>> eg.
>>> systemctl enable ccpd.service(but I had a tough time filling in all the different variables, specifically #'s: 3, 4, and the second number 5.)
Sixth: Tried installing CUPS on my 64-bit laptop, along with that deb file off of Canon's website, laptop's got Mint on it, but still didn't work.
Seven: Banged head on table... haha
Any ideas?
Offline
To deal with deb and rpms in the future see here.
So I installed capt-src. Start over through points #1 and #2. For point #3 I would use either the CNCUPSLBP6018CAPTK.ppd or the CNCUPSLBP6020CAPTK.ppd. Your exact model is LBP6000? Try one of those, they probably will work.
/usr/bin/lpadmin -p LBP6000 -m CNCUPSLBP6018CAPTK.ppd -v ccp://localhost:59687 -E
/usr/bin/lpadmin -p LBP6000 -m CNCUPSLBP6020CAPTK.ppd -v ccp://localhost:59687 -EMy Hp printer gets udev to create /dev/usb/lp0, so if you get the above done, it should be visible (you might want to restart for that). Next step #4:
/usr/bin/ccpdadmin -p LBP6000 -o /dev/usb/lp0
# and/or
/usr/bin/ccpdadmin -p LBP6000 -o net:192.168.0.10Then start and enable cups and ccpd services:
#5
sudo systemctl start ccpd.service
# check its status
systemctl status ccpd.service -l
# if it is running correctly you can run captstatusui
/usr/bin/captstatusui -P LBP6000
#6
# to enable both services at boot run
sudo systemctl enable c{ups,cpd}.serviceLast edited by emeres (2014-07-15 11:03:22)
Offline
Ok, I entered the variables
[root@DTR-Arch-Linux wordstrings]# /usr/bin/ccpdadmin -p LBP6000 -o /dev/usb/lp0
CUPS_ConfigPath = /etc/cups/
LOG Path = None
UI Port = 59787
Entry Num : Spooler : Backend : FIFO path : Device Path : Status
----------------------------------------------------------------------------
[0] : LBP2900 : ccp : //localhost:59687 : net:68.2.44.201 :
[1] : LBP6000 : ccp : //localhost:59687 : /dev/usb/lp0 : New!![root@DTR-Arch-Linux wordstrings]# systemctl status ccpd.service -l
● ccpd.service - Canon CAPT daemon
Loaded: loaded (/usr/lib/systemd/system/ccpd.service; enabled)
Active: active (running) since Tue 2014-07-15 04:13:59 MST; 5min ago
Process: 344 ExecStart=/usr/bin/ccpd (code=exited, status=0/SUCCESS)
Main PID: 351 (ccpd)
CGroup: /system.slice/ccpd.service
├─351 /usr/bin/ccpd
├─464 /usr/bin/ccpd
└─465 captmoncnabc --data-write-fd=3 --data-read-fd=10 --cmd-write-fd=11 --cmd-read-fd=14 --output-fd=-1 --input-fd=-1 --printer-uri=net:68.2.44.201[root@DTR-Arch-Linux wordstrings]# /usr/bin/captstatusui -P LBP6000
(captstatusui:542): GLib-CRITICAL **: Source ID 11 was not found when attempting to remove itNow, I see that LBP6000 is showing up in my print manager...
I open LibreOffice documents and hit Ctrl+P; I highlight text in my browser, right click and click print; I enter:
lpr -P <printer> <filename>and all of the prints get sent over, start processing, start pending, but won't print.
Offline
You probably want to remove LBP2900 from the configuration. Where do you enter the lpr command? And you do change <printer> to LBP6000? Do both LBP printers show up in print preview setup?
Offline
[root@DTR-Arch-Linux wordstrings]# cupsreject LBP2900
cupsreject: Operation failed: client-error-not-found
[root@DTR-Arch-Linux wordstrings]# cupsdisable LBP2900
cupsdisable: Operation failed: client-error-not-found
[root@DTR-Arch-Linux wordstrings]# lpadmin -x LBP2900
lpadmin: The printer or class does not exist.Cant remove it
[root@DTR-Arch-Linux wordstrings]# /usr/bin/ccpdadmin -p LBP6000 -o /dev/usb/lp0
CUPS_ConfigPath = /etc/cups/
LOG Path = None
UI Port = 59787
Entry Num : Spooler : Backend : FIFO path : Device Path : Status
----------------------------------------------------------------------------
[0] : LBP2900 : : : net:68.2.44.201 : invalid Spool Name
[1] : LBP6000 : usb : //Canon/LBP6000/LBP6018?serial=0000B3E4DEJj : /dev/usb/lp0 : Modified'A test print file' is located in my home user directory
[wordstrings@DTR-Arch-Linux ~]$ lpr -P LBP6000 /home/wordstrings/atestprintfileIt gets sent over and won't print.
Also, the LBP6000 is the only one that shows up in the preview.
Offline
I do not think you can use cups commands to deal with canons software, but I might be wrong on this. If ccpdadmin -x LBP2900 does not help, then edit the configuration in /etc/ccpd.conf. Probably need to restart the service or both with cups.
Afterwards try cngplp to print the file:
cngplp -p /home/wordstrings/atestprintfileIt gets sent over and won't print.
Tells me nothing. Look what cups' log (or ccpds if you set it to use one) outputs and what the status of the printer on localhost:631 is.
Last edited by emeres (2014-07-15 13:36:09)
Offline
ccpdadmin -x LBP2900Removed it. Thanks.
cngplp -p /home/wordstrings/atestprintfileSent it to print manager. No actual print tho.
I'm not really seeing anything in /var/log/cups/ except for some files, (access_log, error_log, and page_log)...
localhost:631 just says there are prints pending...
Offline
At the very begging of all this, I installed 'gutenprint' because the Arch Wiki CUPS had recommended it as a possible driver for a Canon, but I just now removed it as I thought it may be in conflict with the PKGBUILD 'capt-src' which I found in the AUR. Sadly, it didn't change anything --still can't print.
Last edited by customscrollbar (2014-07-15 17:01:56)
Offline
Please provide any logs that you can. Search how to enable log for ccpd. This might prove helpful although it is for another distribution. If the printer is visible on cups page, try to modify it. See what options it has.
Offline
Access_log:
localhost - - [12/Jul/2014:19:57:02 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [12/Jul/2014:19:57:02 -0700] "POST / HTTP/1.1" 200 1529 CUPS-Get-Devices -
localhost - - [12/Jul/2014:19:57:17 -0700] "POST / HTTP/1.1" 200 1400577 CUPS-Get-PPDs -
localhost - - [12/Jul/2014:19:57:30 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [12/Jul/2014:19:57:30 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - - [12/Jul/2014:19:57:55 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [12/Jul/2014:19:57:55 -0700] "POST / HTTP/1.1" 200 1529 CUPS-Get-Devices -
localhost - - [12/Jul/2014:20:01:31 -0700] "POST /printers/printer HTTP/1.1" 200 320 Create-Job successful-ok
localhost - - [12/Jul/2014:20:01:31 -0700] "POST /printers/printer HTTP/1.1" 200 11262 Send-Document successful-ok
localhost - - [12/Jul/2014:21:00:16 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [12/Jul/2014:21:00:16 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [12/Jul/2014:21:01:19 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [12/Jul/2014:21:01:19 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [12/Jul/2014:21:01:27 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [12/Jul/2014:21:01:27 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [12/Jul/2014:21:01:28 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [12/Jul/2014:21:01:28 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [12/Jul/2014:23:34:49 -0700] "POST /admin/ HTTP/1.1" 401 152 Resume-Printer successful-ok
localhost - root [12/Jul/2014:23:34:49 -0700] "POST /admin/ HTTP/1.1" 200 152 Resume-Printer successful-ok
localhost - - [12/Jul/2014:23:36:38 -0700] "POST /printers/printer HTTP/1.1" 200 230 Create-Job successful-ok
localhost - - [12/Jul/2014:23:36:38 -0700] "POST /printers/printer HTTP/1.1" 200 25360 Send-Document successful-ok
localhost - - [12/Jul/2014:23:47:48 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [12/Jul/2014:23:47:48 -0700] "POST / HTTP/1.1" 200 1529 CUPS-Get-Devices -
localhost - - [12/Jul/2014:23:48:53 -0700] "POST /admin/ HTTP/1.1" 401 212 CUPS-Add-Modify-Printer successful-ok
localhost - root [12/Jul/2014:23:48:53 -0700] "POST /admin/ HTTP/1.1" 200 212 CUPS-Add-Modify-Printer successful-ok
localhost - root [12/Jul/2014:23:48:53 -0700] "POST /admin/ HTTP/1.1" 200 221 CUPS-Add-Modify-Printer successful-ok
localhost - - [12/Jul/2014:23:48:57 -0700] "POST /printers/printer HTTP/1.1" 200 304 Create-Job successful-ok
localhost - - [12/Jul/2014:23:48:57 -0700] "POST /printers/printer HTTP/1.1" 200 236 Send-Document successful-ok
localhost - - [12/Jul/2014:23:54:23 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [12/Jul/2014:23:54:23 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [12/Jul/2014:23:55:09 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [12/Jul/2014:23:55:09 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [12/Jul/2014:23:55:13 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [12/Jul/2014:23:55:13 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [12/Jul/2014:23:55:14 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [12/Jul/2014:23:55:14 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [12/Jul/2014:23:59:17 -0700] "POST /printers/printer-1 HTTP/1.1" 200 1024119 Print-Job successful-ok
localhost - - [12/Jul/2014:23:59:39 -0700] "POST /printers/printer HTTP/1.1" 200 1024117 Print-Job successful-ok
localhost - - [13/Jul/2014:00:01:42 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [13/Jul/2014:00:01:42 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [13/Jul/2014:00:01:52 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [13/Jul/2014:00:01:52 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [13/Jul/2014:00:05:09 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [13/Jul/2014:00:05:09 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [13/Jul/2014:00:05:45 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [13/Jul/2014:00:05:45 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [13/Jul/2014:00:09:34 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [13/Jul/2014:00:09:34 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [13/Jul/2014:00:09:59 -0700] "POST /printers/printer-1 HTTP/1.1" 200 329 Create-Job successful-ok
localhost - - [13/Jul/2014:00:09:59 -0700] "POST /printers/printer-1 HTTP/1.1" 200 11183 Send-Document successful-ok
localhost - - [13/Jul/2014:00:14:53 -0700] "POST /printers/printer HTTP/1.1" 200 120832 Print-Job successful-ok
localhost - - [13/Jul/2014:00:14:57 -0700] "POST /printers/printer HTTP/1.1" 200 120832 Print-Job successful-ok
localhost - - [13/Jul/2014:00:16:17 -0700] "POST /printers/printer HTTP/1.1" 200 215 Create-Job successful-ok
localhost - - [13/Jul/2014:00:16:17 -0700] "POST /printers/printer HTTP/1.1" 200 25360 Send-Document successful-ok
localhost - - [13/Jul/2014:00:16:32 -0700] "POST /printers/printer-1 HTTP/1.1" 200 217 Create-Job successful-ok
localhost - - [13/Jul/2014:00:16:32 -0700] "POST /printers/printer-1 HTTP/1.1" 200 25362 Send-Document successful-ok
localhost - - [13/Jul/2014:00:17:06 -0700] "POST /printers/printer HTTP/1.1" 200 230 Create-Job successful-ok
localhost - - [13/Jul/2014:00:17:06 -0700] "POST /printers/printer HTTP/1.1" 200 25360 Send-Document successful-ok
localhost - - [13/Jul/2014:02:23:35 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:02:23:35 -0700] "POST / HTTP/1.1" 200 767 CUPS-Get-Devices -
localhost - - [13/Jul/2014:02:44:11 -0700] "POST /printers/printer HTTP/1.1" 200 126549 Print-Job successful-ok
localhost - - [13/Jul/2014:02:44:12 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:45:16 -0700] "POST /jobs/ HTTP/1.1" 200 176 Set-Job-Attributes successful-ok
localhost - - [13/Jul/2014:02:45:50 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:45:50 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:45:58 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:03 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:06 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:09 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:12 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:14 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:19 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:21 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:23 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:26 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:46:26 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:46:28 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:46:28 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:46:52 -0700] "POST /jobs/ HTTP/1.1" 200 160 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:46:58 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:47:12 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job client-error-not-found
localhost - - [13/Jul/2014:02:47:16 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job client-error-not-found
localhost - - [13/Jul/2014:02:47:22 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [13/Jul/2014:02:47:28 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:28 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:31 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:31 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:32 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:32 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:33 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:33 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:34 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:34 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:34 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:34 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:35 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:35 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:37 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:47:37 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:47:45 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [13/Jul/2014:02:47:45 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [13/Jul/2014:02:47:52 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:02:47:52 -0700] "POST / HTTP/1.1" 200 767 CUPS-Get-Devices -
localhost - - [13/Jul/2014:02:47:52 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [13/Jul/2014:02:47:52 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [13/Jul/2014:02:48:46 -0700] "POST /printers/printer HTTP/1.1" 200 459079 Print-Job successful-ok
localhost - - [13/Jul/2014:02:49:16 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:49:27 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - wordstrings [13/Jul/2014:02:49:27 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - - [13/Jul/2014:02:49:27 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - - [13/Jul/2014:02:49:30 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - - [13/Jul/2014:02:50:02 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:02:50:02 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:02:50:15 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - wordstrings [13/Jul/2014:02:50:15 -0700] "POST / HTTP/1.1" 403 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:02:50:15 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:02:50:15 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:02:50:17 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:02:50:34 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:02:50:34 -0700] "POST / HTTP/1.1" 200 1529 CUPS-Get-Devices -
localhost - - [13/Jul/2014:02:50:37 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - wordstrings [13/Jul/2014:02:50:37 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - root [13/Jul/2014:02:50:43 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 4493 - -
localhost - root [13/Jul/2014:02:50:43 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 4493 - -
localhost - root [13/Jul/2014:02:50:43 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 4493 - -
localhost - root [13/Jul/2014:02:50:43 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3238 - -
localhost - - [13/Jul/2014:02:50:48 -0700] "GET /admin/log/error_log HTTP/1.1" 200 4550 - -
localhost - - [13/Jul/2014:02:50:48 -0700] "POST / HTTP/1.1" 200 277 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:51:01 -0700] "POST /printers/printer HTTP/1.1" 200 408 Print-Job successful-ok
localhost - - [13/Jul/2014:02:51:13 -0700] "POST /printers/printer HTTP/1.1" 200 408 Print-Job successful-ok
localhost - - [13/Jul/2014:02:51:17 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:51:17 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [13/Jul/2014:02:51:17 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3238 - -
localhost - root [13/Jul/2014:02:51:17 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3238 - -
localhost - root [13/Jul/2014:02:51:17 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3238 - -
localhost - root [13/Jul/2014:02:51:17 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3235 - -
localhost - - [13/Jul/2014:02:51:18 -0700] "GET /admin/log/error_log HTTP/1.1" 200 70790 - -
localhost - - [13/Jul/2014:02:52:54 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [13/Jul/2014:02:52:54 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3235 - -
localhost - root [13/Jul/2014:02:52:54 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3235 - -
localhost - root [13/Jul/2014:02:52:54 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3235 - -
localhost - root [13/Jul/2014:02:52:54 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3194 - -
localhost - - [13/Jul/2014:02:52:55 -0700] "GET /admin/log/error_log HTTP/1.1" 200 71320 - -
localhost - - [13/Jul/2014:02:52:55 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - wordstrings [13/Jul/2014:02:52:55 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - - [13/Jul/2014:02:53:11 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:53:11 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:53:22 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [13/Jul/2014:02:53:22 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:02:53:22 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:02:53:33 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:02:53:34 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - root [13/Jul/2014:02:53:34 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3194 - -
localhost - - [13/Jul/2014:02:55:06 -0700] "POST /admin/ HTTP/1.1" 401 125 CUPS-Delete-Printer successful-ok
localhost - root [13/Jul/2014:02:55:06 -0700] "POST /admin/ HTTP/1.1" 200 125 CUPS-Delete-Printer successful-ok
localhost - - [13/Jul/2014:02:55:15 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:55:15 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:02:55:17 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:02:55:29 -0700] "POST /printers/printer HTTP/1.1" 200 459079 Print-Job successful-ok
localhost - - [13/Jul/2014:04:22:43 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:04:22:43 -0700] "POST / HTTP/1.1" 200 767 CUPS-Get-Devices -
localhost - - [13/Jul/2014:04:22:45 -0700] "POST / HTTP/1.1" 200 1400577 CUPS-Get-PPDs -
localhost - - [13/Jul/2014:04:22:59 -0700] "POST / HTTP/1.1" 200 1400577 CUPS-Get-PPDs -
localhost - - [13/Jul/2014:04:24:41 -0700] "POST / HTTP/1.1" 200 24345 CUPS-Get-PPD -
localhost - - [13/Jul/2014:04:25:21 -0700] "POST /admin/ HTTP/1.1" 401 24416 CUPS-Add-Modify-Printer successful-ok
localhost - wordstrings [13/Jul/2014:04:25:21 -0700] "POST /admin/ HTTP/1.1" 403 24416 CUPS-Add-Modify-Printer successful-ok
localhost - - [13/Jul/2014:04:25:21 -0700] "POST /admin/ HTTP/1.1" 401 24416 CUPS-Add-Modify-Printer successful-ok
localhost - - [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 401 24416 CUPS-Add-Modify-Printer successful-ok
localhost - root [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 200 24416 CUPS-Add-Modify-Printer successful-ok
localhost - root [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 200 125 Resume-Printer successful-ok
localhost - root [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 200 125 CUPS-Accept-Jobs successful-ok
localhost - root [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 200 125 CUPS-Set-Default successful-ok
localhost - root [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 200 147 CUPS-Add-Modify-Printer successful-ok
localhost - root [13/Jul/2014:04:25:33 -0700] "POST /admin/ HTTP/1.1" 200 152 CUPS-Add-Modify-Printer successful-ok
localhost - - [13/Jul/2014:04:25:54 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 458518 Print-Job successful-ok
localhost - - [13/Jul/2014:04:26:30 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:04:26:53 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:04:27:53 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - wordstrings [13/Jul/2014:04:27:53 -0700] "POST / HTTP/1.1" 403 75 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:04:28:11 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:04:28:11 -0700] "POST / HTTP/1.1" 200 1241 CUPS-Get-Devices -
localhost - - [13/Jul/2014:04:28:38 -0700] "POST / HTTP/1.1" 200 1400577 CUPS-Get-PPDs -
localhost - - [13/Jul/2014:04:34:30 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [13/Jul/2014:04:34:30 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [13/Jul/2014:04:34:38 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:04:34:38 -0700] "POST / HTTP/1.1" 200 767 CUPS-Get-Devices -
localhost - - [13/Jul/2014:04:34:38 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [13/Jul/2014:04:34:38 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [13/Jul/2014:04:34:59 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:04:35:23 -0700] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - wordstrings [13/Jul/2014:04:35:23 -0700] "POST / HTTP/1.1" 403 123 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:04:35:24 -0700] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:04:35:57 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - wordstrings [13/Jul/2014:04:35:57 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - - [13/Jul/2014:04:35:57 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - - [13/Jul/2014:04:36:05 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [13/Jul/2014:04:36:05 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:04:36:05 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:04:36:11 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:04:36:12 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 304 0 - -
localhost - root [13/Jul/2014:04:36:12 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3194 - -
localhost - - [13/Jul/2014:04:36:16 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:04:36:43 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [13/Jul/2014:04:36:43 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [13/Jul/2014:04:36:57 -0700] "POST /printers/printer HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [13/Jul/2014:04:36:57 -0700] "POST /printers/printer HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [13/Jul/2014:05:01:24 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [13/Jul/2014:05:01:24 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [13/Jul/2014:05:02:36 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:02:48 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [13/Jul/2014:05:03:05 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:05:03:05 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [13/Jul/2014:05:03:05 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [13/Jul/2014:05:03:05 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:05:43 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:06:08 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:06:35 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:06:44 -0700] "POST /admin/ HTTP/1.1" 401 123 CUPS-Delete-Printer successful-ok
localhost - wordstrings [13/Jul/2014:05:06:44 -0700] "POST /admin/ HTTP/1.1" 403 123 CUPS-Delete-Printer successful-ok
localhost - - [13/Jul/2014:05:06:44 -0700] "POST /admin/ HTTP/1.1" 401 123 CUPS-Delete-Printer successful-ok
localhost - - [13/Jul/2014:05:06:50 -0700] "POST /admin/ HTTP/1.1" 401 123 CUPS-Delete-Printer successful-ok
localhost - root [13/Jul/2014:05:06:50 -0700] "POST /admin/ HTTP/1.1" 200 123 CUPS-Delete-Printer successful-ok
localhost - - [13/Jul/2014:05:10:04 -0700] "POST /admin/ HTTP/1.1" 401 217 CUPS-Add-Modify-Printer successful-ok
localhost - wordstrings [13/Jul/2014:05:10:04 -0700] "POST /admin/ HTTP/1.1" 403 217 CUPS-Add-Modify-Printer successful-ok
localhost - - [13/Jul/2014:05:10:16 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [13/Jul/2014:05:10:16 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [13/Jul/2014:05:10:16 -0700] "POST /admin/ HTTP/1.1" 200 228 CUPS-Add-Modify-Printer successful-ok
localhost - - [13/Jul/2014:05:23:29 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:23:29 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:23:31 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:23:56 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 12626 Print-Job successful-ok
localhost - - [13/Jul/2014:05:23:59 -0700] "POST /jobs/ HTTP/1.1" 200 171 Cancel-Job successful-ok
localhost - - [13/Jul/2014:05:24:18 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 13084 Print-Job successful-ok
localhost - - [13/Jul/2014:05:24:38 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 12769 Print-Job successful-ok
localhost - - [13/Jul/2014:05:24:39 -0700] "POST /jobs/ HTTP/1.1" 200 171 Cancel-Job successful-ok
localhost - - [13/Jul/2014:05:25:13 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 85153 Print-Job successful-ok
localhost - - [13/Jul/2014:05:25:21 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 85944 Print-Job successful-ok
localhost - - [13/Jul/2014:05:26:56 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:26:56 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:26:58 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:26:58 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:27:06 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:27:28 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 415 Print-Job successful-ok
localhost - - [13/Jul/2014:05:27:38 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 262 Print-Job successful-ok
localhost - - [13/Jul/2014:05:27:40 -0700] "POST /jobs/ HTTP/1.1" 200 171 Cancel-Job successful-ok
localhost - - [13/Jul/2014:05:27:41 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 254 Print-Job successful-ok
localhost - - [13/Jul/2014:05:27:41 -0700] "POST /jobs/ HTTP/1.1" 200 171 Cancel-Job client-error-not-possible
localhost - - [13/Jul/2014:05:27:57 -0700] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - wordstrings [13/Jul/2014:05:27:57 -0700] "POST / HTTP/1.1" 403 123 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:05:27:58 -0700] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:05:28:02 -0700] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - - [13/Jul/2014:05:28:24 -0700] "POST /admin/ HTTP/1.1" 401 123 Resume-Printer successful-ok
localhost - wordstrings [13/Jul/2014:05:28:24 -0700] "POST /admin/ HTTP/1.1" 403 123 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:28:24 -0700] "POST /admin/ HTTP/1.1" 401 123 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:28:33 -0700] "POST /admin/ HTTP/1.1" 401 123 Resume-Printer successful-ok
localhost - root [13/Jul/2014:05:28:33 -0700] "POST /admin/ HTTP/1.1" 200 123 Resume-Printer successful-ok
localhost - root [13/Jul/2014:05:28:49 -0700] "POST /admin/ HTTP/1.1" 200 123 CUPS-Set-Default successful-ok
localhost - root [13/Jul/2014:05:28:49 -0700] "GET /admin/conf/lpoptions HTTP/1.1" 200 16 - -
localhost - root [13/Jul/2014:05:28:50 -0700] "PUT /admin/conf/lpoptions HTTP/1.1" 403 0 - -
localhost - root [13/Jul/2014:05:28:50 -0700] "PUT /admin/conf/lpoptions HTTP/1.1" 403 0 - -
localhost - - [13/Jul/2014:05:28:53 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:29:05 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 12769 Print-Job successful-ok
localhost - - [13/Jul/2014:05:29:08 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:29:08 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:29:09 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:29:09 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:29:14 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:29:14 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:29:17 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:29:17 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:29:33 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:29:38 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - wordstrings [13/Jul/2014:05:29:38 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - - [13/Jul/2014:05:29:38 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - - [13/Jul/2014:05:29:45 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [13/Jul/2014:05:29:45 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - root [13/Jul/2014:05:29:50 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3194 - -
localhost - - [13/Jul/2014:05:30:05 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:05:30:05 -0700] "POST / HTTP/1.1" 200 1378 CUPS-Get-Devices -
localhost - - [13/Jul/2014:05:30:49 -0700] "POST / HTTP/1.1" 200 341 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:30:49 -0700] "POST / HTTP/1.1" 200 341 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:30:51 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:30:51 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:30:56 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [13/Jul/2014:05:30:56 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - - [13/Jul/2014:05:31:45 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:05:31:58 -0700] "POST /admin/ HTTP/1.1" 401 123 Resume-Printer successful-ok
localhost - wordstrings [13/Jul/2014:05:31:58 -0700] "POST /admin/ HTTP/1.1" 403 123 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:31:58 -0700] "POST /admin/ HTTP/1.1" 401 123 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:32:05 -0700] "POST /admin/ HTTP/1.1" 401 123 Resume-Printer successful-ok
localhost - root [13/Jul/2014:05:32:05 -0700] "POST /admin/ HTTP/1.1" 200 123 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:32:37 -0700] "POST /printers/LBP2900 HTTP/1.1" 200 250 Print-Job successful-ok
localhost - - [13/Jul/2014:05:32:47 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:32:49 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:33:26 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [13/Jul/2014:05:33:26 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [13/Jul/2014:05:33:30 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:05:33:30 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [13/Jul/2014:05:33:30 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [13/Jul/2014:05:33:30 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:33:45 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [13/Jul/2014:05:33:45 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [13/Jul/2014:05:33:55 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [13/Jul/2014:05:34:01 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:05:34:01 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [13/Jul/2014:05:34:01 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [13/Jul/2014:05:34:01 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [13/Jul/2014:05:34:17 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [13/Jul/2014:05:34:17 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [13/Jul/2014:17:22:39 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:22:19:39 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [13/Jul/2014:22:46:57 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [13/Jul/2014:22:46:57 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [13/Jul/2014:22:46:57 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [13/Jul/2014:22:46:57 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [14/Jul/2014:02:20:41 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [14/Jul/2014:02:21:32 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [14/Jul/2014:02:21:35 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [14/Jul/2014:02:21:37 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [14/Jul/2014:02:21:39 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job client-error-not-possible
localhost - - [14/Jul/2014:02:21:42 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [14/Jul/2014:02:21:48 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:00:12:27 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:00:12:27 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [15/Jul/2014:00:12:43 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:00:12:57 -0700] "POST /admin/ HTTP/1.1" 401 148 CUPS-Add-Modify-Printer successful-ok
localhost - wordstrings [15/Jul/2014:00:12:57 -0700] "POST /admin/ HTTP/1.1" 403 148 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:00:12:57 -0700] "POST /admin/ HTTP/1.1" 401 148 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:00:13:05 -0700] "POST /admin/ HTTP/1.1" 401 148 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:00:13:05 -0700] "POST /admin/ HTTP/1.1" 200 148 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:00:13:05 -0700] "POST /admin/ HTTP/1.1" 200 165 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:00:13:25 -0700] "POST / HTTP/1.1" 401 98 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:00:13:25 -0700] "POST / HTTP/1.1" 200 310 CUPS-Get-Devices -
localhost - - [15/Jul/2014:00:13:26 -0700] "POST / HTTP/1.1" 200 1431729 CUPS-Get-PPDs -
localhost - - [15/Jul/2014:00:14:17 -0700] "POST / HTTP/1.1" 200 17491 CUPS-Get-PPD -
localhost - - [15/Jul/2014:00:14:52 -0700] "POST /admin/ HTTP/1.1" 401 17440 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:00:14:52 -0700] "POST /admin/ HTTP/1.1" 200 17440 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:00:15:26 -0700] "POST / HTTP/1.1" 200 341 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:00:15:26 -0700] "POST / HTTP/1.1" 200 341 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:00:15:31 -0700] "POST /jobs/ HTTP/1.1" 200 139 Cancel-Job successful-ok
localhost - - [15/Jul/2014:00:15:33 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:00:15:33 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:00:15:35 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:00:16:30 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 320 Create-Job successful-ok
localhost - - [15/Jul/2014:00:16:30 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 61509 Send-Document successful-ok
localhost - - [15/Jul/2014:00:16:31 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:00:16:51 -0700] "POST /printers/Canon-LBP HTTP/1.1" 200 13084 Print-Job successful-ok
localhost - - [15/Jul/2014:01:17:09 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:02:56:37 -0700] "POST /admin/ HTTP/1.1" 401 178 Pause-Printer successful-ok
localhost - root [15/Jul/2014:02:56:37 -0700] "POST /admin/ HTTP/1.1" 200 178 Pause-Printer successful-ok
localhost - - [15/Jul/2014:04:11:55 -0700] "POST /admin/ HTTP/1.1" 401 217 CUPS-Add-Modify-Printer successful-ok
localhost - wordstrings [15/Jul/2014:04:11:55 -0700] "POST /admin/ HTTP/1.1" 403 217 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:04:12:08 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:12:08 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:12:08 -0700] "POST /admin/ HTTP/1.1" 200 228 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:04:13:56 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:04:14:00 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:04:14:00 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [15/Jul/2014:04:14:00 -0700] "POST /admin/ HTTP/1.1" 401 129 Resume-Printer successful-ok
localhost - root [15/Jul/2014:04:14:00 -0700] "POST /admin/ HTTP/1.1" 200 129 Resume-Printer successful-ok
localhost - - [15/Jul/2014:04:21:52 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:04:21:55 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:04:22:57 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 364 Create-Job successful-ok
localhost - - [15/Jul/2014:04:22:57 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 1162156 Send-Document successful-ok
localhost - - [15/Jul/2014:04:26:54 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [15/Jul/2014:04:26:54 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 25502 Send-Document successful-ok
localhost - - [15/Jul/2014:04:28:28 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [15/Jul/2014:04:28:28 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [15/Jul/2014:04:29:13 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 512658 Print-Job successful-ok
localhost - - [15/Jul/2014:04:31:37 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:31:37 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:31:37 -0700] "POST /admin/ HTTP/1.1" 200 228 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:04:31:54 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [15/Jul/2014:04:31:54 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [15/Jul/2014:04:32:09 -0700] "POST /admin/ HTTP/1.1" 401 217 CUPS-Add-Modify-Printer successful-ok
localhost - wordstrings [15/Jul/2014:04:32:09 -0700] "POST /admin/ HTTP/1.1" 403 217 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:04:32:20 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:32:20 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:32:20 -0700] "POST /admin/ HTTP/1.1" 200 17301 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:04:39:58 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:04:40:13 -0700] "POST / HTTP/1.1" 401 98 CUPS-Get-Devices successful-ok
localhost - wordstrings [15/Jul/2014:04:40:13 -0700] "POST / HTTP/1.1" 403 98 CUPS-Get-Devices successful-ok
localhost - - [15/Jul/2014:04:40:13 -0700] "POST / HTTP/1.1" 401 98 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:04:40:21 -0700] "POST / HTTP/1.1" 200 310 CUPS-Get-Devices -
localhost - - [15/Jul/2014:04:40:21 -0700] "POST / HTTP/1.1" 200 1431729 CUPS-Get-PPDs -
localhost - - [15/Jul/2014:04:40:36 -0700] "POST / HTTP/1.1" 200 17491 CUPS-Get-PPD -
localhost - - [15/Jul/2014:04:40:45 -0700] "POST /admin/ HTTP/1.1" 401 17440 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:04:40:45 -0700] "POST /admin/ HTTP/1.1" 200 17440 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:04:41:00 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:04:41:00 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:04:41:04 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [15/Jul/2014:04:41:04 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3194 - -
localhost - - [15/Jul/2014:04:41:14 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:04:41:26 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 327 Create-Job successful-ok
localhost - - [15/Jul/2014:04:41:26 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 11181 Send-Document successful-ok
localhost - - [15/Jul/2014:05:25:44 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:25:53 -0700] "POST /admin/ HTTP/1.1" 401 125 CUPS-Delete-Printer successful-ok
localhost - wordstrings [15/Jul/2014:05:25:53 -0700] "POST /admin/ HTTP/1.1" 403 125 CUPS-Delete-Printer successful-ok
localhost - - [15/Jul/2014:05:25:53 -0700] "POST /admin/ HTTP/1.1" 401 125 CUPS-Delete-Printer successful-ok
localhost - - [15/Jul/2014:05:25:59 -0700] "POST /admin/ HTTP/1.1" 401 125 CUPS-Delete-Printer successful-ok
localhost - root [15/Jul/2014:05:25:59 -0700] "POST /admin/ HTTP/1.1" 200 125 CUPS-Delete-Printer successful-ok
localhost - root [15/Jul/2014:05:26:07 -0700] "POST /admin/ HTTP/1.1" 200 123 CUPS-Delete-Printer successful-ok
localhost - - [15/Jul/2014:05:26:10 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:26:18 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:26:20 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:26:23 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:26:25 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:26:28 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:26:31 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:29:04 -0700] "POST /admin/ HTTP/1.1" 401 152 CUPS-Reject-Jobs successful-ok
localhost - root [15/Jul/2014:05:29:04 -0700] "POST /admin/ HTTP/1.1" 200 152 CUPS-Reject-Jobs successful-ok
localhost - - [15/Jul/2014:05:29:22 -0700] "POST /admin/ HTTP/1.1" 401 152 Pause-Printer successful-ok
localhost - root [15/Jul/2014:05:29:22 -0700] "POST /admin/ HTTP/1.1" 200 152 Pause-Printer successful-ok
localhost - - [15/Jul/2014:05:29:38 -0700] "POST /admin/ HTTP/1.1" 401 152 CUPS-Delete-Printer successful-ok
localhost - root [15/Jul/2014:05:29:38 -0700] "POST /admin/ HTTP/1.1" 200 152 CUPS-Delete-Printer successful-ok
localhost - - [15/Jul/2014:05:30:14 -0700] "POST /admin/ HTTP/1.1" 200 152 CUPS-Reject-Jobs client-error-not-found
localhost - - [15/Jul/2014:05:30:35 -0700] "POST /admin/ HTTP/1.1" 200 152 Pause-Printer client-error-not-found
localhost - - [15/Jul/2014:05:31:02 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:05:31:02 -0700] "POST / HTTP/1.1" 200 1666 CUPS-Get-Devices -
localhost - - [15/Jul/2014:05:31:12 -0700] "POST / HTTP/1.1" 200 1431729 CUPS-Get-PPDs -
localhost - - [15/Jul/2014:05:34:15 -0700] "POST / HTTP/1.1" 401 75 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:05:34:15 -0700] "POST / HTTP/1.1" 200 1666 CUPS-Get-Devices -
localhost - - [15/Jul/2014:05:36:38 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:05:36:38 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:05:39:09 -0700] "POST /admin/ HTTP/1.1" 401 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:05:39:09 -0700] "POST /admin/ HTTP/1.1" 200 210 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:05:39:09 -0700] "POST /admin/ HTTP/1.1" 200 17518 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:05:40:31 -0700] "POST /admin/ HTTP/1.1" 401 152 Resume-Printer successful-ok
localhost - root [15/Jul/2014:05:40:31 -0700] "POST /admin/ HTTP/1.1" 200 152 Resume-Printer successful-ok
localhost - - [15/Jul/2014:05:42:41 -0700] "POST /admin/ HTTP/1.1" 200 152 CUPS-Reject-Jobs client-error-not-found
localhost - - [15/Jul/2014:05:43:04 -0700] "POST /admin/ HTTP/1.1" 200 152 Pause-Printer client-error-not-found
localhost - - [15/Jul/2014:05:43:27 -0700] "POST /admin/ HTTP/1.1" 200 152 CUPS-Delete-Printer client-error-not-found
localhost - - [15/Jul/2014:05:46:24 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:46:34 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:46:50 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 8296 Print-Job successful-ok
localhost - - [15/Jul/2014:05:47:00 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:47:00 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:47:01 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:47:01 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:47:06 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:05:47:10 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:47:10 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:47:12 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:47:12 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:47:15 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:47:15 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:47:25 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:05:47:27 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:05:51:23 -0700] "POST /printers/atestprintfile HTTP/1.1" 200 190 Create-Job client-error-not-found
localhost - - [15/Jul/2014:05:52:00 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 318 Create-Job successful-ok
localhost - - [15/Jul/2014:05:52:00 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 392 Send-Document successful-ok
localhost - - [15/Jul/2014:05:54:52 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 318 Create-Job successful-ok
localhost - - [15/Jul/2014:05:54:52 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 392 Send-Document successful-ok
localhost - - [15/Jul/2014:06:01:27 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:30 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:32 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:34 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:34 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:35 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:35 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:39 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:42 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:44 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:45 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:45 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:46 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:46 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:46 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:46 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:50 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:06:01:51 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:51 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:52 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:52 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:01:52 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:06:01:52 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:03:56 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:06:03:56 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [15/Jul/2014:06:29:27 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 871 Create-Job successful-ok
localhost - - [15/Jul/2014:06:29:27 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 392 Send-Document successful-ok
localhost - - [15/Jul/2014:06:29:31 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:06:33:19 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 864 Create-Job successful-ok
localhost - - [15/Jul/2014:06:33:19 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 385 Send-Document successful-ok
localhost - - [15/Jul/2014:07:05:13 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:05:16 -0700] "POST /jobs/ HTTP/1.1" 401 146 Cancel-Job successful-ok
localhost - wordstrings [15/Jul/2014:07:05:16 -0700] "POST /jobs/ HTTP/1.1" 403 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:05:16 -0700] "POST /jobs/ HTTP/1.1" 200 139 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:05:17 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:17 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:18 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:18 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:21 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:05:22 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:22 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:22 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:22 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:23 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:23 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:23 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:23 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:24 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:24 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:24 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:24 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:25 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:25 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:27 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:05:28 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:28 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:28 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:28 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:29 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:29 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:29 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:29 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:05:30 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:05:30 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:22:37 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 871 Create-Job successful-ok
localhost - - [15/Jul/2014:07:22:37 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 392 Send-Document successful-ok
localhost - - [15/Jul/2014:07:23:43 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 8296 Print-Job successful-ok
localhost - - [15/Jul/2014:07:27:21 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:27:23 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:27:24 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:24 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:26 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:27:29 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:27:30 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:30 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:30 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:30 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:31 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:31 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:32 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:32 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:34 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:07:27:35 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:35 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:35 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:35 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:36 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:36 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:07:27:36 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:07:27:36 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:08:17:21 -0700] "POST /admin/ HTTP/1.1" 401 176 Pause-Printer successful-ok
localhost - root [15/Jul/2014:08:17:21 -0700] "POST /admin/ HTTP/1.1" 200 176 Pause-Printer successful-ok
localhost - - [15/Jul/2014:09:34:55 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:09:34:55 -0700] "POST / HTTP/1.1" 200 766 CUPS-Get-Devices -
localhost - - [15/Jul/2014:09:35:16 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 871 Create-Job successful-ok
localhost - - [15/Jul/2014:09:35:16 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 392 Send-Document successful-ok
localhost - - [15/Jul/2014:09:37:41 -0700] "POST /jobs/ HTTP/1.1" 200 146 Cancel-Job successful-ok
localhost - - [15/Jul/2014:09:37:42 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:09:37:42 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:09:37:42 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:09:37:42 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:09:37:45 -0700] "POST /jobs/ HTTP/1.1" 200 161 Cancel-Job successful-ok
localhost - - [15/Jul/2014:09:37:46 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:09:37:46 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:09:37:46 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:09:37:46 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:09:37:46 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:09:37:46 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:09:37:47 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:09:37:47 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:21:23:32 -0700] "POST / HTTP/1.1" 401 244 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:21:23:32 -0700] "POST / HTTP/1.1" 200 904 CUPS-Get-Devices -
localhost - - [15/Jul/2014:21:23:33 -0700] "POST /admin/ HTTP/1.1" 401 127 Resume-Printer successful-ok
localhost - root [15/Jul/2014:21:23:33 -0700] "POST /admin/ HTTP/1.1" 200 127 Resume-Printer successful-ok
localhost - - [15/Jul/2014:21:35:26 -0700] "POST /admin/ HTTP/1.1" 200 84 - -
localhost - - [15/Jul/2014:21:35:26 -0700] "POST / HTTP/1.1" 401 91 CUPS-Get-Devices successful-ok
localhost - - [15/Jul/2014:21:35:26 -0700] "POST /admin/ HTTP/1.1" 401 84 - -
localhost - - [15/Jul/2014:21:35:26 -0700] "POST /admin/ HTTP/1.1" 200 84 - -
localhost - root [15/Jul/2014:21:35:48 -0700] "POST /admin/ HTTP/1.1" 200 84 - -
localhost - - [15/Jul/2014:21:35:48 -0700] "POST / HTTP/1.1" 401 91 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:21:35:48 -0700] "POST / HTTP/1.1" 200 1544 CUPS-Get-Devices -
localhost - root [15/Jul/2014:21:35:48 -0700] "POST /admin/ HTTP/1.1" 200 3703 - -
localhost - - [15/Jul/2014:21:36:03 -0700] "POST /admin HTTP/1.1" 200 157 - -
localhost - - [15/Jul/2014:21:36:03 -0700] "POST /admin HTTP/1.1" 200 3514 - -
localhost - - [15/Jul/2014:21:36:14 -0700] "POST /admin HTTP/1.1" 200 247 - -
localhost - - [15/Jul/2014:21:36:14 -0700] "POST / HTTP/1.1" 200 31415 CUPS-Get-PPDs -
localhost - - [15/Jul/2014:21:36:14 -0700] "POST /admin HTTP/1.1" 200 12121 - -
localhost - - [15/Jul/2014:21:44:49 -0700] "POST /admin HTTP/1.1" 200 18905 - -
localhost - - [15/Jul/2014:21:44:49 -0700] "POST /admin/ HTTP/1.1" 401 17606 CUPS-Add-Modify-Printer successful-ok
localhost - - [15/Jul/2014:21:44:49 -0700] "POST /admin HTTP/1.1" 401 18905 - -
localhost - - [15/Jul/2014:21:44:49 -0700] "POST /admin HTTP/1.1" 200 18905 - -
localhost - root [15/Jul/2014:21:44:49 -0700] "POST /admin HTTP/1.1" 200 18905 - -
localhost - - [15/Jul/2014:21:44:49 -0700] "POST /admin/ HTTP/1.1" 401 17606 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:21:44:49 -0700] "POST /admin/ HTTP/1.1" 200 17606 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:21:44:49 -0700] "POST /admin HTTP/1.1" 200 21185 - -
localhost - - [15/Jul/2014:21:45:16 -0700] "POST /printers/LBP6000 HTTP/1.1" 401 123 Purge-Jobs successful-ok
localhost - root [15/Jul/2014:21:45:16 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 123 Purge-Jobs successful-ok
localhost - - [15/Jul/2014:21:45:35 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 216 Create-Job successful-ok
localhost - - [15/Jul/2014:21:45:35 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 270 Send-Document successful-ok
localhost - root [15/Jul/2014:21:49:14 -0700] "POST /admin/ HTTP/1.1" 200 89 - -
localhost - root [15/Jul/2014:21:49:14 -0700] "POST /admin/ HTTP/1.1" 200 11346 - -
localhost - - [15/Jul/2014:21:49:40 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 412 Print-Job successful-ok
localhost - - [15/Jul/2014:21:57:14 -0700] "POST /jobs HTTP/1.1" 200 139 Cancel-Job successful-ok
localhost - root [15/Jul/2014:21:57:30 -0700] "POST /admin/ HTTP/1.1" 200 84 - -
localhost - - [15/Jul/2014:21:57:30 -0700] "POST / HTTP/1.1" 401 91 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:21:57:30 -0700] "POST / HTTP/1.1" 200 1394 CUPS-Get-Devices -
localhost - root [15/Jul/2014:21:57:30 -0700] "POST /admin/ HTTP/1.1" 200 3621 - -
localhost - root [15/Jul/2014:21:57:43 -0700] "POST /admin HTTP/1.1" 200 157 - -
localhost - root [15/Jul/2014:21:57:43 -0700] "POST /admin HTTP/1.1" 200 3514 - -
localhost - root [15/Jul/2014:21:58:02 -0700] "POST /admin HTTP/1.1" 200 226 - -
localhost - - [15/Jul/2014:21:58:02 -0700] "POST / HTTP/1.1" 200 31415 CUPS-Get-PPDs -
localhost - root [15/Jul/2014:21:58:02 -0700] "POST /admin HTTP/1.1" 200 12104 - -
localhost - root [15/Jul/2014:21:58:20 -0700] "POST /admin HTTP/1.1" 200 1602 - -
localhost - - [15/Jul/2014:21:58:20 -0700] "POST /admin/ HTTP/1.1" 401 362 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:21:58:21 -0700] "POST /admin/ HTTP/1.1" 200 362 CUPS-Add-Modify-Printer successful-ok
localhost - root [15/Jul/2014:21:58:20 -0700] "POST /admin HTTP/1.1" 200 3882 - -
localhost - - [15/Jul/2014:21:58:41 -0700] "POST /jobs HTTP/1.1" 200 139 Cancel-Job successful-ok
localhost - - [15/Jul/2014:21:58:52 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 412 Print-Job successful-ok
localhost - - [15/Jul/2014:21:59:21 -0700] "POST /jobs HTTP/1.1" 200 139 Cancel-Job successful-ok
localhost - root [15/Jul/2014:22:00:40 -0700] "POST /admin HTTP/1.1" 200 242 - -
localhost - - [15/Jul/2014:22:00:41 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [15/Jul/2014:22:00:41 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3205 - -
localhost - root [15/Jul/2014:22:00:40 -0700] "POST /admin HTTP/1.1" 200 2593 - -
localhost - root [15/Jul/2014:22:00:51 -0700] "GET /admin/log/access_log? HTTP/1.1" 200 64392 - -
localhost - root [15/Jul/2014:22:01:23 -0700] "GET /admin/log/error_log? HTTP/1.1" 200 85620 - -
localhost - root [15/Jul/2014:22:03:43 -0700] "GET /admin/log/access_log? HTTP/1.1" 200 64587 - -
localhost - root [15/Jul/2014:22:04:05 -0700] "GET /admin/log/page_log? HTTP/1.1" 200 1227 - -
localhost - root [15/Jul/2014:22:04:43 -0700] "POST /admin/ HTTP/1.1" 200 62 - -
localhost - root [15/Jul/2014:22:04:43 -0700] "POST /admin/ HTTP/1.1" 200 10762 - -
localhost - - [15/Jul/2014:22:07:21 -0700] "POST /printers/LBP6000 HTTP/1.1" 401 123 Purge-Jobs successful-ok
localhost - root [15/Jul/2014:22:07:21 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 123 Purge-Jobs successful-ok
localhost - root [15/Jul/2014:22:07:47 -0700] "POST /admin/ HTTP/1.1" 200 84 - -
localhost - - [15/Jul/2014:22:07:47 -0700] "POST /admin/ HTTP/1.1" 401 123 CUPS-Set-Default successful-ok
localhost - root [15/Jul/2014:22:07:47 -0700] "POST /admin/ HTTP/1.1" 200 123 CUPS-Set-Default successful-ok
localhost - root [15/Jul/2014:22:07:47 -0700] "POST /admin/ HTTP/1.1" 200 2557 - -
localhost - - [15/Jul/2014:22:08:07 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 878 Create-Job successful-ok
localhost - - [15/Jul/2014:22:08:07 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 392 Send-Document successful-ok
localhost - - [15/Jul/2014:22:08:11 -0700] "POST / HTTP/1.1" 200 348 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:22:08:41 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:22:12:36 -0700] "POST /printers/LBP6000 HTTP/1.1" 200 257 Print-Job successful-ok
localhost - - [15/Jul/2014:22:13:34 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:22:13:34 -0700] "POST / HTTP/1.1" 200 259 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:22:14:06 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - wordstrings [15/Jul/2014:22:14:06 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 403 0 - -
localhost - - [15/Jul/2014:22:14:06 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - - [15/Jul/2014:22:14:14 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [15/Jul/2014:22:14:14 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3205 - -
localhost - root [15/Jul/2014:22:14:57 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3205 - -
localhost - - [15/Jul/2014:22:15:01 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 401 0 - -
localhost - root [15/Jul/2014:22:15:01 -0700] "GET /admin/conf/cupsd.conf HTTP/1.1" 200 3205 - -
localhost - root [15/Jul/2014:22:15:04 -0700] "PUT /admin/conf/cupsd.conf HTTP/1.1" 201 3205 - -
localhost - - [15/Jul/2014:22:15:24 -0700] "POST / HTTP/1.1" 200 341 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:22:15:24 -0700] "POST / HTTP/1.1" 200 341 Create-Printer-Subscriptions successful-ok
localhost - - [15/Jul/2014:22:15:28 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:22:15:28 -0700] "POST / HTTP/1.1" 200 152 Cancel-Subscription successful-ok
localhost - - [15/Jul/2014:22:15:37 -0700] "POST / HTTP/1.1" 401 123 CUPS-Get-Devices successful-ok
localhost - root [15/Jul/2014:22:15:38 -0700] "POST / HTTP/1.1" 200 1426 CUPS-Get-Devices -
localhost - - [15/Jul/2014:22:15:57 -0700] "POST / HTTP/1.1" 200 159 Cancel-Subscription successful-okError_log:
E [12/Jul/2014:19:57:02 -0700] [cups-deviced] PID 1461 (dnssd) stopped with status 1!
E [12/Jul/2014:19:57:55 -0700] [cups-deviced] PID 1485 (dnssd) stopped with status 1!
E [13/Jul/2014:00:17:13 -0700] [Job 10] Unable to send data to printer.
E [13/Jul/2014:02:23:35 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:02:50:15 -0700] [Client 26] Returning HTTP Forbidden for CUPS-Get-Devices (no URI) from localhost
E [13/Jul/2014:02:50:17 -0700] [Client 26] pam_authenticate() returned 7 (Authentication failure)
E [13/Jul/2014:02:50:19 -0700] [Client 16] pam_authenticate() returned 7 (Authentication failure)
E [13/Jul/2014:02:50:34 -0700] [cups-deviced] PID 803 (dnssd) stopped with status 1!
I [13/Jul/2014:02:50:43 -0700] Listening to [v1.::1]:631 (IPv6)
I [13/Jul/2014:02:50:43 -0700] Listening to 127.0.0.1:631 (IPv4)
I [13/Jul/2014:02:50:43 -0700] Listening to /run/cups/cups.sock (Domain)
E [13/Jul/2014:02:50:43 -0700] Unknown directive JobPrivateAccess on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:50:43 -0700] Unknown directive JobPrivateValues on line 84 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:50:43 -0700] Unknown directive SubscriptionPrivateAccess on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:50:43 -0700] Unknown directive SubscriptionPrivateValues on line 87 of /etc/cups/cupsd.conf.
I [13/Jul/2014:02:50:43 -0700] Remote access is disabled.
D [13/Jul/2014:02:50:43 -0700] Added auto ServerAlias DTR-Arch-Linux
I [13/Jul/2014:02:50:43 -0700] Loaded configuration file "/etc/cups/cupsd.conf"
I [13/Jul/2014:02:50:43 -0700] Configured for up to 100 clients.
I [13/Jul/2014:02:50:43 -0700] Allowing up to 100 client connections per host.
I [13/Jul/2014:02:50:43 -0700] Using policy "default" as the default.
D [13/Jul/2014:02:50:43 -0700] cupsdMarkDirty(P----)
D [13/Jul/2014:02:50:43 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Not busy"
D [13/Jul/2014:02:50:43 -0700] load_ppd: Loading /etc/cups/ppd/printer.ppd...
D [13/Jul/2014:02:50:43 -0700] cupsdRegisterPrinter(p=0xb90e8470(printer))
D [13/Jul/2014:02:50:43 -0700] cupsdMarkDirty(P----)
D [13/Jul/2014:02:50:43 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:43 -0700] load_ppd: Loading /etc/cups/ppd/printer-1.ppd...
D [13/Jul/2014:02:50:43 -0700] cupsdRegisterPrinter(p=0xb90eb808(printer-1))
D [13/Jul/2014:02:50:43 -0700] cupsdMarkDirty(--p--)
D [13/Jul/2014:02:50:43 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
I [13/Jul/2014:02:50:43 -0700] Partial reload complete.
D [13/Jul/2014:02:50:43 -0700] systemd_checkin: Matched existing listener /run/cups/cups.sock with fd 3...
D [13/Jul/2014:02:50:43 -0700] systemd_checkin: Adding new listener [v1.::] with fd 4...
D [13/Jul/2014:02:50:43 -0700] Calling FindDeviceById(cups-printer)
D [13/Jul/2014:02:50:43 -0700] FindDeviceById failed: org.freedesktop.ColorManager.NotFound:device id 'cups-printer' does not exist
D [13/Jul/2014:02:50:43 -0700] Calling FindDeviceById(cups-printer-1)
D [13/Jul/2014:02:50:43 -0700] FindDeviceById failed: org.freedesktop.ColorManager.NotFound:device id 'cups-printer-1' does not exist
E [13/Jul/2014:02:50:43 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
I [13/Jul/2014:02:50:43 -0700] Listening to 127.0.0.1:631 on fd 12...
I [13/Jul/2014:02:50:43 -0700] Listening to /run/cups/cups.sock:631 on fd 3...
I [13/Jul/2014:02:50:43 -0700] Listening to [v1.::]:631 on fd 4...
I [13/Jul/2014:02:50:43 -0700] Resuming new connection processing...
D [13/Jul/2014:02:50:43 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:43 -0700] Discarding unused server-restarted event...
D [13/Jul/2014:02:50:44 -0700] [Client 15] Accepted from localhost (Domain)
D [13/Jul/2014:02:50:44 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:50:44 -0700] Report: clients=1
D [13/Jul/2014:02:50:44 -0700] Report: jobs=23
D [13/Jul/2014:02:50:44 -0700] Report: jobs-active=0
D [13/Jul/2014:02:50:44 -0700] Report: printers=2
D [13/Jul/2014:02:50:44 -0700] Report: stringpool-string-count=863
D [13/Jul/2014:02:50:44 -0700] Report: stringpool-alloc-bytes=7072
D [13/Jul/2014:02:50:44 -0700] Report: stringpool-total-bytes=15232
D [13/Jul/2014:02:50:48 -0700] [Client 15] GET /admin/log/error_log HTTP/1.1
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:50:48 -0700] [Client 15] Sending file.
D [13/Jul/2014:02:50:48 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=4550, response=(nil)(), pipe_pid=0, file=16
D [13/Jul/2014:02:50:48 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=2502, response=(nil)(), pipe_pid=0, file=16
D [13/Jul/2014:02:50:48 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=454, response=(nil)(), pipe_pid=0, file=16
D [13/Jul/2014:02:50:48 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:50:48 -0700] [Client 15] 2.0 Get-Jobs 26
D [13/Jul/2014:02:50:48 -0700] Get-Jobs ipp://localhost/printers/
D [13/Jul/2014:02:50:48 -0700] [Client 15] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost
D [13/Jul/2014:02:50:48 -0700] [Client 15] Content-Length: 75
D [13/Jul/2014:02:50:48 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=75, response=0xb90e9bb8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:50:48 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:50:48 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:50:48 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:50:48 -0700] [Client 15] 2.0 Get-Jobs 27
D [13/Jul/2014:02:50:48 -0700] Get-Jobs ipp://localhost/printers/
D [13/Jul/2014:02:50:48 -0700] [Job 1] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 3] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 4] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 5] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 6] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 7] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 8] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 9] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 11] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 12] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 13] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 14] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 15] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 16] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 17] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 18] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 19] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 20] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 21] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 23] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 24] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 25] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Job 26] Loading attributes...
D [13/Jul/2014:02:50:48 -0700] [Client 15] Returning IPP successful-ok for Get-Jobs (ipp://localhost/printers/) from localhost
D [13/Jul/2014:02:50:48 -0700] [Client 15] Content-Length: 2163
D [13/Jul/2014:02:50:48 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=2163, response=0xb90ea470(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:50:48 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:50:48 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:50:48 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:50:48 -0700] [Client 15] 2.0 Create-Printer-Subscriptions 28
D [13/Jul/2014:02:50:48 -0700] Create-Printer-Subscriptions /
D [13/Jul/2014:02:50:48 -0700] create_subscriptions(con=0xb9121260(15), uri="/")
D [13/Jul/2014:02:50:48 -0700] pullmethod="ippget"
D [13/Jul/2014:02:50:48 -0700] notify-lease-duration=86400
D [13/Jul/2014:02:50:48 -0700] notify-time-interval=0
D [13/Jul/2014:02:50:48 -0700] cupsdAddSubscription(mask=17800, dest=(nil)(), job=(nil)(0), uri="(null)")
D [13/Jul/2014:02:50:48 -0700] Added subscription #14 for server.
D [13/Jul/2014:02:50:48 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:50:48 -0700] [Client 15] Returning IPP successful-ok for Create-Printer-Subscriptions (/) from localhost
D [13/Jul/2014:02:50:48 -0700] [Client 15] Content-Length: 107
D [13/Jul/2014:02:50:48 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=107, response=0xb90e9bb8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:50:48 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:50:48 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:50:48 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:50:48 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:50:50 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:50:50 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:50:50 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:50:50 -0700] [Client 15] 2.0 Get-Notifications 29
D [13/Jul/2014:02:50:50 -0700] Get-Notifications /
D [13/Jul/2014:02:50:50 -0700] cupsdIsAuthorized: requesting-user-name="root"
D [13/Jul/2014:02:50:50 -0700] [Client 15] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:50:50 -0700] [Client 15] Content-Length: 127
D [13/Jul/2014:02:50:50 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=127, response=0xb90ea470(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:50:50 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:50:50 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:50:50 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:50:50 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 16] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 16] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 16] POST /printers/printer HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 16] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 16] 2.0 Print-Job 30
D [13/Jul/2014:02:51:01 -0700] Print-Job ipp://localhost/printers/printer
D [13/Jul/2014:02:51:01 -0700] [Job ???] Auto-typing file...
I [13/Jul/2014:02:51:01 -0700] [Job ???] Request file type is application/vnd.cups-pdf-banner.
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] add_job: requesting-user-name="root"
D [13/Jul/2014:02:51:01 -0700] Adding default job-sheets values "none,none"...
I [13/Jul/2014:02:51:01 -0700] [Job 27] Adding start banner page "none".
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
I [13/Jul/2014:02:51:01 -0700] [Job 27] Adding end banner page "none".
I [13/Jul/2014:02:51:01 -0700] [Job 27] File of type application/vnd.cups-pdf-banner queued by "root".
D [13/Jul/2014:02:51:01 -0700] [Job 27] hold_until=0
I [13/Jul/2014:02:51:01 -0700] [Job 27] Queued on "printer" by "root".
D [13/Jul/2014:02:51:01 -0700] [Job 27] time-at-processing=1405245061
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Job 27] Sending job to queue tagged as raw...
D [13/Jul/2014:02:51:01 -0700] [Job 27] job-sheets=none,none
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[0]="printer"
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[1]="27"
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[2]="root"
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[3]="Test Page"
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[4]="1"
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[5]="job-uuid=urn:uuid:b04f5b54-7db5-3c27-6713-48ce18338677 job-originating-host-name=localhost time-at-creation=1405245061 time-at-processing=1405245061"
D [13/Jul/2014:02:51:01 -0700] [Job 27] argv[6]="/var/spool/cups/d00027-001"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[1]="CUPS_DATADIR=/usr/share/cups"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[6]="CUPS_SERVERROOT=/etc/cups"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[7]="CUPS_STATEDIR=/run/cups"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[8]="HOME=/var/spool/cups/tmp"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[10]="SERVER_ADMIN=root@DTR-Arch-Linux"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[11]="SOFTWARE=CUPS/1.7.3"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[12]="TMPDIR=/var/spool/cups/tmp"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[13]="USER=root"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[14]="CUPS_MAX_MESSAGE=2047"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[15]="CUPS_SERVER=/run/cups/cups.sock"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[16]="CUPS_ENCRYPTION=IfRequested"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[17]="IPP_PORT=631"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[18]="CHARSET=utf-8"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[19]="LANG=en_US.UTF-8"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[20]="PPD=/etc/cups/ppd/printer.ppd"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[21]="RIP_MAX_CACHE=128m"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[22]="CONTENT_TYPE=application/vnd.cups-pdf-banner"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[23]="DEVICE_URI=file:///dev/null"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[24]="PRINTER_INFO=printer"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[25]="PRINTER_LOCATION="
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[26]="PRINTER=printer"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[27]="PRINTER_STATE_REASONS=none"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[28]="CUPS_FILETYPE=document"
D [13/Jul/2014:02:51:01 -0700] [Job 27] envp[29]="AUTH_I****"
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients, printing jobs, and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 16] Returning IPP successful-ok for Print-Job (ipp://localhost/printers/printer) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 16] Content-Length: 174
D [13/Jul/2014:02:51:01 -0700] [Client 16] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=174, response=0xb911b3b8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 16] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 16] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 16] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Active clients, printing jobs, and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Job 27] time-at-completed=1405245061
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
I [13/Jul/2014:02:51:01 -0700] [Job 27] Job completed.
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:01 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 17] 2.0 Get-Notifications 308
D [13/Jul/2014:02:51:01 -0700] Get-Notifications /
D [13/Jul/2014:02:51:01 -0700] cupsdIsAuthorized: requesting-user-name="wordstrings"
D [13/Jul/2014:02:51:01 -0700] [Client 17] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 17] Content-Length: 2509
D [13/Jul/2014:02:51:01 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=2509, response=0xb90dd658(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 17] 2.0 Get-Job-Attributes 309
D [13/Jul/2014:02:51:01 -0700] Get-Job-Attributes ipp://localhost/jobs/27
D [13/Jul/2014:02:51:01 -0700] [Client 17] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/27) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 17] Content-Length: 828
D [13/Jul/2014:02:51:01 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=828, response=0xb90dd4e8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 18] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 18] 2.0 Get-Printer-Attributes 310
D [13/Jul/2014:02:51:01 -0700] Get-Printer-Attributes
D [13/Jul/2014:02:51:01 -0700] Get-Printer-Attributes client-error-not-found: The printer or class does not exist.
D [13/Jul/2014:02:51:01 -0700] [Client 18] Returning IPP client-error-not-found for Get-Printer-Attributes () from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 18] Content-Length: 130
D [13/Jul/2014:02:51:01 -0700] [Client 18] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=130, response=0xb90dd630(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 18] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 19] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 19] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 19] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 19] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 19] 2.0 Get-Job-Attributes 311
D [13/Jul/2014:02:51:01 -0700] Get-Job-Attributes ipp://localhost/jobs/27
D [13/Jul/2014:02:51:01 -0700] [Client 19] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/27) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 19] Content-Length: 194
D [13/Jul/2014:02:51:01 -0700] [Client 19] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=194, response=0xb90dd668(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 19] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 19] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 19] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 19] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:01 -0700] [Client 19] Closing connection.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 19] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 19] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 19] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 19] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 19] 2.0 Get-Notifications 31
D [13/Jul/2014:02:51:01 -0700] Get-Notifications /
D [13/Jul/2014:02:51:01 -0700] cupsdIsAuthorized: requesting-user-name="wordstrings"
D [13/Jul/2014:02:51:01 -0700] [Client 19] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 19] Content-Length: 965
D [13/Jul/2014:02:51:01 -0700] [Client 19] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=965, response=0xb90dd608(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 19] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 19] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 19] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:01 -0700] [Client 18] Closing connection.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 19] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:01 -0700] [Client 19] Closing connection.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 18] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 18] 2.0 Get-Job-Attributes 312
D [13/Jul/2014:02:51:01 -0700] Get-Job-Attributes ipp://localhost/jobs/27
D [13/Jul/2014:02:51:01 -0700] [Client 18] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/27) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 18] Content-Length: 120
D [13/Jul/2014:02:51:01 -0700] [Client 18] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=120, response=0xb90dd648(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 18] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:01 -0700] [Client 18] Closing connection.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 15] 2.0 Get-Notifications 32
D [13/Jul/2014:02:51:01 -0700] Get-Notifications /
D [13/Jul/2014:02:51:01 -0700] cupsdIsAuthorized: requesting-user-name="root"
D [13/Jul/2014:02:51:01 -0700] [Client 15] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 15] Content-Length: 1671
D [13/Jul/2014:02:51:01 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1671, response=0xb90dd608(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 18] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 18] 2.0 Get-Job-Attributes 313
D [13/Jul/2014:02:51:01 -0700] Get-Job-Attributes ipp://localhost/jobs/27
D [13/Jul/2014:02:51:01 -0700] [Client 18] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/27) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 18] Content-Length: 120
D [13/Jul/2014:02:51:01 -0700] [Client 18] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=120, response=0xb90dd648(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 18] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:01 -0700] [Client 18] Closing connection.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 18] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 18] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 18] 2.0 Get-Printer-Attributes 314
D [13/Jul/2014:02:51:01 -0700] Get-Printer-Attributes ipp://DTR-Arch-Linux/printers/printer
D [13/Jul/2014:02:51:01 -0700] [Client 18] Returning IPP successful-ok for Get-Printer-Attributes (ipp://DTR-Arch-Linux/printers/printer) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 18] Content-Length: 107
D [13/Jul/2014:02:51:01 -0700] [Client 18] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=107, response=0xb90dd5b8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 18] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 18] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:01 -0700] [Client 17] Closing connection.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 17] 2.0 CUPS-Get-Printers 33
D [13/Jul/2014:02:51:01 -0700] CUPS-Get-Printers
D [13/Jul/2014:02:51:01 -0700] [Client 17] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 17] Content-Length: 770
D [13/Jul/2014:02:51:01 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=770, response=0xb90dd5b0(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 17] 2.0 CUPS-Get-Classes 34
D [13/Jul/2014:02:51:01 -0700] CUPS-Get-Classes
D [13/Jul/2014:02:51:01 -0700] [Client 17] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 17] Content-Length: 75
D [13/Jul/2014:02:51:01 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=75, response=0xb90dd4e8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:01 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:01 -0700] [Client 17] 2.0 CUPS-Get-Default 35
D [13/Jul/2014:02:51:01 -0700] CUPS-Get-Default
D [13/Jul/2014:02:51:01 -0700] CUPS-Get-Default client-error-not-found: No default printer.
D [13/Jul/2014:02:51:01 -0700] [Client 17] Returning IPP client-error-not-found for CUPS-Get-Default (no URI) from localhost
D [13/Jul/2014:02:51:01 -0700] [Client 17] Content-Length: 113
D [13/Jul/2014:02:51:01 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=113, response=0xb90dd5b0(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:01 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:01 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:01 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 19] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 19] Waiting for request.
I [13/Jul/2014:02:51:13 -0700] Saving printers.conf...
I [13/Jul/2014:02:51:13 -0700] Generating printcap /etc/printcap...
I [13/Jul/2014:02:51:13 -0700] Saving job.cache...
I [13/Jul/2014:02:51:13 -0700] Saving subscriptions.conf...
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 19] POST /printers/printer HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
D [13/Jul/2014:02:51:13 -0700] [Client 19] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 19] 2.0 Print-Job 36
D [13/Jul/2014:02:51:13 -0700] Print-Job ipp://localhost/printers/printer
D [13/Jul/2014:02:51:13 -0700] [Job ???] Auto-typing file...
I [13/Jul/2014:02:51:13 -0700] [Job ???] Request file type is application/vnd.cups-pdf-banner.
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients"
D [13/Jul/2014:02:51:13 -0700] add_job: requesting-user-name="root"
D [13/Jul/2014:02:51:13 -0700] Adding default job-sheets values "none,none"...
I [13/Jul/2014:02:51:13 -0700] [Job 28] Adding start banner page "none".
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
I [13/Jul/2014:02:51:13 -0700] [Job 28] Adding end banner page "none".
I [13/Jul/2014:02:51:13 -0700] [Job 28] File of type application/vnd.cups-pdf-banner queued by "root".
D [13/Jul/2014:02:51:13 -0700] [Job 28] hold_until=0
I [13/Jul/2014:02:51:13 -0700] [Job 28] Queued on "printer" by "root".
D [13/Jul/2014:02:51:13 -0700] [Job 28] time-at-processing=1405245073
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Job 28] Sending job to queue tagged as raw...
D [13/Jul/2014:02:51:13 -0700] [Job 28] job-sheets=none,none
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[0]="printer"
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[1]="28"
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[2]="root"
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[3]="Test Page"
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[4]="1"
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[5]="job-uuid=urn:uuid:8182613b-f1d4-374a-63c5-b21bcf616364 job-originating-host-name=localhost time-at-creation=1405245073 time-at-processing=1405245073"
D [13/Jul/2014:02:51:13 -0700] [Job 28] argv[6]="/var/spool/cups/d00028-001"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[1]="CUPS_DATADIR=/usr/share/cups"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[6]="CUPS_SERVERROOT=/etc/cups"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[7]="CUPS_STATEDIR=/run/cups"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[8]="HOME=/var/spool/cups/tmp"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[10]="SERVER_ADMIN=root@DTR-Arch-Linux"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[11]="SOFTWARE=CUPS/1.7.3"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[12]="TMPDIR=/var/spool/cups/tmp"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[13]="USER=root"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[14]="CUPS_MAX_MESSAGE=2047"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[15]="CUPS_SERVER=/run/cups/cups.sock"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[16]="CUPS_ENCRYPTION=IfRequested"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[17]="IPP_PORT=631"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[18]="CHARSET=utf-8"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[19]="LANG=en_US.UTF-8"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[20]="PPD=/etc/cups/ppd/printer.ppd"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[21]="RIP_MAX_CACHE=128m"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[22]="CONTENT_TYPE=application/vnd.cups-pdf-banner"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[23]="DEVICE_URI=file:///dev/null"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[24]="PRINTER_INFO=printer"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[25]="PRINTER_LOCATION="
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[26]="PRINTER=printer"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[27]="PRINTER_STATE_REASONS=none"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[28]="CUPS_FILETYPE=document"
D [13/Jul/2014:02:51:13 -0700] [Job 28] envp[29]="AUTH_I****"
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients, printing jobs, and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 19] Returning IPP successful-ok for Print-Job (ipp://localhost/printers/printer) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 19] Content-Length: 174
D [13/Jul/2014:02:51:13 -0700] [Client 19] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=174, response=0xb90dd608(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 19] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 19] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 19] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Active clients, printing jobs, and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Job 28] time-at-completed=1405245073
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
I [13/Jul/2014:02:51:13 -0700] [Job 28] Job completed.
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:13 -0700] cupsdMarkDirty(---J-)
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 20] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 20] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 20] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Printing jobs and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 20] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 20] 2.0 Get-Notifications 315
D [13/Jul/2014:02:51:13 -0700] Get-Notifications /
D [13/Jul/2014:02:51:13 -0700] cupsdIsAuthorized: requesting-user-name="wordstrings"
D [13/Jul/2014:02:51:13 -0700] [Client 20] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 20] Content-Length: 2509
D [13/Jul/2014:02:51:13 -0700] [Client 20] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=2509, response=0xb90e7120(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 20] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 20] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 20] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 20] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 20] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 20] 2.0 Get-Job-Attributes 316
D [13/Jul/2014:02:51:13 -0700] Get-Job-Attributes ipp://localhost/jobs/28
D [13/Jul/2014:02:51:13 -0700] [Client 20] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/28) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 20] Content-Length: 828
D [13/Jul/2014:02:51:13 -0700] [Client 20] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=828, response=0xb90e6fb0(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 20] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 20] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 20] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 21] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 21] 2.0 Get-Printer-Attributes 317
D [13/Jul/2014:02:51:13 -0700] Get-Printer-Attributes
D [13/Jul/2014:02:51:13 -0700] Get-Printer-Attributes client-error-not-found: The printer or class does not exist.
D [13/Jul/2014:02:51:13 -0700] [Client 21] Returning IPP client-error-not-found for Get-Printer-Attributes () from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 21] Content-Length: 130
D [13/Jul/2014:02:51:13 -0700] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=130, response=0xb90e6fd0(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 22] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 22] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 22] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 22] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 22] 2.0 Get-Job-Attributes 318
D [13/Jul/2014:02:51:13 -0700] Get-Job-Attributes ipp://localhost/jobs/28
D [13/Jul/2014:02:51:13 -0700] [Client 22] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/28) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 22] Content-Length: 194
D [13/Jul/2014:02:51:13 -0700] [Client 22] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=194, response=0xb90e7048(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 22] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 22] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 22] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 22] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:13 -0700] [Client 22] Closing connection.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 22] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 22] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 22] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 22] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 22] 2.0 Get-Notifications 37
D [13/Jul/2014:02:51:13 -0700] Get-Notifications /
D [13/Jul/2014:02:51:13 -0700] cupsdIsAuthorized: requesting-user-name="wordstrings"
D [13/Jul/2014:02:51:13 -0700] [Client 22] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 22] Content-Length: 965
D [13/Jul/2014:02:51:13 -0700] [Client 22] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=965, response=0xb90e6fd8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 22] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 22] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 22] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:13 -0700] [Client 21] Closing connection.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 22] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:13 -0700] [Client 22] Closing connection.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 21] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 21] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 21] 2.0 Get-Job-Attributes 319
D [13/Jul/2014:02:51:13 -0700] Get-Job-Attributes ipp://localhost/jobs/28
D [13/Jul/2014:02:51:13 -0700] [Client 21] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/28) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 21] Content-Length: 120
D [13/Jul/2014:02:51:13 -0700] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=120, response=0xb90e7090(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 15] 2.0 Get-Notifications 38
D [13/Jul/2014:02:51:13 -0700] Get-Notifications /
D [13/Jul/2014:02:51:13 -0700] cupsdIsAuthorized: requesting-user-name="root"
D [13/Jul/2014:02:51:13 -0700] [Client 15] Returning IPP successful-ok for Get-Notifications (/) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 15] Content-Length: 1671
D [13/Jul/2014:02:51:13 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1671, response=0xb90e7090(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:13 -0700] [Client 21] Closing connection.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 21] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 21] 2.0 Get-Job-Attributes 320
D [13/Jul/2014:02:51:13 -0700] Get-Job-Attributes ipp://localhost/jobs/28
D [13/Jul/2014:02:51:13 -0700] [Client 21] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/28) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 21] Content-Length: 120
D [13/Jul/2014:02:51:13 -0700] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=120, response=0xb913e708(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:13 -0700] [Client 21] Closing connection.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] [Client 21] POST / HTTP/1.1
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 21] No authentication data provided.
D [13/Jul/2014:02:51:13 -0700] [Client 21] 2.0 Get-Printer-Attributes 321
D [13/Jul/2014:02:51:13 -0700] Get-Printer-Attributes ipp://DTR-Arch-Linux/printers/printer
D [13/Jul/2014:02:51:13 -0700] [Client 21] Returning IPP successful-ok for Get-Printer-Attributes (ipp://DTR-Arch-Linux/printers/printer) from localhost
D [13/Jul/2014:02:51:13 -0700] [Client 21] Content-Length: 107
D [13/Jul/2014:02:51:13 -0700] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=107, response=0xb913e6a8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:13 -0700] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:13 -0700] [Client 21] Waiting for request.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:13 -0700] [Client 20] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:13 -0700] [Client 20] Closing connection.
D [13/Jul/2014:02:51:13 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:14 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:14 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:14 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:14 -0700] [Client 17] 2.0 CUPS-Get-Printers 39
D [13/Jul/2014:02:51:14 -0700] CUPS-Get-Printers
D [13/Jul/2014:02:51:14 -0700] [Client 17] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
D [13/Jul/2014:02:51:14 -0700] [Client 17] Content-Length: 770
D [13/Jul/2014:02:51:14 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=770, response=0xb90e7088(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:14 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:14 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:14 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:14 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:14 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:14 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:14 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:14 -0700] [Client 17] 2.0 CUPS-Get-Classes 40
D [13/Jul/2014:02:51:14 -0700] CUPS-Get-Classes
D [13/Jul/2014:02:51:14 -0700] [Client 17] Returning IPP successful-ok for CUPS-Get-Classes (no URI) from localhost
D [13/Jul/2014:02:51:14 -0700] [Client 17] Content-Length: 75
D [13/Jul/2014:02:51:14 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=75, response=0xb913e6a8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:14 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:14 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:14 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:14 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:14 -0700] [Client 17] POST / HTTP/1.1
D [13/Jul/2014:02:51:14 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:14 -0700] [Client 17] No authentication data provided.
D [13/Jul/2014:02:51:14 -0700] [Client 17] 2.0 CUPS-Get-Default 41
D [13/Jul/2014:02:51:14 -0700] CUPS-Get-Default
D [13/Jul/2014:02:51:14 -0700] CUPS-Get-Default client-error-not-found: No default printer.
D [13/Jul/2014:02:51:14 -0700] [Client 17] Returning IPP client-error-not-found for CUPS-Get-Default (no URI) from localhost
D [13/Jul/2014:02:51:14 -0700] [Client 17] Content-Length: 113
D [13/Jul/2014:02:51:14 -0700] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=113, response=0xb90e7088(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:14 -0700] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:14 -0700] [Client 17] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:14 -0700] [Client 17] Waiting for request.
D [13/Jul/2014:02:51:14 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:51:17 -0700] [Client 15] 2.0 Get-Job-Attributes 42
D [13/Jul/2014:02:51:17 -0700] Get-Job-Attributes ipp://localhost/jobs/27
D [13/Jul/2014:02:51:17 -0700] [Client 15] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/27) from localhost
D [13/Jul/2014:02:51:17 -0700] [Client 15] Content-Length: 828
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=828, response=0xb913e6a8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:17 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:17 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:51:17 -0700] [Client 15] 2.0 Get-Job-Attributes 43
D [13/Jul/2014:02:51:17 -0700] Get-Job-Attributes ipp://localhost/jobs/28
D [13/Jul/2014:02:51:17 -0700] [Client 15] Returning IPP successful-ok for Get-Job-Attributes (ipp://localhost/jobs/28) from localhost
D [13/Jul/2014:02:51:17 -0700] [Client 15] Content-Length: 828
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=828, response=0xb90e7088(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:17 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:17 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] POST / HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:51:17 -0700] [Client 15] 2.0 Cancel-Subscription 44
D [13/Jul/2014:02:51:17 -0700] Cancel-Subscription /
D [13/Jul/2014:02:51:17 -0700] cupsdIsAuthorized: requesting-user-name="root"
D [13/Jul/2014:02:51:17 -0700] cupsdMarkDirty(----S)
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Returning IPP successful-ok for Cancel-Subscription (/) from localhost
D [13/Jul/2014:02:51:17 -0700] [Client 15] Content-Length: 75
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=75, response=0xb913e6a8(IPP_IDLE), pipe_pid=0, file=-1
D [13/Jul/2014:02:51:17 -0700] [Client 15] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
D [13/Jul/2014:02:51:17 -0700] [Client 15] bytes=0, http_state=0, data_remaining=0
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] GET /admin/conf/cupsd.conf HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] No authentication data provided.
D [13/Jul/2014:02:51:17 -0700] cupsdIsAuthorized: username=""
D [13/Jul/2014:02:51:17 -0700] [Client 15] WWW-Authenticate: Basic realm="CUPS", trc="y"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] [Client 15] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:17 -0700] [Client 15] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] [Client 15] HTTP_STATE_WAITING Closing on EOF
D [13/Jul/2014:02:51:17 -0700] [Client 15] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Accepted from localhost (Domain)
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] [Client 15] GET /admin/conf/cupsd.conf HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Authorized as root using Basic
D [13/Jul/2014:02:51:17 -0700] cupsdIsAuthorized: username="root"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Sending file.
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=3238, response=(nil)(), pipe_pid=0, file=20
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1190, response=(nil)(), pipe_pid=0, file=20
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] GET /admin/conf/cupsd.conf HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Authorized as root using Basic
D [13/Jul/2014:02:51:17 -0700] cupsdIsAuthorized: username="root"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Sending file.
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=3238, response=(nil)(), pipe_pid=0, file=20
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1190, response=(nil)(), pipe_pid=0, file=20
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] GET /admin/conf/cupsd.conf HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Authorized as root using Basic
D [13/Jul/2014:02:51:17 -0700] cupsdIsAuthorized: username="root"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Sending file.
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=3238, response=(nil)(), pipe_pid=0, file=20
D [13/Jul/2014:02:51:17 -0700] [Client 15] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1190, response=(nil)(), pipe_pid=0, file=20
D [13/Jul/2014:02:51:17 -0700] [Client 15] Waiting for request.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] PUT /admin/conf/cupsd.conf HTTP/1.1
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Authorized as root using Basic
D [13/Jul/2014:02:51:17 -0700] cupsdIsAuthorized: username="root"
I [13/Jul/2014:02:51:17 -0700] Installing config file "/etc/cups/cupsd.conf"...
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 16] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 18] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 17] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 19] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 21] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
D [13/Jul/2014:02:51:17 -0700] [Client 15] Closing connection.
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
I [13/Jul/2014:02:51:17 -0700] Saving job.cache...
I [13/Jul/2014:02:51:17 -0700] Saving subscriptions.conf...
D [13/Jul/2014:02:51:17 -0700] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
E [13/Jul/2014:02:51:17 -0700] Unknown directive JobPrivateAccess on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:51:17 -0700] Unknown directive JobPrivateValues on line 84 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:51:17 -0700] Unknown directive SubscriptionPrivateAccess on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:51:17 -0700] Unknown directive SubscriptionPrivateValues on line 87 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:51:17 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:02:52:54 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:52:54 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:52:54 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:52:54 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:52:54 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:02:53:34 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:53:34 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:53:34 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:53:34 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:02:53:34 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:04:25:21 -0700] [Client 18] Returning HTTP Forbidden for CUPS-Add-Modify-Printer (ipp://localhost/printers/Canon-LBP) from localhost
E [13/Jul/2014:04:27:53 -0700] [Client 21] Returning HTTP Forbidden for CUPS-Get-Devices (no URI) from localhost
E [13/Jul/2014:04:28:11 -0700] [cups-deviced] PID 1389 (dnssd) stopped with status 1!
E [13/Jul/2014:04:34:30 -0700] [Job 30] Unable to send data to printer.
E [13/Jul/2014:04:35:23 -0700] [Client 22] Returning HTTP Forbidden for CUPS-Get-Devices (no URI) from localhost
E [13/Jul/2014:04:36:12 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:04:36:12 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:04:36:12 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:04:36:12 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
W [13/Jul/2014:04:36:12 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Canon-LBP-Gray..' already exists
E [13/Jul/2014:04:36:12 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:05:01:23 -0700] [Job 30] Unable to send data to printer.
E [13/Jul/2014:05:02:08 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:02:08 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:02:08 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:02:08 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:02:15 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:05:04:30 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:04:30 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:04:30 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:04:30 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:04:30 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:05:06:44 -0700] [Client 14] Returning HTTP Forbidden for CUPS-Delete-Printer (ipp://localhost/printers/printer) from localhost
E [13/Jul/2014:05:10:04 -0700] [Client 17] Returning HTTP Forbidden for CUPS-Add-Modify-Printer (ipp://localhost:631/printers/LBP2900) from localhost
E [13/Jul/2014:05:24:39 -0700] [Job 35] ccp recv_packet error, exit
E [13/Jul/2014:05:24:39 -0700] [Job 35] ccp send_data error, exit
E [13/Jul/2014:05:27:41 -0700] [Job 38] ccp recv_packet error, exit
E [13/Jul/2014:05:27:41 -0700] [Job 38] ccp send_data error, exit
E [13/Jul/2014:05:27:41 -0700] [Job 40] Invalid printer command "Clean".
E [13/Jul/2014:05:27:41 -0700] [Job 40] ccp send_data error, exit
E [13/Jul/2014:05:27:41 -0700] [Client 15] Returning IPP client-error-not-possible for Cancel-Job (ipp://localhost:631/printers/LBP2900) from localhost
E [13/Jul/2014:05:27:57 -0700] [Client 17] Returning HTTP Forbidden for CUPS-Get-Devices (no URI) from localhost
E [13/Jul/2014:05:28:24 -0700] [Client 14] Returning HTTP Forbidden for Resume-Printer (ipp://localhost/printers/LBP2900) from localhost
E [13/Jul/2014:05:28:33 -0700] [Job 40] Invalid printer command "Clean".
E [13/Jul/2014:05:28:33 -0700] [Job 40] ccp send_data error, exit
E [13/Jul/2014:05:28:50 -0700] [Client 22] Disallowed PUT request for "/admin/conf/lpoptions".
E [13/Jul/2014:05:28:50 -0700] [Client 24] Disallowed PUT request for "/admin/conf/lpoptions".
E [13/Jul/2014:05:29:50 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:29:50 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:29:50 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:05:29:50 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
W [13/Jul/2014:05:29:50 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Canon-LBP-Gray..' already exists
W [13/Jul/2014:05:29:50 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP2900-Gray..' already exists
E [13/Jul/2014:05:29:50 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:05:30:05 -0700] [cups-deviced] PID 1224 (dnssd) stopped with status 1!
E [13/Jul/2014:05:31:58 -0700] [Client 17] Returning HTTP Forbidden for Resume-Printer (ipp://localhost/printers/LBP2900) from localhost
E [13/Jul/2014:05:32:05 -0700] [Job 40] Invalid printer command "Clean".
E [13/Jul/2014:05:32:05 -0700] [Job 40] ccp send_data error, exit
E [13/Jul/2014:05:33:26 -0700] [Job 34] Unable to send data to printer.
E [13/Jul/2014:05:33:45 -0700] [Job 34] Unable to send data to printer.
E [13/Jul/2014:05:34:17 -0700] [Job 34] Unable to send data to printer.
E [13/Jul/2014:05:37:06 -0700] [Job 40] Stopping unresponsive job.
E [13/Jul/2014:17:22:16 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:17:22:16 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:17:22:16 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:17:22:16 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:17:22:19 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [13/Jul/2014:22:19:04 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [13/Jul/2014:22:19:04 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [13/Jul/2014:22:19:04 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [13/Jul/2014:22:19:04 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [13/Jul/2014:22:19:11 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [14/Jul/2014:02:19:48 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [14/Jul/2014:02:19:48 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [14/Jul/2014:02:19:48 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [14/Jul/2014:02:19:48 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [14/Jul/2014:02:20:02 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [14/Jul/2014:02:21:39 -0700] [Client 14] Returning IPP client-error-not-possible for Cancel-Job (ipp://localhost/jobs/37) from localhost
E [14/Jul/2014:19:59:40 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [14/Jul/2014:19:59:40 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [14/Jul/2014:19:59:40 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [14/Jul/2014:19:59:40 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [14/Jul/2014:19:59:52 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:00:07:12 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [15/Jul/2014:00:07:13 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:00:07:13 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [15/Jul/2014:00:07:13 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:00:07:20 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:00:12:57 -0700] [Client 16] Returning HTTP Forbidden for CUPS-Add-Modify-Printer (ipp://localhost/printers/LBP2900) from localhost
W [15/Jul/2014:00:14:52 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP2900-Gray..' already exists
E [15/Jul/2014:02:56:36 -0700] [Job 43] Unable to send data to printer.
E [15/Jul/2014:03:01:41 -0700] [Job 43] Stopping unresponsive job.
E [15/Jul/2014:04:10:31 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:10:31 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:10:31 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:10:31 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:10:31 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:04:11:55 -0700] [Client 15] Returning HTTP Forbidden for CUPS-Add-Modify-Printer (ipp://localhost:631/printers/LBP6000) from localhost
E [15/Jul/2014:04:13:27 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:13:27 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:13:27 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:13:27 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:04:13:36 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:04:27:04 -0700] [Job 43] Stopping unresponsive job.
W [15/Jul/2014:04:31:37 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:04:32:09 -0700] [Client 14] Returning HTTP Forbidden for CUPS-Add-Modify-Printer (ipp://localhost:631/printers/LBP6000) from localhost
W [15/Jul/2014:04:32:20 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:04:40:13 -0700] [Client 18] Returning HTTP Forbidden for CUPS-Get-Devices (no URI) from localhost
W [15/Jul/2014:04:40:45 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:05:25:53 -0700] [Client 14] Returning HTTP Forbidden for CUPS-Delete-Printer (ipp://localhost/printers/Canon-LBP) from localhost
E [15/Jul/2014:05:26:18 -0700] [Job 45] ccp recv_packet error, exit
E [15/Jul/2014:05:26:18 -0700] [Job 45] ccp send_data error, exit
E [15/Jul/2014:05:26:20 -0700] [Job 46] ccp send_data error, exit
E [15/Jul/2014:05:31:03 -0700] [cups-deviced] PID 834 (dnssd) stopped with status 1!
E [15/Jul/2014:05:34:15 -0700] [cups-deviced] PID 860 (dnssd) stopped with status 1!
W [15/Jul/2014:05:39:09 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:06:03:24 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [15/Jul/2014:06:03:24 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:06:03:24 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [15/Jul/2014:06:03:24 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:06:03:25 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:07:05:16 -0700] [Client 14] Returning HTTP Forbidden for Cancel-Job (ipp://localhost/jobs/55) from localhost
E [15/Jul/2014:07:21:43 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [15/Jul/2014:07:21:43 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:07:21:43 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [15/Jul/2014:07:21:43 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:07:21:43 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:20:16:45 -0700] Unknown directive JobPrivateAccess on line 82 of /etc/cups/cupsd.conf.
E [15/Jul/2014:20:16:45 -0700] Unknown directive JobPrivateValues on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:20:16:45 -0700] Unknown directive SubscriptionPrivateAccess on line 85 of /etc/cups/cupsd.conf.
E [15/Jul/2014:20:16:45 -0700] Unknown directive SubscriptionPrivateValues on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:20:16:57 -0700] Unable to bind socket for address [v1.::1]:631 - Address already in use.
E [15/Jul/2014:21:35:49 -0700] [cups-deviced] PID 647 (dnssd) stopped with status 1!
W [15/Jul/2014:21:44:49 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:21:57:30 -0700] [cups-deviced] PID 826 (dnssd) stopped with status 1!
W [15/Jul/2014:21:58:21 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:22:00:41 -0700] Unknown directive JobPrivateAccess on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:00:41 -0700] Unknown directive JobPrivateValues on line 84 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:00:41 -0700] Unknown directive SubscriptionPrivateAccess on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:00:41 -0700] Unknown directive SubscriptionPrivateValues on line 87 of /etc/cups/cupsd.conf.
W [15/Jul/2014:22:00:41 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:22:14:57 -0700] Unknown directive JobPrivateAccess on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:14:57 -0700] Unknown directive JobPrivateValues on line 84 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:14:57 -0700] Unknown directive SubscriptionPrivateAccess on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:14:57 -0700] Unknown directive SubscriptionPrivateValues on line 87 of /etc/cups/cupsd.conf.
W [15/Jul/2014:22:14:57 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already exists
E [15/Jul/2014:22:15:04 -0700] Unknown directive JobPrivateAccess on line 83 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:15:04 -0700] Unknown directive JobPrivateValues on line 84 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:15:04 -0700] Unknown directive SubscriptionPrivateAccess on line 86 of /etc/cups/cupsd.conf.
E [15/Jul/2014:22:15:04 -0700] Unknown directive SubscriptionPrivateValues on line 87 of /etc/cups/cupsd.conf.
W [15/Jul/2014:22:15:04 -0700] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'LBP6000-Gray..' already existsOffline
Post the content of /etc/cups/cupsd.conf and /etc/ccpd.conf.
Offline
/etc/cups/cupsd.conf:
LogLevel warn
# Allow remote access
Port 631
Listen /run/cups/cups.sock
Browsing On
BrowseLocalProtocols dnssd
DefaultAuthType Basic
WebInterface Yes
<Location />
# Allow remote access...
Order allow,deny
Allow all
</Location>
<Location /admin>
</Location>
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
</Location>
<Policy default>
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
<Limit Create-Job Print-Job Print-URI Validate-Job>
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
<Policy authenticated>
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
<Limit Create-Job Print-Job Print-URI Validate-Job>
AuthType Default
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
JobPrivateAccess default
JobPrivateValues default
MaxLogSize 2000000
SubscriptionPrivateAccess default
SubscriptionPrivateValues default/etc/ccpd.conf:
# Canon Printer Daemon for CUPS Configuration Data
<Path>
# CUPS configuration file path.
# Default /etc/cups/
CUPS_ConfigPath /etc/cups/
# Log directory path.
# LogDirectoryPath /var/log/CCPD/
</Path>
# Printer entries.
# Mapping each "Printer Name" to each "Printer Device Port".
# The "Printer Name" has to be identical to the CUPS printer queue name.
#
# For example, if you prepare a printer named "LBP3200" as a CUPS printer
# queue name, and the printer is connected to the USB port "/dev/usb/lp0",
# you can use the following three lines example just by removing the
# comment symbol "#" of each line.
#<Printer LBP3200>
#DevicePath /dev/usb/lp0
#</Printer>
<Printer LBP6000>
DevicePath /dev/usb/lp0
</Printer>
<Ports>
# Status monitoring socket port.
# Default 59787
UI_Port 59787
PDATA_Port 59687
</Ports>Offline
Delete those [last] lines in cupsd.conf:
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues defaultThese are already in <Policy default> section above and are treated as errors according to your log.
Check 'LogDirectoryPath /var/log/CCPD/' directory for logs as suggested in ccpd.conf, if it does not exist, uncomment that line and restart the daemon, try to print once more.
Again, is the printer showing on cups page? Delete anything in print queue. Try printing from there a test page, what is its status?
Offline
Ok: deleted those 4 lines; uncommented that one line; restarted cups.service; tried to print, wouldn't work.
Printer shows up on http://localhost:631/printers/LBP6000.
I cleared print queue.
Tried to print test page, wouldn't do it; and its status is: "sending data to printer".
Offline
Check 'LogDirectoryPath /var/log/CCPD/' directory for logs as suggested in ccpd.conf, if it does not exist, uncomment that line and restart the daemon, try to print once more.
Two different daemons. That one from canon is responsible for communicating with cups and apparently it has problems, which is the reason I need logs r error messages from it. Check dmesg and systemd journal also.
If the printer is visible on cups page, try to modify it. See what options it has.
And list those options here.
Post:
netstat -napWhile 'sending data' status is active, disconnect the printer from usb and see if the status changes (probably need to refresh the site). Reconnect afterwards. Did you reboot in the meantime?
Offline