Start up Mdsync launch failiure

Hi All,
well it finally happened, my MBP will not boot up.
Updated to 10.5.6 and ran logic fine all day, went to bootcamp (win XP SP3) for a bit of "Crisis" action, and then when finished went to reboot back to OS X.
I see the grey screen of death (nice colour change)with the eternally spinning "progress indicator" - unfortunately does not progress to the login screen.
I entered Verbose mode to see whats up, and found the the computer is looping through a Mdsync launch failure.
I understand it is spotlight related?? - please advise? - I have many delicate settings etc that I would not like to re-address - Logic Pro etc.
Has OS X been repatched so much that an optional application like spotlight can render it's whole OS inoperable, wasn't this sort of thing only related to the PC world.
I hope there's another solution to fix a possible corrupt file than re-install the entire operating system - not much info on the Mdsync on the regular search engines and not terminal savvy.
Appreciate all positive feed back, thanks in advance.

same problem.
the messages is below.
... mds[63]: (Error) Server: mdsync launch failed: (ipc/rcv) timed out

Similar Messages

  • IPad2 apps have started crashing when launched

    Several of my iPad2 apps have started crashing when launched: flipboard and neflix, to be exact. I have turned off the apps, restarted and done a reset, but that has not helped.

    If it's happening on all the apps that you've downloaded from the App Store, but not the Apple built-in ones, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted.
    If it's happening on all apps then try closing them all completely and then see if they work when you re-open them : from the home screen (i.e.not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Using Start-Job to launch multiple SSH sessions and esxtop?

    Hello folks,
    I am trying to start an esxtop session on multiple esx servers at the same time.
    I started trying using Start-Job thinking it would help do it asynchronously.
    The script I have below works on one host so far, but need suggestions to repeat it for multiple hosts, thinking by looping through changing the $i each time?
    Checking if anyone would have comment?
    $i = 1
    $seconds = 5
    $iterations = 2
    $esxtopfile = "esxtop$i_$((Get-Date).ToString('MMddyyy-hhmm')).csv"
    $ComputerName = "z420esxi$i.domain.net"
    # Start an esxtop session using SSH.net and start an esxtop command - module already loaded.
    $sb = {New-SshSession -ComputerName $($args[0]) -KeyFile C:\esxi-key-openssh.key -Username root
           Invoke-SshCommand -ComputerName $($args[0]) -command "esxtop -d $($args[1]) -a -b -n $($args[2]) > /tmp/$($args[3])"     
    Start-Job  -ScriptBlock $sb -ArgumentList $ComputerName,$seconds,$iterations,$esxtopfile | Wait-Job | Receive-Job

A: Using Start-Job to launch multiple SSH sessions and esxtop?

You're starting for a job, waiting for that job to complete and then finally receiving that job
before allowing anything else to happen with your script.
In other words, if you had some code after the Start-Job line, it would not be executed until the job had completed and you had received the job, which partially negates the benefits of using a job to begin with (specially bearing in mind you don't have
a form).
The way to achieve what you're after is to start all jobs at the same time, one per ESX host, and then finally to wait for all jobs and collect all jobs at the end.
Here's a quick example that starts 5 jobs and wait for all of them to complete before receiving the results.
$jobs = @()
$jobs += 1..5 | ForEach-Object {Start-Job -ScriptBlock {Sleep $args[0]; "I just slept for $($args[0]) seconds"} -ArgumentList $_}
[void] (Wait-Job $jobs)
Receive-Job $jobs
Notice that each of the subsequent jobs will take longer and longer to run, with the first being the fastest and the last the slowest. Still, I'm waiting for *all* jobs to complete before performing the Receive-Jobs on all of them at the same time.

You're starting for a job, waiting for that job to complete and then finally receiving that job
before allowing anything else to happen with your script.
In other words, if you had some code after the Start-Job line, it would not be executed until the job had completed and you had received the job, which partially negates the benefits of using a job to begin with (specially bearing in mind you don't have
a form).
The way to achieve what you're after is to start all jobs at the same time, one per ESX host, and then finally to wait for all jobs and collect all jobs at the end.
Here's a quick example that starts 5 jobs and wait for all of them to complete before receiving the results.
$jobs = @()
$jobs += 1..5 | ForEach-Object {Start-Job -ScriptBlock {Sleep $args[0]; "I just slept for $($args[0]) seconds"} -ArgumentList $_}
[void] (Wait-Job $jobs)
Receive-Job $jobs
Notice that each of the subsequent jobs will take longer and longer to run, with the first being the fastest and the last the slowest. Still, I'm waiting for *all* jobs to complete before performing the Receive-Jobs on all of them at the same time.

  • Java web start fails to launch application when java cache is off

    Hi,
    there's no problem when java cache is used but when java cache isn't used, my application fails to launch via jws (jnlp).
    the following is the error
    java.lang.NullPointerException
    at java.util.jar.JarVerifier.mapSignersToCodeSource(Unknown Source)
    at java.util.jar.JarVerifier.mapSignersToCodeSources(Unknown Source)
    at java.util.jar.JarVerifier.getCodeSources(Unknown Source)
    at java.util.jar.JarFile.getCodeSources(Unknown Source)
    at java.util.jar.JavaUtilJarAccessImpl.getCodeSources(Unknown Source)
    at com.sun.deploy.cache.DeployCacheJarAccessImpl.getCodeSources(Unknown Source)
    at com.sun.javaws.security.SigningInfo.getCommonCodeSignersForJar(Unknown Source)
    at com.sun.javaws.security.SigningInfo.check(Unknown Source)
    at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source)
    at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source)
    at com.sun.javaws.Launcher.prepareResources(Unknown Source)
    at com.sun.javaws.Launcher.prepareAllResources(Unknown Source)
    at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
    at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
    at com.sun.javaws.Launcher.launch(Unknown Source)
    at com.sun.javaws.Main.launchApp(Unknown Source)
    at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
    at com.sun.javaws.Main$1.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    this is the jnlp file
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" version="1.0" codebase="http://11.4.100.41" href="secuiNXG.jnlp">
    <information>
    <title>secuiNXG U start GUI</title>
    <vendor>secui.com Ltd.</vendor>
    <homepage href="/"/>
    <icon href="web_login_ci.gif"/>
    <shortcut online="true">
    <desktop/>
    <menu submenu="secuiNXG U"/>
    </shortcut>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4+" initial-heap-size="50m" max-heap-size="250m" />
    <jar href="SES.jar"/>
    <jar href="skin_alloy.jar"/>
    <jar href="Borders.jar"/>
    <jar href="informa.jar"/>
    <jar href="jaxen-1.1-beta-12.jar"/>
    <jar href="jcelements.jar"/>
    <jar href="jctable.jar"/>
    <jar href="jdom.jar"/>
    <jar href="log4j-1.2.14.jar"/>
    <jar href="jnlp.jar"/>
    <jar href="jxl.jar"/>
    </resources>
    <application-desc main-class="secui.firewall.SecuiLogin">
    <argument>11.4.100.41:80</argument>
    </application-desc>
    </jnlp>Test Environment
    JRE : 1.6.0_19
    O/S : Windows 7 (32 bit)
    Browser : IE8
    I checked for other versions of jre but not using java cache didn't cause any problems.
    I checked for the release note of update 19 but I have no clue.
    Is there any way to launch java application without using java cache?

    greencosmos wrote:
    ..I had a problem changing the cache location. The button for this action is disabled. I can't figure out how to enable it.On my system, it is enabled when the 'cache files' box is checked, and disabled when it isn't.
    1) Without changing the location I assumed that deleting the cached files could be a similar job, so I clicked "Delete Files..." and deleted with all checkboxes checked.I am not convinced that would entirely clear the cache, but have done no specific tests to check.
    2) I unchecked "Keep temporary files on my computer".So it was checked when you were trying to change the cache location?
    3) Applied all the changes.
    4) I launched your demo.
    Result - It was launched without any prompt.
    I revisited the page with the URL and successfully launched the app. again.The application launched just fine, but no prompt.
    If you follow those (links and) steps I outlined exactly, does the file service demo launch twice for you?I'm sorry I don't exactly understand your question. .. Your description is enough to convince me that answer is 'yes'.
    ..I tried twice and it launched twice, but not twice at the same time(it launched once at a time).Surprise, surprise. That is the first mention in this thread of 'same time'/'simultaneously'. Care to share the other defining factors that you forgot to mention, or is guessing part of the 'fun' of helping?
    But still I'm having problems with launching my application.
    I assume that it could be jnlp syntax problem. The "main=true" subelement is missing.It is a good idea to validate the launch files of JWS based launches that are failing for any reason. For that purpose, I offer JaNeLA.
    Having said that, a missing main='true' will not be detected by JaNeLA, since it is not a compulsory attribute. ..But check them anyway.

  • How can I stop multiple tabs from opening along with Mozilla Firefox Start Page at launching time.How can this be stopped?

    Whenever I launch Firefox, multiple tabs also start to open along with the Mozilla Firefox Start Page, which is very irritating. How can I stop this to happen each time I launch the browser?

    See these articles for some suggestions:
    * https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    * https://support.mozilla.com/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    * http://kb.mozillazine.org/Preferences_not_saved
    It is also possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Error when starting ZENworks Application Launcher Explorer

    Dear All,
    I am a Hong Kong user which very very new to Novell system. My colleague having a problem that, after he has login to the system (window XP), normally the ZENworks Application Explorer should be able to pop out automatically. But suddenly it is fail to do so started from yesterday. An error message "ZEN works Application Explorer Executable has encountered a problem and need to close." keeps occurs, with Error signature "AppName: naldesk.exe AppVer: 2001.4.10.0 ModName: ntdll.dll ModVer: 5.1.2600.2180 Offset: 0001103c".
    It is very strange that if we login to the system with other by differenct account, there will be no problem. The following are the examples:
    1.) Colleague A account to do login action in Colleague A computer -> failed to launch ZENworks Application Explorer.
    2.) Colleague A account to do login action in Colleague B computer -> success to launch ZENworks Application Explorer.
    3.) Colleague B account to do login action in Colleague A computer -> success to launch ZENworks Application Explorer.
    4.) Colleague B account to do login action in Colleague B computer -> success to launch ZENworks Application Explorer.
    the configuration of the computers are as follow:
    OS : Window XP sp2
    ZENworks Application Launcher Explorer Version : 3.1 (20010410)
    Can anyone help me? Thanks so much.

    Originally Posted by tree_lamkh
    Dear All,
    I am a Hong Kong user which very very new to Novell system. My colleague having a problem that, after he has login to the system (window XP), normally the ZENworks Application Explorer should be able to pop out automatically. But suddenly it is fail to do so started from yesterday. An error message "ZEN works Application Explorer Executable has encountered a problem and need to close." keeps occurs, with Error signature "AppName: naldesk.exe AppVer: 2001.4.10.0 ModName: ntdll.dll ModVer: 5.1.2600.2180 Offset: 0001103c".
    It is very strange that if we login to the system with other by differenct account, there will be no problem. The following are the examples:
    1.) Colleague A account to do login action in Colleague A computer -> failed to launch ZENworks Application Explorer.
    2.) Colleague A account to do login action in Colleague B computer -> success to launch ZENworks Application Explorer.
    3.) Colleague B account to do login action in Colleague A computer -> success to launch ZENworks Application Explorer.
    4.) Colleague B account to do login action in Colleague B computer -> success to launch ZENworks Application Explorer.
    the configuration of the computers are as follow:
    OS : Window XP sp2
    ZENworks Application Launcher Explorer Version : 3.1 (20010410)
    Can anyone help me? Thanks so much.
    Can anyone help me ?

  • DataSocket Server will not start when the Launch DS Server if Local URL.VI is bundled into a LabVIEW application.

    I want to run a LabVIEW application on several machines remotely that do not have LabVIEW installed (licensing issues). Hence I have built a LabVIEW executable with the RunTime Engine to install on all of these remote machines.
    The VI has a bi-directional link, using Datasockets, to a machine with DAQ and Image acquisition functions. It primarily receives data items, but also the capability to change data items so it needs to run the "Launch DS Server if Local URL.VI" in order to publish data to the DataSocket server.
    When I run the pre-built VI on a machine that has LabVIEW Developers Edition installed, everything works fine - ie.
    the DataSocket server starts on the remote machine. However when I build the *.exe application and run it on a machine with and without LabVIEW Developers Edition installed the VI successfully subscribes to the DAQ and Image Acquisiton machine, but it does not start its own connection to the Data Socket server, and hence does not publish the data that the DAQ machine needs to suscribe to. IT seems that the Launch DS Server if Local URL.VI is bypassed? I have fiddled around with the Build settings but to no avail.
    In short, how do I get the DataSocket Server to run in a LabVIEW executable? Is it indeed possible? Any advice would be welcomed.
    When distributing a Labview Application (*.exe) with Data Socket Server Publish functionality, the DataSocket server does not start and hence no data can be sent by the Remote PC to the Server. The VI successfully retrieves data from the DS Server. I have used the "Launch DS Server if Local URL.vi" in the ditributed application but for some r
    eason this VI is not executed when I run the executable. How can you force the DataSocket Server to run with executable LabVIEW applications?

    Ryan,
    How to add Datasocket Server Control.vi?
    Source Files only show Project Files.
    So, I added Datasocket Server Control.vi file to the project first.
    Then I added it to Always Included < Source Files < Application Properties (Build Executable).
    Last, I built the Executable, but it didn't work.
    Can you help me.
    Thank you.
    Pedro Raposo

  • Launchd daemon not starting correctly on launch

    Hi All,
    I have a script that I like to have run anytime my wireless network changes.  The script needs to be run under sudo, so I created a daemon inside of /Library/LaunchDaemons .
    My plist file looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
                   <false/>
              <key>Label</key>
                   <string>my.plist.name</string>
              <key>ProgramArguments</key>
                   <array>
                                  <string>/path/to/script/to/run.sh</string>
                   </array>
              <key>WatchPaths</key>
                   <array>
                                  <string>/Library/Preferences/SystemConfiguration/com.apple.airport.pr eferences.plist</string>
                   </array>
    </dict>
    </plist>
    So here's where the oddness starts happening.  When I start up my computer, launchctl tells me that this daemon is loaded.  (I run sudo launchctl list and it's there).  However, the script does not run when it should.
    However, if I manually unload and then load the plist using the launchctl command then everything works completely fine.
    So the question is, why does it work when I load it manually, but not work when the system loads it on startup?
    Thanks,
    Q

    No suspicious message in the console.  When I sudo launchctl list it shows up with a 0 in the second field.
    The only thing I can find in doing some google-ing is this:
    https://managingosx.wordpress.com/2006/05/10/launchd-gotcha/
    Which seems to imply that a launch daemon that is watching a file will fail to work if that file doesn't exist at all times.  However, I would think that /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist should always exist.  So I'm still perplexed.
    Right now I have a seomwhat convoluted system set up as the following:
    My launch daemon (that needs to run as root) is set to watch a folder ~/random/
    Then I have a launch agent which successfully watches for changes in /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist and when it sees them touches a file in ~/random/.
    The launch daemon then deletes that file and successfully runs the script I want it to run.
    It seems weird/odd/annoying to have to set up a this double-headed process just to do something simple like this, so I'm open to suggestions as to what is going on.

  • Windows 7 not starting after selecting Launch startup repair

    I accidentally pressed the off button on my computer and when I tried to start it gives me the message Windows failed to start, so I selected launch startup repair (recommended). Now, it is taking forever to fix the system and is frozen, does anyone know
    what's going on? Please help me!
    Thank you!

    They'll help you over here.
    Windows
    7 Repair/Recovery forum on Microsoft Answers
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • When will Apple South Africa start selling newly launched Apple products and not out dated products?

    All the Apple stores as wll as the istores in South Africa always only start to sell new lines a year or two after the lines were launched. I always have to inport all my Apple products as it is never for sale in my country.
    It defnetly give Apple a bad name in Africa and that is why Apple is looked down to here in Africa. Android, p.c and linex is strong here because its afalable as soon as it enter the market but by the time we can buy the Apple product android have newer apps ect.
    I ask out of the bottom of my heart, please Apple PTY LTD. Get your Africa suppliers and branches up to date.
    Daniel

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple - I've asked the hosts to remove your phone number from your post (it's not a good idea to post personal info on any public forum).
    We won't know if/when current models might be sold there. If you want to leave feedback for Apple then you can do so here : http://www.apple.com/feedback/

  • Wrong start directory when launching sh script from Dolphin

    When I try to launch a small sh script from Dolphin, the start directory is ~ instead of the current directory.
    I wrote the script to be able to easily launch a java app from the gui.
    It's basically:
    cd bin
    java NAME
    But since the start directory is my home directory, this obviosly doesn't work.
    It does work when launching it from a terminal.
    What to do?

    I have run into a similar situation.. that was when Viritas was the clustermanager for 9I and we tried to install Oracle clusterware for 10g. Also the cluster was configured to user Veritas propriatory interconnect tech... LLT
    Are you on a similar configuration?

  • Application started using Java Web Start doesn't launch the first time

    I have a Facebook photo uploader application that I plan to distribute using Java Web Start. I'm using Java 6u4 on Windows XP SP2 with 2GB of RAM. I have Java 6u3, Java 6u4 and Java 5 u14 installed and I'm sure the one used is Java 6u4.
    I signed my application and make use of all security settings.
    Here is my JNLP file:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+"
         codebase="http://www.antaki.ca/bloom/jars"
         href="http://www.antaki.ca/bloom/Bloom.jnlp">
    <information>
        <title>Bloom</title>
        <vendor>Carl Antaki</vendor>
        <icon kind="splash" href="http://www.antaki.ca/bloom/Bloom.jpg"/>
        <icon href="http://www.antaki.ca/bloom/bloom32.jpg"/>
      <shortcut online="false">
      <desktop/>
      <menu submenu="Bloom"/>
      </shortcut>
    </information>
        <resources>
            <j2se version="1.5+" initial-heap-size="32m" max-heap-size="128m" href="http://java.sun.com/products/autodl/j2se" />
            <property name="sun.java2d.d3d" value="false"/>
            <jar href="http://www.antaki.ca/bloom/jars/Bloom.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/BrowserLauncher2-1_3.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/SmartProgressMonitor.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/facebook.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/forms-1.1.0.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/json_simple.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/swing-worker-1.1.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/glazedlists_java15.jar"/>
            <jar href="http://www.antaki.ca/bloom/jars/swingx-0.9.1.jar"/>   
            <jar href="http://www.antaki.ca/bloom/jars/jhbasic.jar"/>
       </resources>
    <security>
         <all-permissions/>
      </security>
    <application-desc main-class="ca.antaki.www.bloom.gui.Bloom" />
    </jnlp>Here is the link for my application http://antaki.ca/bloom/Bloom.jnlp
    The first time the application is installed using a link on the browser it's downloaded then the certificate dialog is shown, after that I check the checkbox to accept the certificate permanently. The application doesn't load, it only loads the second time although I see it in the task manager. If I don't accept the certificate permanently it does load. This happens on both Firefox 2 and IE 7. I enabled the console and logging but nothing shows up there.That's really a weird problem, I wonder if Java Web Start is a viable deployment option, it does have great capabilities such as autoupdate but still seems to have important bugs.
    Does anyone have any clue about what is going on.
    The problem doesn't occur on Ubuntu 7.10.
    Thanks,
    Carl Antaki

    >
    You were right my XML file was not correct. I still couldn't find a valid JNLP validator. Sun has to provide that.>No they don't (have to supply a validator for their own document type, though it makes sense to do so), but yes they do (provide a tool that validates XML against schemas). Java can validate XML against a DTD or XSD.
    Check these two threads (and chase the links) for more details.
    JNLP xsd schema
    <http://groups.google.com.au/group/comp.lang.java.programmer/browse_thread/thread/c6f65bf1df5f105d/30c6b7e2dc342dc4>
    Validate XML against DTD? XSD OK. SSCCE.
    <http://groups.google.com.au/group/comp.lang.java.programmer/browse_thread/thread/5b997a1edb765b11/e831f3066eb4aa38>
    Look especially for the posts by Piotr Kobzda.
    I had a tool on my site based largely on Piotr's codes, that linked to a valid JNLP DTD and XSD, but unfortunately my site is offline at the moment. Andy assures me that the JNLP 6.0 DTD has been corrected for the developer ..download tutorials of web start, though the online (web site) version may still be invalid.

  • I have acp medicine cd. I copied it to hard disk. Now used start.htm to launch the webpage based application.table of contents is not loading, search not workin

    acp medicine cd is version 2006. I have java 7 update 45.
    Java Plug-in 10.45.2.18
    Using JRE version 1.7.0_45-b18 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Admin.lt01
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@1786789
    basic: Plugin2ClassLoader.addURL parent called for file:/E:/Apps/ACPCD/ACPCD/sam.jar
    network: Cache entry not found [url: file:/E:/Apps/ACPCD/ACPCD/sam.jar, version: null]
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@177b4d3
    network: Cache entry not found [url: file:/E:/Apps/ACPCD/ACPCD/sam.jar, version: null]
    network: Cache entry not found [url: file:/E:/Apps/ACPCD/ACPCD/sam.jar, version: null]
    basic: Plugin2ClassLoader.addURL parent called for file:/E:/Apps/ACPCD/ACPCD/sam_java/tree.jar
    security: Accessing keys and certificate in Mozilla user profile: null
    network: Created version ID: 1.7.0.45
    network: Created version ID: 1.7.0.45
    network: Cache entry not found [url: file:/E:/Apps/ACPCD/ACPCD/sam_java/tree.jar, version: null]
    network: Cache entry not found [url: file:/E:/Apps/ACPCD/ACPCD/sam_java/tree.jar, version: null]
    network: Cache entry not found [url: file:/E:/Apps/ACPCD/ACPCD/sam_java/tree.jar, version: null]
    0
    basic: Embedding dialogs not enabled in Configuration
    security: SSV validation:
    running: 1.7.0_45
    requested: null
    range: null
    javaVersionParam: null
    Rule Set version: null
    network: Created version ID: 1.7.0.45
    network: Created version ID: 1.7.0.45
    security: continue with running version
    network: Created version ID: 1.7.0.45
    network: Created version ID: 1.7
    network: Created version ID: 2.2.45
    security: SSV validation:
    running: 1.7.0_45
    requested: null
    range: null
    javaVersionParam: null
    Rule Set version: null
    network: Created version ID: 1.7.0.45
    network: Created version ID: 1.7.0.45
    security: continue with running version
    network: Created version ID: 1.7.0.45
    network: Created version ID: 1.7
    network: Created version ID: 2.2.45
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 2891122 us, pluginInit dt 12593728 us, TotalTime: 15484850 us
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 2891122 us, pluginInit dt 12910284 us, TotalTime: 15801406 us
    basic: Applet initialized
    basic: Starting applet
    basic: completed perf rollup
    basic: Applet made visible
    basic: Applet started
    basic: Told clients applet is started
    java.net.MalformedURLException: no protocol: data.gz
    JObjects QuestAgent
    Copyright (c) 1997-2002, JObjects International. All rights reserved.
    http://www.jobjects.com
    java.io.IOException: Failed to open file for read: sam.prm
    at com.jobjects.quest.e.c.a(c.java:55)
    at com.jobjects.quest.e.c.a(c.java:63)
    at com.jobjects.quest.e.c.a(c.java:31)
    at com.jobjects.quest.agent.GenericSearchApplet.init(GenericSearchApplet.java:51)
    at com.jobjects.quest.agent.LiveConnectApplet.init(LiveConnectApplet.java:166)
    at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.init(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    [ERROR] Can't load applet parameters from sam.prm <java.io.IOException: Failed to open file for read: sam.prm>
    [DEBUG] Detected browser: sun.plugin
    [DEBUG] Creating search panel.
    [DEBUG] Search panel created.
    [DEBUG] Search applet initialized.
    basic: Applet initialized
    basic: Starting applet
    basic: completed perf rollup
    basic: Applet made visible
    basic: Applet started
    basic: Told clients applet is started

    Did it work when you started it directly from the CD?
    Does it work if you open start.htm in Internet Explorer?
    I don't have much experience with Java issues, but one thing to try would be to clear Java's cache, which is separate from your browser caches. This article has the steps: [http://www.java.com/en/download/help/plugin_cache.xml How do I clear the Java cache?]

  • Why mysql soen't start when i launch EASYPHP?

    Could you gave me a explination to this and if my.ini is well written
    sachant que my host : 127.0.0.1
    port 3306
    username [email protected]
    password :naonetou
    I give you my.ini
    which ipath access is C:\Program Files (x86)\EasyPHP-DevServer-13.1VC9\binaries\mysql\my.ini
    FICHIER CONFIGURATION
    # IMPORTANT
    # ${path} is used to specify EasyPHP installation path
    # This is for a system with little memory (32M - 64M) where MySQL plays
    # an important part, or systems up to 128M where MySQL is used together with
    # other programs (such as a web server)
    # MySQL programs look for option files in a set of
    # locations which depend on the deployment platform.
    # You can copy this option file to one of those
    # locations. For information about these locations, see:
    # http://dev.mysql.com/doc/mysql/en/option-files.html
    # In this file, you can use all long options that a program supports.
    # If you want to know which options a program supports, run the program
    # with the "--help" option.
    # The following options will be passed to all MySQL clients
    [client]
    password          = naonetou
    port                    = 3306
    socket                    = "${path}/binaries/mysql/mysql.sock"
    # Here follows entries for some specific programs
    # The MySQL server
    [mysqld]
    # The TCP/IP Port the MySQL Server will listen on
    port                    = 3306
    #Path to installation directory. All paths are usually resolved relative to this.
    basedir="${path}/binaries/mysql/"
    #Path to the database root
    datadir="${path}/binaries/mysql/data/"
    # The default storage engine that will be used when create new tables when
    default-storage-engine = INNODB
    bind-address = 127.0.0.1
    socket                    = "${path}/binaries/mysql/mysql.sock"
    skip-external-locking
    key_buffer_size = 16M
    max_allowed_packet = 1M
    table_open_cache = 64
    sort_buffer_size = 512K
    net_buffer_length = 8K
    read_buffer_size = 256K
    read_rnd_buffer_size = 512K
    myisam_sort_buffer_size = 8M
    # Don't listen on a TCP/IP port at all. This can be a security enhancement,
    # if all processes that need to connect to mysqld run on the same host.
    # All interaction with mysqld must be made via Unix sockets or named pipes.
    # Note that using this option without enabling named pipes on Windows
    # (via the "enable-named-pipe" option) will render mysqld useless!
    #skip-networking
    # Replication Master Server (default)
    # binary logging is required for replication
    log-bin=mysql-bin
    # binary logging format - mixed recommended
    binlog_format=mixed
    # required unique id between 1 and 2^32 - 1
    # defaults to 1 if master-host is not set
    # but will not function as a master if omitted
    server-id          = 1
    # Replication Slave (comment out master section to use this)
    # To configure this host as a replication slave, you can choose between
    # two methods :
    # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
    #    the syntax is:
       CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=3306,
       MASTER_USER='[email protected]', MASTER_PASSWORD='naonetou';
    #    where you replace <host>, <user>, <password> by quoted strings and
    #    <port> by the master's port number (3306 by default).
    #    Example:
    #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
    #    MASTER_USER='joe', MASTER_PASSWORD='secret';
    # OR
    # 2) Set the variables below. However, in case you choose this method, then
    #    start replication for the first time (even unsuccessfully, for example
    #    if you mistyped the password in master-password and the slave fails to
    #    connect), the slave will create a master.info file, and any later
    #    change in this file to the variables' values below will be ignored and
    #    overridden by the content of the master.info file, unless you shutdown
    #    the slave server, delete master.info and restart the slaver server.
    #    For that reason, you may want to leave the lines below untouched
    #    (commented) and instead use CHANGE MASTER TO (see above)
    # required unique id between 2 and 2^32 - 1
    # (and different from the master)
    # defaults to 2 if master-host is set
    # but will not function as a slave if omitted
    #server-id       = 2
    # The replication master for this slave - required
    #master-host     =   <hostname>
    # The username the slave will use for authentication when connecting
    # to the master - required
    #master-user     =   <username>
    # The password the slave will authenticate with when connecting to
    # the master - required
    #master-password =   <password>
    # The port the master is listening on.
    # optional - defaults to 3306
    #master-port     =  <port>
    # binary logging - not required for slaves, but recommended
    #log-bin=mysql-bin
    # Uncomment the following if you are using InnoDB tables
    #innodb_data_home_dir = C:\\mysql\\data\\
    #innodb_data_file_path = ibdata1:10M:autoextend
    #innodb_log_group_home_dir = C:\\mysql\\data\\
    # You can set .._buffer_pool_size up to 50 - 80 %
    # of RAM but beware of setting memory usage too high
    innodb_buffer_pool_size = 16M
    innodb_additional_mem_pool_size = 2M
    # Set .._log_file_size to 25 % of buffer pool size
    innodb_log_file_size = 5M
    innodb_log_buffer_size = 1M
    innodb_flush_log_at_trx_commit = 1
    innodb_lock_wait_timeout = 50
    [mysqldump]
    quick
    max_allowed_packet = 16M
    [mysql]
    no-auto-rehash
    # Remove the next comment character if you are not familiar with SQL
    #safe-updates
    [myisamchk]
    key_buffer_size = 20M
    sort_buffer_size = 20M
    read_buffer = 2M
    write_buffer = 2M
    [mysqlhotcopy]
    interactive-timeout
    # Don't listen on a TCP/IP port at all. This can be a security enhancement,
    # if all processes that need to connect to mysqld run on the same host.
    # All interaction with mysqld must be made via Unix sockets or named pipes.
    # Note that using this option without enabling named pipes on Windows
    # (via the "enable-named-pipe" option) will render mysqld useless!
    #skip-networking
    # Replication Master Server (default)
    # binary logging is required for replication
    log-bin=mysql-bin
    # binary logging format - mixed recommended
    binlog_format=mixed
    # required unique id between 1 and 2^32 - 1
    # defaults to 1 if master-host is not set
    # but will not function as a master if omitted
    server-id          = 1
    # Replication Slave (comment out master section to use this)
    # To configure this host as a replication slave, you can choose between
    # two methods :
    # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
    #    the syntax is:
       CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=3306,
       MASTER_USER='[email protected]', MASTER_PASSWORD='naonetou';
    #    where you replace <host>, <user>, <password> by quoted strings and
    #    <port> by the master's port number (3306 by default).
    #    Example:
    #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
    #    MASTER_USER='joe', MASTER_PASSWORD='secret';
    # OR
    # 2) Set the variables below. However, in case you choose this method, then
    #    start replication for the first time (even unsuccessfully, for example
    #    if you mistyped the password in master-password and the slave fails to
    #    connect), the slave will create a master.info file, and any later
    #    change in this file to the variables' values below will be ignored and
    #    overridden by the content of the master.info file, unless you shutdown
    #    the slave server, delete master.info and restart the slaver server.
    #    For that reason, you may want to leave the lines below untouched
    #    (commented) and instead use CHANGE MASTER TO (see above)
    # required unique id between 2 and 2^32 - 1
    # (and different from the master)
    # defaults to 2 if master-host is set
    # but will not function as a slave if omitted
    #server-id       = 2
    # The replication master for this slave - required
    #master-host     =   <hostname>
    # The username the slave will use for authentication when connecting
    # to the master - required
    #master-user     =   <username>
    # The password the slave will authenticate with when connecting to
    # the master - required
    #master-password =   <password>
    # The port the master is listening on.
    # optional - defaults to 3306
    #master-port     =  <port>
    # binary logging - not required for slaves, but recommended
    #log-bin=mysql-bin
    # Uncomment the following if you are using InnoDB tables
    #innodb_data_home_dir = C:\\mysql\\data\\
    #innodb_data_file_path = ibdata1:10M:autoextend
    #innodb_log_group_home_dir = C:\\mysql\\data\\
    # You can set .._buffer_pool_size up to 50 - 80 %
    # of RAM but beware of setting memory usage too high
    innodb_buffer_pool_size = 16M
    innodb_additional_mem_pool_size = 2M
    # Set .._log_file_size to 25 % of buffer pool size
    innodb_log_file_size = 5M
    innodb_log_buffer_size = 1M
    innodb_flush_log_at_trx_commit = 1
    innodb_lock_wait_timeout = 50
    [mysqldump]
    quick
    max_allowed_packet = 16M
    [mysql]
    no-auto-rehash
    # Remove the next comment character if you are not familiar with SQL
    #safe-updates
    [myisamchk]
    key_buffer_size = 20M
    sort_buffer_size = 20M
    read_buffer = 2M
    write_buffer = 2M
    [mysqlhotcopy]
    interactive-timeout
    thanks

    I get the same problem since I moved to Tomcat 4.1.18.
    The difference is that when I look at a jnlp, I get
    Date: Tue, 18 Mar 2003 10:58:25 GMT
    Server: Apache/1.3.26 (Unix) mod_jk/1.2.0 mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.2.3 FrontPage/5.0.2.2510
    Content-Length: 1355
    Content-Type: application/x-java-jnlp-file
    Last-Modified: Mon, 17 Mar 2003 15:58:46 GMT
    Client-Date: Tue, 18 Mar 2003 10:58:25 GMT
    Client-Peer: 192.197.110.222:80
    and at a jsp:
    Date: Tue, 18 Mar 2003 11:06:10 GMT
    Server: Apache/1.3.26 (Unix) mod_jk/1.2.0 mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.2.3 FrontPage/5.0.2.2510
    Content-Type: application/x-java-jnlp-file;charset=ISO-8859-1
    Client-Date: Tue, 18 Mar 2003 11:06:10 GMT
    Client-Peer: 192.197.110.222:80
    Set-Cookie: JSESSIONID=026BF3209EC094A4045F1D37C2A0E98B;Path=/
    Could the difference be ;charset=ISO-8859-1
    How to remove that, in my jsp I just have :
    <% response.setContentType("application/x-java-jnlp-file"); %>
    Help
    Benoit

  • I have some issues starting up please launch me again

    I have downloaded firefox and when I attempt to install it, I get the following message above. Firefox was already on my system and I uninstalled it because it was not working properly. How do I fix this problem?

    Note: You might want to print these steps or view them in another browser.
    Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    Delete the Firefox installation folder, which is located in one of these locations, by default:
    Windows:
    C:\Program Files\Mozilla Firefox
    C:\Program Files (x86)\Mozilla Firefox
    Mac: Delete Firefox from the Applications folder.
    Linux: If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see Install Firefox on Linux. If you downloaded and installed the binary package from the Firefox download page, simply remove the folder firefox in your home directory.
    Now, go ahead and reinstall Firefox:
    Double-click the downloaded installation file and go through the steps of the installation wizard.
    Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    I apologize right away, if you have already followed these steps. Just want to make sure. Please report back to see if this helped you!
    Also this could be an antivirus issue. Your anti-virus might be interfering with the download try disabling it.

  • Maybe you are looking for