Software update server showing too many updates

We are having an issue with our Software Update Server on 10.6.8.  It has started showing too many updates to the clients.  For example, it will show the iTunes 10.5.1 update as well as iTunes 10.5 update if the 10.5 update hasn't been applied.  If iTunes is several versions behind, it will show all those updates too.  I also see this on Security Updates and Raw Compatibility updates. 
At first I thought this was due to turing on the ability to host Lion updates, but it isn't the case.  I have since turned on SUS on a different machine and it still does this for updates.
Anyone have a fix for this?

Same issue with our 2008 XServe.  At 3am to 8am this morning, Software Update Server went loony & downloaded over 18GB of old updates.
Naturally, after tracking down this was the culprit, I've gone in & temporarily disabled Copy all updates from Apple, and disabled Automatically enable copied updates.  To preserve our miniscule amount of broadband download quota remaining - it had shrunk to 500MB for the coming fortnight.
So we'll have to data-diet.
No idea why 18GB of old updates were downloaded out of the blue by Software Update Server.  I wonder if yesterday's release of Apple Software Installer Update 1.0 somehow adjusted the back end of update management.

Similar Messages

  • What does this mean? The mail server responded: Too many messages. Please check the message and try again.

    I use BT yahoo mail with Thunderbird 24.6.0 in the last few days i've started getting this message when sending messages:
    An error occurred while sending mail. The mail server responded: Too many messages. Please check the message and try again.
    Now sometimes the messages are sent anyway and sometimes not. If I re-send sometimes it works and sometimes not. I've contacted BT 'tech support' who tell me there is nothing wrong with them or their servers and as webmail works ok they won't help. I strongly suspect it IS a BT issue, Any clues to fix this?

    The message means BT are lying basically. I have just spent the best part of an hour on chasing what limits BT place on mail sending... the internet contains a void.
    The closest thing I can locate is a BT rep here https://community.bt.com/t5/Email/E-Mail-message-limit/m-p/1045228/highlight/true#M17523 refusing to identify what limits they impose but advising their switch to critical path has more stringent controls. AFAIK Critical path is ca mail software solution sold by OpenWave Messaging http://owmessaging.com/
    So your paying for a totally undefined service. Congratulations!

  • JSP bug? url.openStream() = server redirected too many times

    I tried something the other day that works in Java, so it should work as a JSP scriptlet, but I received an error message that others have posted elsewhere without a compete resolution. Specifically, given a URL, say u, one ought to be able to do u.openStream() and eventually read the remote page. Typically, one might want to try
    URL u = new URL("http://someserver.com/path/file.xxx")
    BufferedReader bfr = new BufferedReader(new InputStreamReader(u.openStream()))and then read bfr line-by-line. The problem that seems to be fairly common is that the openStream() call throws a ProtocolException claiming "server redirected too many times (20), ."
    What I've seen is that this exception occurs whenever the URL is outside the Tomcat server whence the call is being made; in our case, we're running "out-of-the-box" Jakarta Tomcat 4.1.29 on port 8080 of a w2k server. The code works perfectly in native Java and in JSP for a URL of the form "/anotherpage.jsp"
    Is this a bug in JSP, or in our version of Tomcat, or is there just some configuration parameter that needs to be changed from its default? As I said, I've seen similar posts (with less detailed analysis) in the Usenet newsgroups, but not one has generated a response that explains and resolves the matter.
    Perhaps a JSP guru out there could set the record straight? Thanks.
    P.S. I know that the use of scriptlets in JSP is being discouraged, but they are still supported AFAIK.

    Sure scriptlets are still supported. Most times though you can do things better with a custom tag. Why reinvent the wheel?
    Just as a suggestion, you might try the JSTL <c:import> tag.
    It basically does just this behind the scenes.
    However I don't think that will help you in the end - it will probably hit the same error message.
    My guess would be that the problem is not caused by java/JSP as such, but by a firewall, or configuration somewhere.
    The following works fine for me (ignoring broken images of course)
    <%@ page import="java.net.*, java.io.*" %>
    <%
    URL u = new URL("http://www.google.com");
    BufferedReader bfr = new BufferedReader(new InputStreamReader(u.openStream()));
    String line = null;
    while ((line = bfr.readLine()) != null){
      out.println(line);
    %>Hope this helps,
    evnafets

  • Authenticator Problem: ProtocolException: Server redirected too many times

    My program needs to login to a certain website, and I'm using Authenticator to do this. If I supply valid credentials this works fine. However, my program needs to handle the case of the user entering invalid credentials. The site responds to invalid logins by redirecting to itself. If I type the URL into a browser, I get a login prompt, and if I enter an invalid login, it just reloads the page and gives me a new login prompt.
    Since java automatically tries to login to every page with the given authenticator, it gets stuck in a loop. Login, redirected to same site, login again, etc. until this exception is thrown:
    java.net.ProtocolException: Server redirected too many times (20)
    What's the best way to handle this? I've tried adding HttpURLConnection.setFollowRedirects(false); but it doesn't seem to work (it still redirects).

    The URL I'm connecting to is http://webservices.schedulesdirect.tmsdatadirect.com/schedulesdirect/tvlistings/xtvdService
    Here is my code. Right now it's set to assume an incorrect login if there was a redirect. It works, but it's not ideal imo.
    public int grabListings(InputSource listingsSource, Calendar start, Calendar end, URL serverURL,
                   String username, String password, Progress progress){
              Authenticator.setDefault(new TVAuthenticator(username, password, this));
              int response=-1;
              try {
                   //HttpURLConnection.setFollowRedirects(false);
                   progress.progressMessage = "Connecting to Schedules Direct";
                   conn = (HttpURLConnection) serverURL.openConnection();
                   conn.setRequestProperty("Accept-Encoding", "gzip");
                   conn.setRequestProperty("SOAPAction", "urn:TMSWebServices:xtvdWebService#download");
                   conn.setRequestMethod("POST");
                   conn.setDoInput(true);
                   conn.setDoOutput(true);
                   //conn.setRequestProperty("Authorization", "digest "  + (new sun.misc.BASE64Encoder().encode(
                   //          (username + ":" + password).getBytes())));
                   //conn.setInstanceFollowRedirects(false);
                   PrintWriter pw = new PrintWriter(conn.getOutputStream());
                   pw.println(buildDownloadSOAPEnvelope(start, end));
                   pw.flush();
                   pw.close();
                   BufferedReader br = null;
                   String enc = conn.getHeaderField("Content-encoding");
                  if (enc != null && enc.equals("gzip")) {
                      br = new BufferedReader(new InputStreamReader(new GZIPInputStream(conn.getInputStream()), "UTF-8"));
                  else {
                       br = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
                  progress.currentProgress = 5;
                  progress.progressMessage = "Downloading listings";
                  response = conn.getResponseCode();
                  System.out.println(response);
                   if (response == HttpURLConnection.HTTP_UNAUTHORIZED) {
                        return GRABBER_UNAUTHORIZED;
                   if (response == HttpURLConnection.HTTP_OK) {
                        listingsSource.setCharacterStream(br);
                        return GRABBER_OK;
              catch (UnknownHostException e) {
                   return GRABBER_CONNECTION_ERROR;
              catch (IOException e) {
                   if (redirected) return GRABBER_UNAUTHORIZED;
                   else e.printStackTrace();
              return GRABBER_UNKNOWN_ERROR;
         private class TVAuthenticator extends Authenticator {
              private String username, password;
              int count=0;
              HttpGrabber grabber;
              public TVAuthenticator(String user, String pass, HttpGrabber _grabber) {
                   username = user;
                   password = pass;
                   grabber = _grabber;
              protected PasswordAuthentication getPasswordAuthentication() {
                   if (count > 0) {
                        grabber.setRedirected(true); //If we were redirected, that means the login failed
                        return null;
                   count ++;
                   return new PasswordAuthentication(username, password.toCharArray());
         }Edited by: sureshot324 on Oct 15, 2009 10:42 PM

  • SUS of OS X server 10.6.8 v1.1 offering too many updates to clients

    After updating our Xserve from OS X Server 10.6.6 to 10.6.8 v1.1 (comboupdater) our Software Update Server is totally "confused".
    For example there is a Client which needs 4 updates (according to SUS of Apple):
    Combo 10.6.8 v1.1
    iTunes 10.4.1
    Airport 5.5.3
    Remote Desktop Client 3.5.1
    Connected to the SUS of our xserve we get a list of 21 updates. The updates above are offered multiple times in different versions (for example iTunes 10.2, 10.3, 10.4 and 10.4.1). Some more updates, which are not on the list above, are also offered (Java, Safari).
    Any idea, why our Xserve behaves such strange and how to solve the problem? Thanks for help!

    Having the same issue.  Have "Delete outdated software" checked and am using the url.
         http://su.domain_name.com:8088/index.sucatalog
    In server admin.  Overview tab say 568 updates. Updates window report total 308.  When a client goes to update it software I get 4 diferent iTunes updates. 10.2, 10.3, 10.4 and 10.4.1.  If i look through the list of updates in Server admin.  iTunes 10.4.1 only shows up.  I was going to delete the catalog files and dowloads and let it rebuild.

  • Software update not showing any ios update

    Hi I am using iphone 4s with ios6.1 ,I didnt downloaded ios 7 when it got released though  i got notifications.
    As of now i like to update my ios to latest(using OTA) but i not getting any software update in iphone, even when i click on software update its just keep on loading and showing "Checking for updates" but no other result is shown even after 15 mins. Internet and wifi is working properly as i can surf pages .
    I tried to update via itunes too but my itunes needs to be updated to 11.0.3 when i click on download itunes latest ,its getting downloading to certain amount and get stucks with no more downloading.So i am not able to update ios via itunes.
    This where it stucks
    Kindly help me how to fix this..

    Its quite normal for iTunes taking time to install new version 11.1.3 as it also completly depends on your internet speed as well
    How are you trying to update iTunes?
    1) By clicking on check for updates under under tab on iTunes or
    2) or By completly uninstalling old version of iTunes and all related components from control panel add/remove programs and then trying to install fewsh copy
    Its recommended that you try the 2nd step as it takes less time when compared to first method
    Once you install iTunes you can connect the device and check if there is a update available for your iPhone.

  • Update window show "connecting to update server" and will not connect.

    Software Update window shows: "Downloading Firefox" and under the blue barber line "Connecting to the Update Server".... this has been going on for several hours and it does not appear to be downloading the update. I have been trying for several weeks with the same problem.

    I have already tried re-installing the newest version, and I still get the "update" alert, and the not-connecting.
    At the moment, I just close the window and carry on, but it's a bit annoying.

  • I have itouch (POD) A1213 model - I want to upgrade the software - it always shows the same - updated. Could you help me out in this, itunes does not show anything

    I have itouch model A1213 - I want to upgrade the software. itunes shows it is updated with 1.1.5 something, same everytime.
    I saw that repair and other things for this model have been expired - Serial # 1B7499YNW4N .
    Please advise and how to upgrade and fix the issue - it shows that wireless is working but never connects

    You have a 1st generation iPod Touch.
    It can be updated to 3.1.3 by purchase. See here: Purchasing iOS 3.1 Software Update for iPod touch (1st generation)

  • Too Many "Updated!" RSS Feeds

    Hello,
    I subscribed to the Google Sci/Tech News, which covers a lot of stuff, which is great... The problem is that if the author even corrects a typo, I keep getting the same story over and over and over... I tried making a rule to delete any "UPDATED!" articles, but that's not part of the title, it's the article's status. Is there a way that I can get an article just once? I hate having to delete all the feeds that were updated, just to find 50 more old ones show tomorrow as "UPDATED!". They automatically delete after one day, but if it's an update, it won't delete until the next day.
    Any/all thoughts welcome. Thanks.

    A lot of those feeds may have come in the initial installation (like Washington Post, if memory serves_. If you were to reset Safari, they would reappear. Deleting them is easy. Access them using the Bookmarks, Show All Bookmarks item and delete what you want as you surmised.
    As to becoming unresponsive, I am doubtful, unless there are one or two badly written. I have many more than your 50 (of course not the same ones) and these rarely give me problems. The only time is when I am at work and the proxy settings cause delays along with the poor speeds. Take note of the ones you really want, then delete them all: see how that works for you. Then add the preferred feeds one by one.
    I think some unresponsiveness may be due to the way some web pages are written, but the netowrks we use may also have delays and this could be a problem as well: not one but many factors could come into play.

  • SCCM Report for Software Updates that show the required update and its size

    Hello-
    I created multiple windows update deployments, but was looking to view a report that shows me the update name (like the KB and MS) along with the size of the update.
    Does anyone know if there's a pre-made report?  If not, does anyone know of a good query to get this info?
    Thanks!
    Andrew

    Yes, I know this is an old post, I’m just trying to clean them up.
    There is no pre-canned report for this. Yes a report can be written to collect this inform but keep in mind that a SU mind have several versions aka 1 for Winxp, 1 for Vista, 1 for Win2k3, 1 for Win2k3 Sp1, etc. if you are trying aggregate
    the data it will take a bit of fancy SQL/SSRS work to get this done. BTW Getting the size of the KB also take a bit of work.
    http://www.enhansoft.com/

  • ICal Server: logs showing "Too many matching components" errors

    Setup:
         MacMini3,1 (Core2Duo) running OS X 10.6.8 Server
    Services Enabled:
         AFP
         iCal
         NetBoot
         Open Directory
         Push Notifications
         SMB
         Web
    iCal Server:
         About 100 users in OpenDirectory, but the only thing OD is used for is to provide iCal accounts.  Our iCal clients are split evenly among native iCal client users, Thunderbird/Lightning users, and those who access via http.  One thing that may be worth mentioning is the way we use this calendar: Management has decided that they want one calendar user who gets invited to nearly every **** event that anyone schedules, an "overview" so that everyone can add this user as a read-only delegate, and then they can see what everyone at the company is up to at a glance.  So this has created one gigantic iCal account with perhaps 15 events per-day every-day for the last 3 years - and all 100 users have read access to these events.
    The Problem: error.log is full of messages like this:
    2012-01-06 14:32:16+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:32:18+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:32:40+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:32:43+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:15+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:18+0100 [-] [caldav-8009]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:41+0100 [-] [caldav-8009]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:37:44+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:42:17+0100 [-] [caldav-8009]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:42:18+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:42:51+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=/Search) error while performing digest authentication for user bob: ('DirectoryServices Error: Exception raised in file src/CDirectoryService.cpp at line 1078', -14002)
    2012-01-06 14:42:52+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=/Search) error while performing digest authentication for user bob: ('DirectoryServices Error: Exception raised in file src/CDirectoryService.cpp at line 1078', -14002)
    2012-01-06 14:42:52+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.directory.appleopendirectory.OpenDirectoryRecord#error] OpenDirectory (node=/Search) error while performing digest authentication for user bob: ('DirectoryServices Error: Exception raised in file src/CDirectoryService.cpp at line 1078', -14002)
    2012-01-06 14:47:21+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:22+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:44+0100 [-] [caldav-8012]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:48+0100 [-] [caldav-8010]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    2012-01-06 14:47:50+0100 [-] [caldav-8011]  [PooledMemCacheProtocol,client] [twistedcaldav.method.report_calquery#error] Too many matching components in calendar-query report
    I've not be able to find any documentation on this error in my google searches...  Does anyone have experience with this error, or a possible solution?
    Thanks!

    rajeshappsdba wrote:
    Hi,
    we have EBusiness suite 11.5.10.2 Solaris 5.10 Production server. Until last 3 week (for the past 1.5 years), there were max 10 archive log generation (archive size like 250mb) now which has been increased to 200 kb,152kb,1mb archives for every 1 MIN.
    I am unable to understand this behaviour. The number of users still remain the same and the usage is as usual.
    Is there a way I can check what has gone wrong? I could not see any errors also in the alert.log
    Please suggest what can be done.
    Thanks
    Rajeshredo generation is the result of the activity on the system. You've therefore either started doing much more work - which the business users might well be able to let you know about - or you've started doing you existing workload extremely inefficently, which your business users will probably have noticed. I would start in this case, not with logminer, but with the business and the application - ebusiness suite for example keeps pretty good logs of what activity has happened on the system. Id also be interested in what was changed 3 weeks ago, because something was!
    Niall

  • 10.5.7 Update not showing in Installed Updates log

    Hello everyone!
    Not sure if this is some type of problem or not but I'm checking with you guys before I do something drastic like reinstall Leopard or something.
    I installed the 10.5.7 update yesterday on my iBook G4. After I installed it, the computer hanged only showing my desktop and dock (no menu bar). After a while, I manually powered off the iBook, turned it on and saw it boot, restart, and boot back up. I updated Safari 4 beta after that. Then I checked the Installed Updates log on System Preferences and it showed the Safari update but not the 10.5.7 update. I thought there might be something wrong so I downloaded the Combo Update, repaired permissions and installed the update again. No hang this time, it restarted but it did do that boot-restart-boot again thing again. Tried it twice now and the 10.5.7 update is still not showing in the Installed Updates log even though in About This Mac it does say I'm running 10.5.7.
    Is that normal? Are others having this issue?

    Suggest you read my tip at
    http://discussions.apple.com/thread.jspa?threadID=2004922&tstart=0
    on how to get 10.5.7 to display in you installed updates
    System Preferences/Software Update/Installed Updates

  • Updates not showing up in "updates in last 30 days" list

    I just updated the iWork apps pages and numbers, 8/21, but they are not showing up as updated in the "updates in the last 30 days" list.  I have seen this happen before but I don't understand why some app updates show up there and some don't.  Also, I update the iMovie app but it downloaded entire app again, 1.97 GB.  Any ideas why software update is behaving this way?

    I am having the same problem.  My husband received the same notice for those updates and they were successfully installed and show up in the "updates in the last 30 days"    My husband just purchased his yesterday.  I purchased my computer in 2011 but I do have Mavericks installed on my computer.  Does anyone know how i can get help with this issue without galling my iMac into the store?
    Thanks
    Jeanny1

  • AppStore Show "too many HTTP redirects" .. HELP

    Im from Malysia,
    when i try to view apps in my iphone 5 apps store, it gives the ''too many HTTP redirects" message, what is the problem? someone enlighten me please.

    Hi Markc Anthony. I was using iOS 5.1.1 before this and decided to upgrade. I did a full Update to iOS 6.1 through iTunes. I used one of my iCloud backups to bring back all my apps and Data. Since then I've been getting a message saying "Too Many HTTP Redirects" on the App Store.
    I troubleshooted the steps by doing each of these steps:
    I tried different Sections of the App Store and all gave me the same message "Too Many HTTP Redirects"
    I went ahead and Check iTunes App and it looks like it has no issues.
    I went to Settings\iTunes & App Stores and clicked on my Apple ID and signed out. I made sure every other switch was off. Then I went back to the App Store and still got the same message.
    I went ahead and turned off the iPhone by holding the button at the top right corner and when prompted I slided the "slide to turn off" button. I waited about 5 seconds and then got to hold the top right button again until the Apple Logo flashed again. I still got the same message when I went to the App Store.
    I went back to Settings\iTunes & App Store and signed back in. The App Store would still give me the same error message.
    I finally gave up and did a full reset using iTunes again. I plugged in my iPhone clicked on its icon on iTunes and choose the button "Restore iPhone". I did not recovered from a backup this time and instead set it up as new. That actually worked. I am back to using my iPhone with no issues.
    You all can try recovering from backup it might actually work, but I am having a feeling that the error may have to do with recovering from a backup using iCloud. You can try it again, but make sure you let it finish and do not stop it (There is a way to stop it).

  • Why can't i connect with the apple update server while I am updating my phone?

    I was updating my phone while errors came up and finally I got rid of those errors. Now there is this message saying "the iphone cannot be restored at this time,because the iphone software update server could not be contacted or is temporarily unavailable, please try again later ". what should I do?

    See the answer in your other post.

Maybe you are looking for

  • Ipod not showing up on itunes or computer

    My ipod is not showing up on my itunes or one my computer. When I plug it in, it comes us as "do not disconnect" on the ipod, but nothing happens on itunes, or on my computer. How do I get it to come up?

  • Unable to connect to wireless network after 10.4.8 update

    Hi Guys, I use Macbook which I have just updated to 10.4.8. After doing the update I can no longer connect to my wireless network. On 1st boot Airport asked to update the keychain. I said yes. Selecting my network, and entering the WPA key results in

  • Price condition display in VA01 and VA02

    Hi Friends, In our organization, we want that some of the users could not change the price conditions in t. code VA01 and VA02. Please help us. Thanks Ganesh

  • Account Key & Accural in Pricing procedure

    Hi SAP, What is the difference of Account key in SD & Accural Key in MM  pricing procedures. regards, Santosh Kumar

  • Playing old games on OSX

    Does anyone know if there is something I can get to play old Mac games. I really want to play my MDK again. I have a macbook Pro.