Server Admin doesn't show Print Queue status

When I look at my print queues (all 17) under Server Admin, it shows queue name, # of jobs, shared via (IPP & SMB), and printer kind (HP LJ 1022n and HP LJ P2015). It has a column for status, but this is always 100% empty/blank. Also, if I go to the Jobs tab, then I can pick "Jobs on Queue" for all the queues, but the line below for "Queue Status" is again always blank.
Is there something I can do to get this info to show up in Server Admin? I know that CUPS knows the printer status, as I can go to localhost:631 and see the status in the Printers list and the Jobs list.
It isn't life threatening. It is just annoying to have to go to the web page when Server Admin -almost- gets me everything I need to diagnose a teacher's printing problem remotely.

Hi Keith
You could always consult the Print Service logs. If you set the logging levels to Debug or Debug2 you should get everything. You have to be a bit careful with this as the log can get quite large. Other than that I don’t know of anything that is available out of the box.
There may be others that can suggest a 3rd party solution that gives you the appropriate feedback you are looking for. Opening port 631 should not be that much of risk I would have thought?
Tony

Similar Messages

  • Server Admin Doesn't show info for Software Update Service

    In server admin, under the settings and available updates, I see a list of available updates, but they are labelled with the hash code for the update, not the name, and the info panel doesn't show any information like it should. We have our corporate firewall configured to allow connections to the server apple uses for this service so that we can get the updates. Any suggestions?

    That option is only available after upgrading to iOS 5. It appears you have a 2nd generation unit, which can not be upgraded beyond iOS 4.2.1.

  • Windows Server 2008 doesn't show install date

    Windows Server 2008 doesn't show install date for applications and update.<br /><br />It only shows "Unspecified", at the very top.<img alt="" src="http://social.technet.microsoft.com/Forums/getfile/286394"
    /><img alt="" src="http://social.technet.microsoft.com/Forums/getfile/286395" />

    In Programs and Features, you can have more options by right click on the tabbed window showing Name, Publisher and Installed on. May be you can check that once otherwise try to reinstall the features using Turn Windows features on /off.

  • Task manager on windows server 2008 doesn't show the memory from newly installed 2nd CPU

    Hi,
    We have a dual processor dell power edge t410 running windows server 2008 (64-bit), standard edition. I have recently added a 2nd xeon x5560 quad-core processor (first one is also x5560 with 32GB (4x8) memory) and 16GB ram (4x4). Seems like the new CPU is
    recognized in BIOS, Dell's server admin app and task manager shows 16 vertical boxes (hyper threading is on both cpus) under Performance->CPU Usage History and these boxes show processor load spread relatively evenly across all threads. On the other hand
    the additional memory for this CPU is visible in the BIOS, Dell server admin but not in the task manager, which still shows the 32gb under performance->physical memory. Rammap also shows only 32GB.. Currently running proprietary processes that along with
    the metafile and windows own ring up nearly 30GB, which in turn causes system latency for GUI and apps, as if the additional 16GB are not there...
    So the questions are these:
    1) does anybody know why the added memory doesn't show up in the task manager / rammap?
    2) if the new memory doesn't show up, does this mean that Windows does not use it (which should be impossible if the CPU is utilized, unless I am wrong about windows using the cpu..)?
    Thank you,
    - Kiril

    Thanks for the reply Ravikumar,
    Unfortunately this solution is inapplicable to my version of the OS as it is 64-bit and not 32-bit. Do you have any other ideas?
    Best,
    - Kiril
    Yes, PAE((Physical Address Extension) is supported only on 32-bit versions of the
    Windows, operating system 64-bit versions of Windows do not support PAE. For information about device driver and system requirements for 64-bit versions of Windows, see
    64-bit System Design. The Address Windowing Extension (AWE) API is supported on 32-bit systems. It is also supported on x64 systems for both native and Wow64 applications.
    Useful link for Address Windowing Extensions is:http://msdn.microsoft.com/en-us/library/windows/desktop/aa366527(v=vs.85).aspx
    If the above info does not help you, please contact dell as suggested by
    Shaon Shan.
    Regards, Ravikumar P

  • Print Queue Status Monitor with Email

    I have a brand new Windows Server 2012 R2 Datacenter virtual server that is setup as a print server.  I saw the custom filters in the Print Management console but found out that notifications only work with that console open.  Since I'm not logged
    into that machine all the time, I need a powershell script that can do what the custom filters do in the Print Management console.  Here's what I'm looking for:
    1. When the print server starts the script starts.  This script should always stay active.
    2. The script polls the print queues for a change in status to anything other than Ready every 5 minutes or so.
    3. If the printer name contains "CC2", then email certain people the status of that particular printer.  Only email them once so as to not spam them with constant emails (maybe 1 email per day per status change).
    So basically I'm looking to email my customer service department if one of their printers goes to a status of anything other than Ready.  Is something like this possible with Powershell?

    My scripts compares the customer service printers (printer names starting with CC2) status every 5 minutes.  If the status has changed and there are Offline printers then customer service gets an email.  I'm using Task Scheduler to start the script
    at 6:00am every day and the script will quit around 11:00pm.  It's not very elegant but it will get the job done.  Thanks for all your help!
    # Time limit when the script expires
    $Limit = (Get-Date).AddDays(1)
    $SleepSeconds = 300
    $PreviousStatus = @()
    while ((Get-Date) -lt $Limit)
    $CurrentStatus = Get-Printer -computername SERVER | Where {($_.PrinterStatus -ne "Normal") -and ($_.Name -Match "CC2")} | Select Name,PrinterStatus
    if ($CurrentStatus)
    if (Compare-Object $CurrentStatus $PreviousStatus -property Name,PrinterStatus)
    # Establish Connection to SMTP server
    $a = "<style>"
    $a = $a + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
    $a = $a + "TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;}"
    $a = $a + "TD{border-width: 1px;padding: 0px;border-style: solid;border-color: black;}"
    $a = $a + "</style>"
    $filedate = get-date
    $smtpserver = “smtp.gmail.com”
    $msg = new-object Net.Mail.MailMessage
    $smtp = new-object Net.Mail.SmtpClient($smtpServer )
    $smtp.EnableSsl = $True
    $smtp.Credentials = New-Object System.Net.NetworkCredential(“[email protected]”, “password”); # Put username without the @GMAIL.com or – @gmail.com
    $msg.IsBodyHtml = $True
    $msg.From = “[email protected]
    $msg.To.Add(”[email protected]”)
    $msg.To.Add(”[email protected]”)
    $msg.To.Add(”[email protected]”)
    $msg.To.Add(”[email protected]”)
    $msg.To.Add("[email protected]")
    $msg.Subject = "Printer Status Errors $($filedate)"
    $msg.Body = Write-Output -InputObject (Get-Printer -computername SERVER | Where {($_.PrinterStatus -ne "Normal") -and ($_.Name -Match "CC2")} | Select Name,PrinterStatus,Comment,Location,Portname) | ConvertTo-Html -Head $a
    $smtp.Send($msg)
    $PreviousStatus = $CurrentStatus
    Start-Sleep -Seconds $SleepSeconds
    if ((get-date).Hour -eq 23) {Exit}

  • Server 2008 Fax Server console doesn't show outgoing faxes

    We are sending faxes from Windows XP clients through our Server 2008 Fax Server. Most of the faxes are sent, however the Server Fax Console never shows any faxes as being sent. The Fax Console does show the Incoming faxes that have been received. What can I do to get a log of the outbound faxes so we know they were sent successfully?
    Thanks.

    Hi,
    Thanks for the post.
    Please perform the following steps to check it:
    Open Fax Service Manager.
    In the left pane, right-click Fax, and then click Properties.
        3.  On the Archives tab, please check the "Archive all faxes to this folder" item, and the sent faxes will be stored in this folder.
    In addition, you could also use the following method enable activity logging for a fax server.
    Open Fax Service Manager.
    In the left pane, right-click Fax, and then click Properties.
    On the Activity Logging tab, select the Log incoming fax activity check box to start logging incoming faxes and the
    Log outgoing fax activity check box to start logging outgoing faxes.
    You should receive an alert that the Fax service needs to be stopped and then restarted. If you do not, then right-click
    Fax, click Stop, right-click Fax again, and then click
    Start.
    Thanks,
    Miles
    This is not a fix for this issue.  I would hardly call this a workaround.  We have admins that need to address fax sending issues when the faxes don't go through.  Seeing the global outbox and sent items is a must for us.  It needs to be
    available from the fax console so the admin (secretary types, not IT admins) can review the issues.

  • Logging into 'Other' (Server) login doesn't show though bind does

    Working on an OS 10.5.6 Advanced server that was set and users were only using AFP, but no DNS and Open Directory. So carefully went through and set these up.The standard testing 'checkhost' and all, shows DNS is working correctly. Client computers had the DNS pointer changed and went through Dirctory Utility and did the binding. Server indicates these computers are bound. One of four client computers works as expected, "Other" shows as a login choice and can log into the server. All the different client accounts work throught this station. Three computers show as Bind being setup, but the "Other" login simply doesn't appear. All but one are running 10.5.6, with one computer running 10.4.11. All three computers that show as bound, can sign in via Go > to the AFP share(s) just fine, only the server/network login doesn't appear. Have checked everything we can think of and need further suggestions on how to resolve this issue? - Lewis

    LDAP is indeed listed and home folders have been created in an Auto-Mount directory. Everything appears just like the computers on this network that are binding OK and show an "Other" login. Now I have noticed one thing... every so often when I open Directory Utility - it shows the staus as "nonresponding" with a red dot. If I hit "Connect" it changes to a green OK dot, but upon logout/login the "Other" is still not a choice. Ran Disk Repair, Repair Permissions, re-ran the combo updater of the current system - 10.5.6. Ran the unbind on the computer and removed computer from Workgroup manager... still no joy. Just do not see a way to get a reliable Bind and network login? Bind seems to be happening... but "Other" as a network login just doesn't show.

  • Server Admin iCal Overview shows info as "Not Available"

    Next to each topic (Accounts, Calendars, Groups, Locations, Resources, Events & Todo Lists) Server Admin displays "Not Available". The iCal server is running and users are interacting with it OK. The disk usage is 0.0B, there are about 10,000 events.
    Since this happened there have been problems accessing calendars via the web (hardly used so not sure what others are seeing).
    I've checked & fixed the POSIX permissions for the /Library/CalendarServer hierarchy. I tried deleting the .db.sqlite files & letting iCal repopulate them.
    All the settings are intact and haven't changed. The logs show no culprit entries, just the usual. /etc/caldavd/caldavd.plist does not appear to be corrupted.
    Ideas?

    A hard drive started having RAID errors around 5/1, so the server is being rebuilt from scratch.
    I'm still curious if anyone knows the how & why of this issue.

  • Why is my HP Deskjet 970C  Print Queue Status  "Stopped" and won't change?

    I recently installed 10.5 Leopard. Hooked up my old HP-970C Deskjet. Used the link: http://www.linuxfoundation.org/en/OpenPrinting/MacOSX/foomatic to get the new HP Driver as recommended. Set up printer with this driver.
    Each time the print command is given (Word Doc or .pdf file) nothing happens. The job is shown in the Print Queue with the Status says "Stopped." Clicking the resume button does not start the printer. Twice more and I get a message that says "Operation Could not be completed. client-error-not-possible."
    Any thoughts on how to work around this?
    Tried the six steps listed at: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01462601&lc=en&dlc=en&cc=us &lang=en&softwareitem=bi-54970-4&os=219&rule=5837&product=3435684
    Even those great steps did not help. Any other ideas? Thanks!!!

    The short answer is that you have an older HP printer, and have just been bitten by HP's abandonment of older printers on both Leopard and Vista.
    The foomatic drivers should work, though; I used foomatic drivers on my old HP MFD for years. They gave better output than the ones HP shipped, and actually worked in Leopard. I put the HP onto a machine running XP because scanning didn't work anymore on either Vista or Leopard and HP had no intention of fixing it.
    When I see the error you quoted, there are usually three possible causes:
    1 the printer itself has a hardware problem. The fix for that is to buy a new printer, it's not economic to repair a DJ970.
    2 the HP drivers are present on the system and are interfering. The fix for that is to remove the HP drivers and just have the foomatic drivers installed.
    3 the USB cable is bad or loose. The fix for that is to get a new USB cable and make sure that it is securely plugged in.

  • Server Admin is not showing all users in "Show Users

    I've discovered that a previous upgrade from Tiger to Leopard in 2009 has lead to newer users not be displayed Server Admin 'Show Users and Groups'.  New groups display fine.
    We upgraded again to Snow Leopard a couple of months back and so are running the latest admin tools.
    I really can't pick why these accounts aren't showing so any points would be appreciated.
    Thanks.

    After numerous reinstalls failed to solve this problem, I discovered that on my system, it has to do with using an external monitor (via DVI port). When I drag the Firefox window from my laptop screen to an external monitor, "Show All Bookmarks" is suddenly empty. Dragging the browser window back to the original display (laptop) does NOT fix it. Firefox must be RESTARTED on the original display. When Firefox re-opens, "Show All Bookmarks" functions normally again.
    WORK AROUND: the only way I can view "Show All Bookmarks" on my external monitor is to first open both the browser and "Show All Bookmarks" windows on the original display, drag BOTH windows to the other monitor and be sure to leave the "Show All Bookmarks" library window open in the background. If I forget and close it by accident, the problem happens all over again.

  • Server admin doesn't display info

    I'm experiencing slow network logons for our 10.6.8 Mac Mini server (circa 2009). 
    I can't get server admin to display any info - the fields are blank - both logged on locally and remotely. 
    I looked in some logs, but don't know which ones are useful as a starting point for this issue.
    Can you help point me in the right direction?
    Thanks

    Do you get any errors or indications that changes are required when issuing the following (non-destructive, informational) Terminal.app command?
    sudo changeip -checkhostname
    Is the domain a real and registered domain, or is it a ".local" domain?
    Is the configured server at a static IP address?  (Either a static address on a private LAN, or a public static address.)
    Is there exactly one DNS server or one pool of DNS servers, and is that DNS server or pool local?  (Are there any references to other non-local-LAN DNS servers?)
    Logs?  Assuming the server isn't all that busy when you test, launch Console.app, start your connection test with the Server Tools, and look at the aggregate log display for errors.  (If it's busier box and can't be quiesced for testing, then yes, you can have to drill down into individual logs, or grep -R the /var/log directory for server or such...)  But without knowing what (else) is wrong, it's difficult to predict.

  • Server Admin doesn't work

    Server Admin never connects to the server. If I put in the localhost, 127.0.0.1, the IP address (either), or the FQDN as the server name it just spins. It never connects.
    In the log I see:
    Sep 17 14:59:02 obcer42 servermgrd: [931] ServerManager _SMSocketRead(fd=10) timed out (count=-1,remaining=5)\n
    Sep 17 14:59:02 obcer42 servermgrd: [931] ServerManager SSLRead/SMSocketRead(IPADDRESS1:fd=10) failed with -36 (errno=35)\n
    Sep 17 14:59:02 obcer42 servermgrd: [931] ServerManager _SMSocketRead(fd=30) timed out (count=-1,remaining=5)\n
    Sep 17 14:59:02 obcer42 servermgrd: [931] ServerManager SSLRead/SMSocketRead(IPADDRESS2:fd=30) failed with -36 (errno=35)\n
    Where IP_ADDRESS1 and IP_ADDRESS2 = two different IP addresses on the box.
    Any ideas?

    127.0.0.1 is the address that loops you back to the same Mac. It should work, but ONLY when you are sitting at a keyboard directly connected to the Server computer.

  • ITunes doesn't show anymore downloaded status of apps

    After I bought an app in iTunes, on the small tab beside the app, instead of the price showing 0.99, or whatever the price was, it used to say 'downloaded'.
    This was helpful, so I knew right away which app I have bought and which I haven't, so I wouldn't need to download it again.
    But now, it doesn't show this anymore. That little price tab shows only the price of the app, no matter if I already bought it or not. So if I forget that I already downloaded a certain app, I have to download it again (not pay for it, but anyway I waste my time and my monthly GB Internet usage).
    What I did was, I just pressed the 'reset iTunes store cache' and 'reset all dialog warnings', from Edit/Preferences/Advanced Preferences, starting from the Edit tab of the iTunes.
    What can I do now, to have again the specification 'downloaded' on the little tab of the already bought apps?

    I am trying to get Apple support, but the first answer was total wrong.  Apple support thought I want to remove purchase:
    "I understand you would like to remove an iTunes Store purchase and I will do my best to assist you.
    To hide or show items on your Purchased page, follow the instructions in these articles:"
    I replied it with a more detail info.  I will let you know if I get the answer from them.

  • Cannot print or show printer queue

    Hi,
    I have got quite a big problem with my printer application. I am only using network printers over smb here:
    Basically if I print something nothing happens. I notice a program to appear in the Dock and immediately disappear again. I can not say if this is the printer queue because it happens too fast. As a result nothings gets printed at all.
    When I try to open the printer queue program from the system settings in order to have a look what might be wrong the same thing happens: The program opens and closes at once in the Dock. Else nothing.
    In the activity monitor the process is just not there, not even if I keep it open trying to print or opening the printer queue. Probably crashes instantly.
    Restarting the computer does not help. I've got the latest software updates but I cannot nail the problem down to a specific version because the last time I printed is like 3 months ago. (paperless and stuff like that ;-))
    So that is my problem. If you have any hint I'd be very pleased.
    Thanks
    Stefan

    Hi there.
    One suggestion would be to pause the print queue. Then when you try to print you can see if the print job is being created and held in the queue.
    If the print job fails to be created then you know that the application is not creating the job correctly. Does this occur with all applications?
    If the print job is appearing in the held queue but errors when you resume the print queue then it would suggest something is wrong with the printing system. You could try removing the network queue and adding it again. If this does not help then I suggest a reset of the printing system - process described below. The reset will remove all of your printer queues in Print & Fax but not remove your printer drivers, so you will only need to add your printer queues again.
    *How to Reset the Printing System*
    1. Open System Preferences > Print & Fax
    2. Move your mouse over the Printers list
    3. Hold down the Control button and click the mouse
    4. Click the "Reset printing system ..." popup
    5. Restart your Mac

  • Server Admin - File Sharing - Show "invisibles"

    Leopard Server, v10.5.7 - Server Admin, File Sharing: Would like to be able to see system directories (such as /var, /bin, /private) in the Volumes::Browse window. I find it odd that "mach_kernel.ctfsys" =is= visible but other system files and folders are not. Is there any way to increase the verbosity of the Volumes::Browse window?
    Thank you in advance.
    B. Bodger
    Oklahoma City, OK

    Thank you for your reply.
    We were toying with the idea of giving a few admins remote access to /etc/ and/or /dev/ without them having to access via ssh. Not a very big deal.
    B. Bodger

Maybe you are looking for

  • Lost window, using published application on server 2012, when access it via web remote.

    Hi, We use an edi software installed on a Server 2012. When we use this software accessing the server by Remote Desktop, everything works normal. When we use the same software accessing the server by web access, (...softname/RDWeb/Feed/webfeed.aspx)

  • Import PO Invoice Verification

    Hi, As for Local PO the flow is PO : ME21N,  J1IEX1 PART1 ,  MIGO,  J1IEX PART2, MIRO But for Import PO what is the  required FLOW  and why the MIRO is done before MIGO and J1IEX1 part1 FOR IMPORT MATERIAL . regards, zafar

  • Internet Explorer cannot display the webpage

    Hi I've had the trial version working for 5 months and yesterday it stopped working. Can't preview the view layout or run the application getting the same error in internet explorer. The only thing I can think of is that I've installed Microsoft Virt

  • Please help me. ipod not registering

    Hi My ipod charger broke so I havnt used my ipod for a while. When I pluged in my ipod to my computor it said that it was corrupt and needed to be restored. So I tried that and my computor crashed. Now when I plug it the do not disconect thingy comes

  • How to call Siebel wsdl from EBS R12

    Dear Gurus, Is there anyone knows how to call Siebel wsdl file generated from EBS R12, directly without using middleware/weblogic ? Please help Thanks in advance Eldin