Very long applet load time with JRE 1.5 - HELP!!

My applet is taking forever to load and init using JRE 1.5.
With JRE 1.4.2_06 it takes a matter of seconds to load and init. The same 1.4.2_06 compiled code running on JRE 1.5 takes ~ 17 minutes!!! Is anyone having a similar experience? I've seen other similar posts related to past plug-in versions, but nothing related to 1.5. The same problem occurs if I compile the code with JDK 1.5 and run with JRE 1.5.
This extreme example happens on a 533 MHz Win2000 pc with 524 MB RAM.
A desktop with 3 GHz P4, 1 GB RAM running WinXP SP2 doesn't have an appeciable delay (a couple seconds).
A laptop with 2.21 GHz AMD Athlon 64, 512 MB RAM running WinXP SP1 takes about 8 seconds to load the applet.
I don't believe it's running yet in the init method during this long wait time. I don't see any print statements, but the basic layout of it is the following:
     public void init()
          applet = this;
          // Setup Look and Feel
          try
               UIManager.setLookAndFeel (UIManager.getSystemLookAndFeelClassName());
          catch (java.lang.ClassNotFoundException e) {System.err.println("Error setting Look and Feel.");}
          catch (javax.swing.UnsupportedLookAndFeelException e) {System.err.println("Error setting Look and Feel.");}
          catch (java.lang.IllegalAccessException e) {System.err.println("Error setting Look and Feel.");}
          catch (java.lang.InstantiationException e) {System.err.println("Error setting Look and Feel.");}
          // Setup background coloring
          HeaderFile.bgcolor5 = UIManager.getColor("Panel.background");  //new Color(212,208,200);
          HeaderFile.bgcolor6 = UIManager.getColor("desktop");
          applet.getContentPane().setBackground(HeaderFile.bgcolor6);
          // Splash screens
          urlSplash = getURL("AesGuiLarge.jpg");
          ImageIcon_Splash = new ImageIcon(getURL("OmniViewSplash_noWords.jpg"));
          ImageIcon_OmniView = new ImageIcon(getURL("OmniView_wordOnly.gif"));
          // Setup Intitialization panel
          final InitializationPanel initPanel = new InitializationPanel();
          contentPane = getContentPane();
          if (preRelease == true)
            Label label = new Label("PRE-RELEASE");
            label.setFont(new Font("SansSerif", Font.BOLD|Font.ITALIC, 11));
             JPanel panel = new JPanel();
               panel.setBackground(Color.yellow);
               panel.add(label);
               contentPane.add(panel, BorderLayout.SOUTH);
          contentPane.add(initPanel, BorderLayout.CENTER);
          Thread initialize = new Thread ()
               public void run()
                        System.out.println("\n***** Initialize thread start *****\n");
          initialize.start();
     }Any help would be appeciated.

I've discovered where the bulk of the delay is coming from.
I have 23 default *.properties files in my project. These files contain the English translation of all displayable strings for Internationalization (I18N). The default naming convention is "text.properties".
For those who don't know I18N, here's a brief synopsis of what happens. ResourceBundles are used to get the strings that are displayed. if your local computer's language/regional settings are English/US, then when the ResourceBundle searches for the file that contains the strings it first looks for a file named text_en_US.properties. If that file is not present or the string is not located, it then looks for a file named text_en.properties. If that file is not present or the string is not located, it then looks for the default file named text.properties. My properties files are all default named.
I used the Java Console tracing capability to see what was happening and this is what I saw. This is happening for every .properties file:
Using JRE 1.4.2_06:
Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with no proxy
Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with no proxy
Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with no proxy
Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with no proxy
Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with no proxy
Using JRE 1.5:
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with proxy=DIRECT
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
network: Server http://dummy.com/demos/AES/1_4_2_06/fax.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with proxy=DIRECT
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with proxy=DIRECT
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en.properties requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with proxy=DIRECT
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with proxy=DIRECT
network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
None of the files in these traces exist. JRE 1.5 is attempting to set cookies on each of these non-existent files. There is approximately a 5-8 second delay that occurs before each attempt times out. So for each of my 23 properties files this translates to 575-920 total seconds (or 9-15 minutes).
I tried turning off cookies, but the timeout still occurs.
Can anyone explain why this is happening and how to fix it?

Similar Messages

  • Long bios load time with gtx970 - maybe need gpu bios update?

    I just installed my gtx 970 and it all runs fine.  However I get a very long bios load time on boot up.  Normally it only takes a second or two with a single beep.  With the 970 though I get the single beep and the bios load screen, but it sits at that screen for a long time, then another beep, waiting, eventually another beep, and after some more waiting windows will start to load.
    My problem is that now I can also no longer get in to the bios. I have tried even plugging in a ps/2 keyboard to see if maybe that could get me in.  The farthest I get after hitting delete to enter is I just end up at a black screen. My mobo has no onboard gpu output, so its not like its trying to go to a monitor I cant see. 
    So would any gpu bios updates fix this? I am currently at the latest bios for my board which updated it to a uefi bios.
    cpu: i7-2600k (yes Im aware I will only have pcie2)
    mobo: gigabyte z68 d3-b3
    ram: 16gb
    gpu: MSI gtx 970 Gaming (previous was an evga gtx 660)
    SN:602-V316-050B1412042805

    Quote from: lucianobessa on 02-January-15, 10:48:08
    Under bios features, is there a option called boot mode select?
    Try to switch to "legacy only", save and reboot.
    Are you using HDMI connector? Try to use DVI.
    Sorry for my english!
    I dont remember seeing any boot mode select.  As far as connections I am using all DVI for my monitors. I have also tried only having a single one connected in case there were issues with multiple monitors
    Quote from: Svet on 02-January-15, 10:56:46
    with those old boards, you need ME8 to works with modern cards
    ask gigabyte support about it
    Thanks Ill try emailing them.  Is ME8 some other bios? Just never heard of it before
    -edit
    After reading up it looks like it was just a revision to allow ivy bridge devices, which happened a long long time ago on a bios update:
    Support Intel 3rd generation 22nm E1 stepping CPU (Ivy bridge)
    Improve power on issue
    Update ME / CPU code
    Unless theres something else Im missing about ME8

  • Very long portal load time in IE

    Hi,
    I have few users who reported that our portal was running really slow.  Using HttpWatch (http trace tool), I learned that their browsers were taking three to four times longer to load portal pages than it should take.  HttpWatch also showed that more than half of transaction time was spent on waiting to get response after sending a request to load innerpage inside the framework page.
    Now, it gets confusing.
    Only these few users are having this problem.  They have the same problem even when they logon to someone else's computer and visit the portal.  Others who log on to these users' computer and visit the portal do not have this problem.  I think this eliminates problem on the clients' computers, network, portal server, and portal configuration.
    I don't know where to look to trouble shoot this.  Did anyone have a similar problem?  Does anyone have suggestions on where to look to troubleshoot this?
    Thank you.
    Joon,

    Hi,
    It could be that these users have different Portal Desktops.
    Normally Light Desktops loads faster than Default Desktops.
    So look into Portal rules to check if these users are assigned different desktops.
    http://help.sap.com/saphelp_nw70/helpdata/EN/4b/29cf122f414721964269e1b675d62c/frameset.htm
    Regards,
    Praveen Gudapati

  • Thanks to this community's help, I solved my adware problem. (Hats off to Thomas, The Safe Mac).  Now my Safari pages are taking very long to load-sometimes not at all.  HELP!

    Last night I got the community's help in eliminating [I think] my adware problem. THANK YOU Thomas and Mike! Today my Safari webpages are loading at a snail's pace, and sometimes just get stuck.  What's the problem now?

    HI Robert ...
    Might be a cache or extension issue...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, try troubleshooting Safari extensoins.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Long Image Loading Times From LR to CS6?

    Hello Folks,
    I seem to be experiencing very long image loading times when loading an image into CS6 from LR4.
    When I right click an image in LR4 and select edit-in CS6, CS6 immediately starts up, and loads. But after CS6 is fully up on my screen, I get
    a spinning ball first, then spinning white/grey circles, until my selected image appears within CS6.
    I am operatinng with an iMac 27 2.8G with 8G of memory and using SL 10.6.8 I have about 300G of free space on my HDD.
    Any ideas or suggestion or settings in CS6 I might need to look at would be appreciated.
    I never experienced this issue as I recall in CS5.
    Jim

    Curt,
    Thanks, yes I do have the latest version of Snow Leopard, which is 10.6,8 and it is updated with all of the latest updates in drivers.
    Jim

  • Interactive form takes very long to load

    Hi Gurus,
    I have developed an interactive form with several Dropdowns and text fields. I am using WebDynPro ActiveX drop down and binded it to context which is of SimpleType and populated from backend. My form is taking very long to load and once I save it locally the also it takes too long to open.
    Below is the config used:
    - Adobe Acrobat Reader 8.0
    - Adobe Lifecycle Designer 7
    - NWDS 7.0.14
    - xACF ver 711_0
    - J2EE server 2004s SP12
    Previously I was using WDP Native Dropdowns and popuulated then without simple type, that time form was loading finely (in 10 sec).
    Please help me out in resolving this issue.
    Regards,
    Arafat

    Dear Arafat,
    Have you resolved it?
    I met the same problem with you.
    If you had resolved, please help me.
    Regards,
    Jiandong

  • Airplay mirroring is taking very long to load and is only showing one static view then it crashes

    airplay mirroring is taking very long to load and is only showing one static view then it crashes.
    I am tring to mirror ipad2. I just upgraded to IOS5. Is it an apple TV problem or an Ipad2 problem?
    What should I try to fix the problem?

    I think i found the solution.  I got mine working. 
    Reboot the iPad by holding down the Home button and power button at the same time for 6 seconds.  The screen will turn black, apple logo will appear, and it will restart. 
    Then restart the Apple TV.  (I just unplugged the power)
    Then restart your wireless router.  (again, I just pulled the plug on it)
    After doing that, i tried the mirroring again, and it worked great.  As soon as I turned it on, it appeared on my TV and is working very quickly.  (well, everything I do on the iPad is delayed on the TV by half a second)

  • FF opens ok but why does it take so very long to load my home page.I have new laptop,windows 7.

    FF opens ok but why does it take so very long to load my home page.I have new laptop,windows 7. Can anyone suggest a solution please.
    == This happened ==
    Every time Firefox opened
    == yesterday for no apparent reason.

    I had this problem once before, And now again.
    The only thing I did different, was Instead of shutting down my computer, I click on Log off User.
    Ever since then I have noticed windows XP is taking longer to load, and so is Firefox.
    Hope this clue helps.
    -V-

  • Extremely long song load time

    Hi all,
    I have a couple files I'm currently working on that take very long to load, one of them over an hour. I'm using 5 or 6 audio instruments, some have the "Play" plugin, which may contain a few patches on different midi channels. Also, I have an Ivory Piano plug on one of the channels and 3 or 4 audio tracks. There are no frozen tracks.
    Any ideas why it would take so long to load these files? I don't feel I'm using many plugs since I will need to use more for more complex projects.
    Thanks,
    Cobb

    Hi,
    Thanks for responding. Yes, I have no choice but to wait. I have to get the song loaded so I can work on it.
    I have a lot of drives, but all the files related to the project are on a fast internal drive. The next step is to disconnect all my drives to see if that helps. Maybe one of the plug-ins is causing the problem. I can load the file without plugs and maybe try turning some off to see if the file loads.
    I force quit Logic and tried again. It's been 50 min so far and the arrange window still hasn't loaded. It will load eventually... I hope. When it does, I'm going to bounce all the software instruments to audio and start a new file.

  • HT2731 It's taking me very very long to load all my apps back to my phone. Can I do them individually?

    It's taking me very very long to load all my apps back to my phone. Can I do them individually?

    You have to use the same apple id and password you used to purchase them. If you are using a different one then it will not work. Go to Settings>store and make sure on the very bottom you have the correct apple id. Do not use your icloud id as it is different.

  • MuVo2 load time with long playl

    I recently purchased a MuVo2 because I liked the form factor and sound quality. The small size of the display wasn't going to bother me because I plan to make liberal use of playlists for driving and what not. I created a playlist of approximately 300 MP3s using Windows Media Player, but when I tried to play it, the MuVo2 would hang. After a few tries I realized that the MuVo2 wasn't freezing, it was just taking a (really, really long) long time to load the playlist. When I pared the playlist down to about 20-30 MP3s, I got the load time down to an acceptable time. However, if I put the same 300 MP3s into a folder and just played the folder, the load time was also acceptable.
    My question is: Is the long load time due to the fact that the MuVo2 is a hard dri've based player? If I swapped out the 4GB hard dri've and replaced it with a 4GB compact flash card, would it take the same amount of time to load long playlists? My guess is that it's not because of the hard dri've, because I used to own an iPod and didn't have the same problem with long playlists.
    Thanks for any help!

    It's most likely WMP.
    Try Creative's MediaSource software, and I've also heard good things about using MediaMonkey with the MuVo?.

  • J2SE 5.0 plugin and slow applet load time

    Folks,
    I have an applet (https), with about 5 MB of jar files. After we
    moved to J2SE 5.0, the load time seems much slower. It used to load in
    40 seconds. Now it loads in 4 min.
    An odd thing I noticed is when I minimize my Internet Explorer window,
    the applet seems to start up quickly again.
    Is this possibly related to the "starburst logo" progress bar
    animation that Sun now uses for applet start ups? I know that
    animated gifs can sometimes chew up quite a bit of cpu time.
    I think the progressbar property is no longer in 5.0
    I'm running on a single proc laptop. When I run it on my 2 proc
    server, it is not as obvious, and startup time seems reasonable.
    Thanks,
    Rob
    [email protected]

    I'm also seeing a similar slow applet startup time. CPU is 100% (IE is in high 90s). Works ok on my 3GHz P4, but is very slow (up to 16 minutes) on 400 MHz P2.
    My problem seems to be related to how my .properties files (23 total, for internationalization support) are handled.
    During start-up in JRE 1.5 I see the following for each .properties file:
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en.properties with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en.properties requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en_US.class requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with proxy=DIRECT
    network: Connecting http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties with cookie "PHPSESSID=e4aad164588f860e495812ec5c52326c"
    network: Server http://dummy.com/demos/AES/1_4_2_06/fax_en_US.properties requesting to set-cookie with "PHPSESSID=e4aad164588f860e495812ec5c52326c; path=/"
    The file (1 of 23) I supply is named fax.properties (the default file). Since my locale setting are English/US I guess the I18N code is trying to figure out if the regional files are present. Each of these requests is timing out 5-8 seconds for each - it builds up quickly.
    I haven't been able to find out why this is happening or resolve the issue. I'm close to restricting my applet to only 1.4.2 as that was fine and posting this as a bug.

  • How can i reduce applet loading time?

    I have recently begun converting a gui application to an applet. The problem i have is the loading time of the applet which can be several minutes.
    The gui has a progress bar which tracks the loading of the classes, images and sounds etc, once this is up and running the loading time is fairly short, however it takes forever for the gui to actually begin to display.
    The code for the classes is only about 150K altogether, there seems to a period of long modem inactivity once the applet is initialized before the gui is displayed.
    How can i reduce the time it takes for the applet to initialize before the gui is displayed, otherwise users will thing nothing is happening and not bother loading it.
    the applet is currently at http://www.winnieinternet.com/games/startrade2095/applet/startrade2095.htm
    if you need a demo of the problem, although the applet is still work in progress.
    Many thanks in advance for any help
    W.Coleman
    www.winnieinternet.com

    Some suggestions could be:
    1. Bundle all classes and resource files in a jar file.
    2. Try to preload the heavier files (e.g. sound files) in a background thread, instead of init() method. See an example for this in Sun's Java tutorial, under the trail 'Sound'.

  • Very long (10min+) logon time on clients

    Hi!
    Around 2 weeks ago our employees started to report that some macbooks/imac's (with maverick ob board) have very long logon time - 10min+ "spinning wheel" after home sync.
    Issue is related only to couple of client machines. Upgrade from Maverick To Yosemite fix the issue, but only for couple of days! Then issue re-occuring on the machines again. It's not related to the mobile profile, sync is very fast, "spinning wheel" appear after the sync and spiining for another 10+ minutes.
    Our infrastructure:
    - OS X Maverick (10.9.4) + Server 3.1.2
    - clients machines - 30+ machines, maverick and couple of yosemites.
    - Open Directory/File Sharing/Profile Manager on Server
    - Mobile Profiles on clients with enabled syncing during logon/logoff only.
    I noticed those errors during the "spinning wheel" (log gathere on server, not client):
    Nov 13 11:10:28 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:56766 for host/[email protected] [canonicalize, forwardable]
    Nov 13 11:10:28 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:10:28 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:54978 for krbtgt/[email protected] [forwardable]
    Nov 13 11:10:28 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:10:29 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:63166 for host/[email protected] [canonicalize, forwardable]
    Nov 13 11:10:29 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:10:29 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:51181 for krbtgt/[email protected] [forwardable]
    Nov 13 11:10:29 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:54374 for host/[email protected] [canonicalize, forwardable]
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:50691 for krbtgt/[email protected] [forwardable]
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:33 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:58251 for host/[email protected] [canonicalize, forwardable]
    Nov 13 11:16:33 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:33 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:53871 for krbtgt/[email protected] [forwardable]
    Nov 13 11:16:33 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: TGS-REQ [email protected] from 192.168.1.232:50691 for krbtgt/[email protected] [forwardable]
    Nov 13 11:16:32 odmaster.OURDOMAIN.com kdc[54]: Server not found in database: krbtgt/[email protected]: no such entry found in hdb
    Nov 13 11:16:33 odmaster.OURDOMAIN.com kdc[54]: AS-REQ [email protected] from 192.168.1.232:64393 for krbtgt/[email protected]
    Nov 13 11:16:33 --- last message repeated 1 time ---
    Nov 13 11:16:33 odmaster.OURDOMAIN.com kdc[54]: AS-REQ [email protected] from 192.168.1.232:65181 for krbtgt/[email protected]
    Nov 13 11:16:33 --- last message repeated 1 time ---
    Please advise. We would like to not upgrade/migrate to Yosemite for now.

    Many Open Directory problems can be resolved by taking the following steps. Test after each one, and back up all data before making any changes.
    1. The OD master must have a static IP address on the local network, not a dynamic address.
    2. You must have a working DNS service, and the server's hostname must match its fully-qualified domain name. To confirm, select the server by name in the sidebar of the Server application window, then select the Overview tab. Click the Edit button on the Host Name line. On the Accessing your Server sheet, Domain Name should be selected. Change the Host Name, if necessary. The server must have at least a three-level name (e.g. "server.yourdomain.com"), and the name must not be in the ".local" top-level domain, which is reserved for Bonjour.
    3. The primary DNS server used by the server must be itself, unless you're using another server for internal DNS. The only DNS server set on the clients should be the internal one, which they should get from DHCP if applicable.
    4. Follow these instructions to rebuild the Kerberos configuration on the master.
    5. If you use authenticated binding, check the validity of the master's certificate. The common name must match the hostname and domain name. Deselecting and then reselecting the certificate in Server.app has been reported to have an effect in some cases. Otherwise delete all certificates and create new ones.
    6. Unbind and then rebind the clients in the Users & Groups preference pane. Use the fully-qualified domain name of the master.
    7. Reboot the master and the clients.
    8. Don't log in to the server with a network user's account.
    9. Disable any internal firewalls in use, including third-party "security" software.
    10. If you've created any replica servers, delete them.
    11. As a last resort, export all OD users. In the Open Directory pane of Server, delete the OD server. Then recreate it and import the users. Ensure that the UID's are in the 1001+ range.
    If you get this far without solving the problem, then you'll need to examine the logs in the Open Directory section of the log list in the Server app, and also the system log on the clients.

  • Any reason for the long sporadic loading times during reboot

    Hi guys,
    Just wanna find out more abt my experiences of encountering long loading times during a restart (up to 5mins). I do see the apple logo and the spinning wheel and it spins for like 2 mins, moves on the an all blue screen and fixed there for another 1 min and then the loading OS X meter. I suspect that the long loading time could be the cause of new softwares that I've installed or that I didn't reboot for days. Anyone care to share their experience and views on this? Is this normal? I feel that its long because usually restarting only take 1min or so to reach my log in screen.

    15 seconds for a restart here ... something's not right with 2-5 minutes.
    - If you login as another user does it take as long?
    - Have you run Disc Utility and Repaired Permissions lately?
    - What about running the Daily and Weekly 'chron' jobs? (OnyX or MacJanitor etc)
    - Have you got haxies or similar extras in your StartUp folder?

Maybe you are looking for

  • Exchane server 2013 error when want to login : HTTP 500 Internal server error

    hello guys! I have a problem after installing exchange server 2013.it is third time that I install exchange 2013 on server 2008 R2 and last one on server 2013 R2,I install it on VMmachine in real and virtual environment.now that I ask this question I

  • Running MI-Webconsole in a Portal with SSO?

    Hi, we want to do mobile Administration from a SAP Portal. How can i integrate the MI-Webconsole with SSO in a portal? I created a URL-IView for webconsole,but i get the webconsole login screen in the Portal. Is there are solution how to do Single-Si

  • Acrobat 8 Auto Translate to Japanese from English Web Page

    Every time I try to create a printed page and save as a PDF the PDF distiller creates a Webpage that is half english (the HTML portion) and the Form data is published ine Japanese. Does anyone know how to correct this issue. This is a particular issu

  • Old iPod photo pictures to iPhoto

    I have an old iPod photo (grey wheel/colour screen) which allows me to connect my camera to an Apple adapter at the bottom of the iPod and import pictures off my camera card and onto the iPod. However when I plug this old iPod into my new iMac with i

  • Why is this forum so awkward?

    If I post a question, then get an email that there is an answer, then I click on the link provided in the email. Great. But if I want to respond I have to log in again, which takes me to the log on page and then I have to find my way back to my quest