HWS file error when not starting with Ch 0

Hello,
I used the "niScope EX Save to File - HWS Low Level - Single Channel Stream.vi" as my starting point and added 8 channels for a 5105 card. Although this is a complex Queue-based vi, it works fine as long as my RAID is fast enough.
However, we have need to take data from channels 4 to 7 and not start with Ch 0. When I do this, my LabVIEW HWS reader does not see any data, nor does the MATLAB code I have written to read our HWS files.
Looking at the file in HDFView, I see that the data starts in vector0 and not vector1, as when I record Channels 0 to 3.
Perhaps I need to use the HDF5 LabVIEW code to force the writing to a different location in the HDF file?
Thanks for your help.

Hello,
I was out of the office Mon. and Tues. I took out a section that just collects one 5105 card in a steaming, continuous collect mode. This is part of a much bigger VI and I included the “Helper Aps” folder that has all the sub-VIs for that larger app. There are more sub-VIs than you need for “5105 Cont Collect.vi”, but it should run once you tell it where the sub-VIs are. Included is a quick-look reader I use to look at the data.
The data file Ch_0_to_3_5105-0.hws can be read, but the Ch_4_to_7_5105-0.hws file cannot.
Thank you for your help.
Attachments:
5105_Cont_Collect.zip ‏3267 KB

Similar Messages

  • Null pointer error if not started with 1st in string

    hi, this little pratice is about building a simple shopping cart. the TOAD.JSP will display the item list and quantity, user could check item and input the quantity that they want. if the user input larger quantity than database, servlet will sent the back to TOAD.jsp and show message. now it works if selected from 1 item, but if selected 2nd or 3rd, it will have null pointer error over here:
    for(int i=0; i<ItemList.size(); i++)
    newit = (ItemBean)ItemList.get(i);
    if (item != null && item.equals(newit.getItem()) )
    %>
    <tr>
    <td ><input type="checkbox" name = "item" value="<%= newit.getItem() %>"><b><%= newit.getItem() %> </b><br></td>
    <td><input type=text name="<%= newit.getItem() %>Qty" value="<%= orderQty%>"></td>
    </tr>
    <tr><td colspan = 2>
    <font size="3" color="red">
    The item <%= newit.getItem() %> is NOT available in stock</font>
    </td>
    </tr>
    <%
    } else {
    %>
    <tr>
    <td ><input type="checkbox" name = "item" value="<%= newit.getItem() %>"><b><%= newit.getItem() %> </b><br></td>
    <td><b><input type=text name="<%= newit.getItem() %>Qty" value="<%= newit.getQty()%>"></b> </td>
    </tr>
    <%
    %>
    thanks for your time!

    You have prvided unsufficent information and poorly formatted code and as such no meaningful answer can given you at present.
    But here is the best that one can guess at.
    You have a null somewhere.
    Is it coming from this code? I am going to say no.
    Where does it come from? I don't know.
    Where should you look? In the code that does processing to see what happens when yuo have more than one item.
    What should you do next? Start putting in some debugging and tracing statements to see where you are heading off into the null abyss.

  • Error: response does not start with HTTP

    hi,
    i am using a MIDP class to send a string to a java servlet which then returns a .gif image. the string is being successfully to the servlet, but an exception is being thrown when the image is being sent back.
    java.io.IOException: response does not start with HTTP it starts with: GIF89aï4
    at com.sun.midp.io.j2me.http.Protocol.readResponseMessage(Protocol.java:2166)
    at com.sun.midp.io.j2me.http.Protocol.finishRequestGetResponseHeader(Protocol.java:1934)
    at com.sun.midp.io.j2me.http.Protocol.sendRequest(Protocol.java:1598)
    at com.sun.midp.io.j2me.http.Protocol.sendRequest(Protocol.java:1517)
    at com.sun.midp.io.j2me.http.Protocol.openInputStream(Protocol.java:484)
    my code is as follows in the midp class :
    HttpConnection c = null;
    InputStream is = null;
    StringBuffer sb = new StringBuffer();
    String url="http://localhost:8090/ProjectServer/createMap";
    url=url+"?Source="+src+"&Destination="+dest;
    try {
    c = (HttpConnection)Connector.open(url,Connector.READ_WRITE, true);
    c.setRequestMethod(HttpConnection.GET); //default
    //is = c.openDataInputStream();
    is = new DataInputStream(c.openInputStream()); //openInputStream(); // transition to connected!
    Image im=null;
    try
    ByteArrayOutputStream bStrm = new ByteArrayOutputStream();
    int ch;
    while ((ch = is.read()) != -1)
    bStrm.write(ch);
    // Place into image array
    byte imageData[] = bStrm.toByteArray();
    // Create the image from the byte array
    im = Image.createImage(imageData, 0, imageData.length);
    finally
    // Clean up
    if (is != null)
    is.close();
    the code in the servlet is as follows :_
    ServletContext sc = getServletContext();
    // Get the MIME type of the image
    String mimeType = sc.getMimeType("route.gif");
    if (mimeType == null) {
    sc.log("Could not get MIME type ");
    response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    return;
    // Set content type
    response.setContentType(mimeType);
    // Set content size
    response.setContentLength((int)file.length());
    // Open the file and output streams
    FileInputStream in = new FileInputStream(file);
    OutputStream outstream = response.getOutputStream();
    // Copy the contents of the file to the output stream
    byte[] buf = new byte[1024];
    int count = 0;
    while ((count = in.read(buf)) >= 0) {
    outstream.write(buf, 0, count);
    in.close();
    outstream.close();
    il be immensely grateful if some1 cud tell me whre i am gng wrong.
    thnx,
    nev

    Hi, I�m trying to do the same as above, get MP3 from a Shoutcast server.
    I got the same fault ("response does not start with HTTP it starts with: ICY") when I tried to open an HttpConnection as bellow:
    ============================================
    HttpConnection conn = (HttpConnection) Connector.open("http://64.236.34.196/stream/1074");
    Then I tried to open a socket connection as bellow:
    ======================================
    SocketConnection conn = (SocketConnection) Connector.open("socket://64.236.34.196:80");
    String get = "GET /stream/1074 HTTP/1.1";
    DataOutputStream os = conn.openDataOutputStream();
    os.writeUTF(get);
    InputStream is = conn.openInputStream();
    But then I got the following error:
    =========================
    java.lang.SecurityException: Target port denied to untrusted applications
    Could someone help me to find out what is going on?
    Thanks a lot!

  • Error:cannot backup SPFILE because the instance was not started with SPFILE

    I get the following error message, what I have done wrong?
    Starting backup at 27-JUN-08
    released channel: ch1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 06/27/2008 10:11:54
    RMAN-06062: can not backup SPFILE because the instance was not started with SPFILE
    Best Regards,
    Fan

    Show parameter pfile/spfile will not show you contents of pfile , for seeing contents you will have to show parameter with required parama name.
    show parameter log_archive_dest
    Whenever you start database ostartup first by default use spfile$Oracle_Sid.ora for starting the instance if this spfile does not exist then it goes for spfile.ora if spfile.ora also does not exist then it search init$Oracle_Sid.ora in default location.
    As you created spfile after restarting the database will automatically use spfile and will show you spfile in yours param when you will show parameter spfile if it does not show then you are still using pfile
    SQL> startup pfile='C:\oracle\product\10.1.0\admin\lease\pfile\init.ora.5242008172537'
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    Database opened.
    SQL> show parameter pfile
    NAME                                 TYPE        VALUE
    spfile                               string
    SQL> create spfile from pfile
      2  /
    File created.
    SQL> show parameter pfile
    NAME                                 TYPE        VALUE
    spfile                               string
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    Database opened.
    SQL> show parameter pfile
    NAME                                 TYPE        VALUE
    spfile                               string      C:\ORACLE\PRODUCT\10.1.0\DB_2\
                                                     DATABASE\SPFILELEASE.ORA
    SQL>

  • Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.

    Hi,
    I have a MBP 13' Late 2011 and Yosemite 10.10.2 (14C1514).
    Until yesterday, I was using Garmin ConnectIQ SDK and all was working fine.
    Yesterday, I've updated my system with latest security updates and Xcode updates too (Version 6.2 (6C131e)).
    Since, I can't launch the ConnectIQ simulator app, I have this message in console :
    8/04/2015 15:19:04,103 mds[38]: There was an error parsing the Info.plist for the bundle at URL Info.plist -- file:///Volumes/Leto/connectiq-sdk-mac-1.1.0_2/ios/ConnectIQ.bundle/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x7fa64f44e9a0 [0x7fff7dfc7cf0]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff7df92580 [0x7fff7dfc7cf0]>{contents = "NSDebugDescription"} = <CFString 0x7fa64f44f0a0 [0x7fff7dfc7cf0]>{contents = "Unexpected character b at line 1"}
      1 : <CFString 0x7fff7df9f5e0 [0x7fff7dfc7cf0]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Conversion of string failed.) UserInfo=0x7fa64f44eda0 {NSDebugDescription=Conversion of string failed.}
    I have looked at this file and it looks like a binary plist
    bplist00ß^P^V^A^B^C^D^E^F^G^H
    ^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\^]^^^_ !"$%&'()'+,^[\CFBundleNameWDTXcodeYDTSDKName_^P^XNSHumanReadableCopyrightZDTSDKBuild_^P^YCFBundleDevelopmentRegion_^P^OCFBundleVersi    on_^P^SBuildMachineOSBuild^DTPlatformName_^P^SCFBundlePackageType_^P^ZCFBundleShortVersionString_^P^ZCFBundleSupportedPlatforms_^P^]CFBundleInfoDictionaryVersion_^P^RCFBundleE    xecutableZDTCompiler_^P^PMinimumOSVersion_^P^RCFBundleIdentifier^UIDeviceFamily_^P^QDTPlatformVersion\DTXcodeBuild_^P^QCFBundleSignature_^P^ODTPlatformBuildYConnectIQT0611[iph    oneos8.1o^P-^@C^@o^@p^@y^@r^@i^@g^@h^@t^@ ^@©^@ ^@2^@0^@1^@5^@ ^@G^@a^@r^@m^@i^@n^@.^@ ^@A^@l^@l^@ ^@r^@i^@g^@h^@t^@s^@ ^@r^@e^@s^@e^@r^@v^@e^@d^@.V12B411RenQ1V14C109Xiphoneos    TBNDLS1.0¡#XiPhoneOSS6.0YConnectIQ_^P"com.apple.compilers.llvm.clang.1_0S8.1_^P^Tcom.garmin.ConnectIQ¡*^P^AW6A2008aT????^@^H^@7^@D^@L^@V^@q^@|^@<98>^@ª^@À^@Ï^@å^A^B^A^_^A?^AT^    A_^Ar^A<87>^A<96>^Aª^A·^AË^AÝ^Aç^Aì^Aø^BU^B\^B_^Ba^Bh^Bq^Bv^Bz^B|^B<85>^B<89>^B<93>^B¸^B¼^BÓ^BÕ^B×^Bß^@^@^@^@^@^@^B^A^@^@^@^@^@^@^@-^@^@^@^@^@^@^@^@^@^@^@^@^@^@^Bä
    I guess it is a normal format but my system seems to be unable to read binary plist ?
    I tried some stuff with plutil
    plutil -lint Info.plist
    Info.plist: Unexpected character b at line 1
    Same for convert
    plutil -convert xml1 Info.plist
    Info.plist: Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.
    I also try to download a fresh version of the connectIQ SDK and no changes.
    Any idea ?
    Thanks

    Step by step, how did you arrive at seeing this agreement?

  • Hi, Im from Philippines,.... i am currently using my iPhone 4 (iOs.6.3)it  started when i upgrade it from iOs4 to iOs 6.3 , My iPhone doesnt identify numbers even if its in my contact if its not starting with  +63 ..what will i do?

    Hi, Im from Philippines,.... i am currently using my iPhone 4 (iOs.6.3)it  started when i upgrade it from iOs4 to iOs 6.3 , My iPhone doesnt identify numbers even if its in my contact if its not starting with  +63 ..what will i do?
    I change everything into +63 and i thought everything is already fine,.. and then now , i dont know what happened why it doesnt recognize numbers with +63 anymore

    Hello hsielglad,
    Thank you for your question. iTunes 11.1 is required to update to and sync with iOS 7.  If you are still running iTunes 10.6.3, I recommend trying to obtain the update by going to the iTunes menu and selecting Check for Updates.
    iTunes: How to install the latest version
    http://support.apple.com/kb/HT5654
    If you continue to get the message that iTunes is up to date, you can download the latest version of iTunes here:
    Download iTunes
    http://www.apple.com/itunes/download/
    Once the file downloads, double click on the installation file that downloaded to initiate the installation.
    Best,
    Sheila M.

  • "Layer 1 does not start with a new cell" replicator error

    Hi All,
    I recently sent a dual layer +R DVD off to our replication house and their system is returning a message that says: "Layer 1 of DVD-Video does not start with a new cell".
    I know from reading that the dual-layer breakpoint must be set to the end of a cell, but what does the word "cell" translate into for DVDSP4?
    I had the DVD DL+R set to Automatic and Non-Seamless for output for the break point. Should I just try setting the break point manually at the beginning or ending of a track that would be dubbed as just a little more than half the size of the content? (I know in OTP, the Layer 0 has to be bigger than Layer 1)
    Please Help!
    Cheers,
    Dusty

    Thanks both of you for your replies.
    Eric, I am currently exporting DDPs to send in to the replicator. I also emailed them asking if they accept this format for delivery. (Which I would hope they would, as it is, an answer to DLT of sorts) Thanks for bringing this up, DDP is new to me, as this is our first DL project for replication.
    Drew, to answer your reply, yes I have two viable markers (chapter markers) that show up in black, not grayed out, in the tab you mentioned under formatting. I chose manual break point selection for this last disc I burned and chose chapter 4 of that track. (chapter 4 and chapter 5 of track 6 are only options) I have to assume that the "automatic" setting was selecting chapter 5, as it had to see that as the last viable marker available to select, as described in the DVDSP4 manual.
    DVDSP4 says that all markers are considered cells- Or actually that tracks are cells and that the markers within them make up more cells. So my question, outside of DDP option, would be, "what truly constitutes a cell boundary in DVDSP4?" Is it the markers within the tracks or the beginning or ends of the tracks themselves?
    As a side note, I burned the disc that received the error, "Layer 1 doesn't start with a new cell" from an IMG i created from DVDSP4 through Disk Utility. Word is that IMG's somehow don't include breakpoint information.
    So at this point I don't know if it is the IMG or the fact that DVDSP4 wants the break at one of two possible chapter markers in track 6.
    (Some more background- this is a TV show season DVD, with thirteen tracks of video, each with 12-14 chapter markers a piece.)
    Any more thoughts to help clear the air on what constitutes a true new cell boundary?
    Thanks sooo much Eric and Drew, I know this a long read.
    Cheers,
    Dusty

  • Dialog Instance installation - Error u0093Service Not Started u0093

    Hi All,
    We are facing some issues while installing Dialog Instance on Windows 2003 server. Please help me on this...
    Below are the Central Instance Details:
    •     SAP Component Version: SAP NetWeaver 2004s
    •     Basis Release: 700
    •     Kernel Release : 700
    •     Patch Level : 111
    •     Operating System: AIX 5.2
    •     Database : Oracle 10.2.0
    •     Central Instance host: centralhost
    •     SID : CID
    Dialog Instance Details:
    •     SAP Component Version: SAP NetWeaver 2004s
    •     Operating System: Windows 2003 Server(SP2 32 Bit)
    •     Dialog Instance host: dialoghost
    •     Instance No: 02
    In Step 8 of installation, we are getting error “Service Not Started “
    sapinst.log file content :-
    INFO 2008-02-18 03:46:44
    Creating SAP start service of instance CID/D02...
    INFO 2008-02-18 03:46:45
    Creating file C:\Program Files\sapinst_instdir\NW04S\LM\AS\ORA\DI\sapstartsrv.exe.log.
    INFO 2008-02-18 03:46:45
    Output of D:\usr\sap\CID\D02\exe\sapstartsrv.exe -r -q -p
    centralhost\sapmnt\CID\SYS\profile\START_D02_DIALOGHOST -s CID -n 02 -U DIALOGHOST\SAPServiceCID -P XXXXXX -e DIALOGHOST\cidadm is written to the logfile sapstartsrv.exe.log.
    WARNING 2008-02-18 03:46:51
    Execution of the command "D:\usr\sap\CID\D02\exe\sapstartsrv.exe -r -q -p
    centralhost\sapmnt\CID\SYS\profile\START_D02_DIALOGHOST -s CID -n 02 -U DIALOGHOST\SAPServiceCID -P XXXXXX -e DIALOGHOST\cidadm" finished with return code -1. Output:
    Service not started.
    ERROR 2008-02-18 03:46:52
    MOS-01011  'D:/usr/sap/CID/D02/exe/sapstartsrv.exe' returned with '-1'.
    ERROR 2008-02-18 03:46:52
    MOS-01011  'D:/usr/sap/CID/D02/exe/sapstartsrv.exe' returned with '-1'.
    ERROR 2008-02-18 03:46:52
    FCO-00011  The step createService with step key |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|ind|ind|ind|ind|1|0|createService was executed with status ERROR .
    Service User SAPSERVICECID is aligned to administrator group.
    And when we tried to start the windows service (SAPCID_02) we got below message
    "The SAPCID_02 service on Local computer Started and then stopped. Some Services stop automatoically,if they have no work to do, for example , the performane logs and Alert service"
    Please help me on this..
    Thanks..
    Preethish

    Hi Haynes,
    From windows machine we can access the Dilaog instance profile.
    Path to executable in SAPCID_02 service is "D:\usr\sap\CID\D02\exe\sapstartsrv.exe" pf="
    centalhost\sapmnt\CID\SYS\profile\START_D02_DIALOGHOST"
    On Cental Instance( AIX machine) :-
    CI profiles are in " /sapmnt/CID/profile " path
    and DI profiles are in " /sapmnt/CID/SYS/profile " path
    centralhost:cidadm 2> cd /sapmnt/CID/profile
    centralhost:cidadm 3> ls -l
    total 64
    -rw-rr   1 CIDadm   sapsys         4958 Feb 12 20:40 CID_DVEBMGS00_CENTRALHOST
    -rw-rr   1 CIDadm   sapsys         2272 Feb 12 18:39 DEFAULT.PFL
    -rw-rr   1 CIDadm   sapsys         3826 Nov 20 02:25 START_DVEBMGS00_CENTRALHOST
    drwxr-xr-x   2 CIDadm   sapsys          256 Nov 02 02:23 oracle
    centralhost:cidadm 4> cd /sapmnt/CID/SYS/profile
    centralhost:cidadm 5> ls -l
    total 40
    -rwxrr   1 CIDadm   sapsys          303 Feb 17 19:40 CID_D02_DIALOGHOST
    -rwxrr   1 CIDadm   sapsys         2307 Feb 14 09:43 DEFAULT.PFL
    -rwxrr   1 CIDadm   sapsys         1013 Feb 17 19:40 START_D02_DIALOGHOST
    drwxr-xr-x   2 CIDadm   sapsys          256 Feb 14 14:06 oracle
    centralhost:CIDadm 6>

  • Managed server is not starting with MSI mode

    Managed server not starting with MSI mode even though we enabled the managed server independence mode
    Started the admin server and managed server first time enabled the MSI mode.
    Restarted all admin and Managed server.
    We have tested the following scenarios
    scenarios1: Stopped the Admin server and restarted the Managed server with MSI mode it comes up.
    scenarios2:Admin server is running but not able to connect to the managed server
    In this scenario
    we have removed the Network cable and restarted the managed server its throwing ldap error.
    <Aug 14, 2010 1:58:32 PM SGT> <Error> <Security> <BEA-090870> <The realm "myrealm" failed to be loaded: weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: weblogic.security.spi.ProviderInitializationException: [Security:090730]Failed to verify credential mapper LDAP hierarchy
    netscape.ldap.LDAPException: failed to connect to server ldap://sgppsr00383:16827 (91)
    at netscape.ldap.LDAPConnSetupMgr.connectServer(LDAPConnSetupMgr.java:515)
    at netscape.ldap.LDAPConnSetupMgr.openSerial(LDAPConnSetupMgr.java:435) at netscape.ldap.LDAPConnSetupMgr.connect(LDAPConnSetupMgr.java:274)
    at netscape.ldap.LDAPConnSetupMgr.openConnection(LDAPConnSetupMgr.java:199)
    at netscape.ldap.LDAPConnThread.connect(LDAPConnThread.java:109)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:1083) at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:954)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:781)
    at weblogic.ldap.EmbeddedLDAPConnection.getAndInitDelegate(EmbeddedLDAPConnection.java:2031)
    at weblogic.ldap.EmbeddedLDAPConnection.add(EmbeddedLDAPConnection.java:1065) at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.addEntry(DefaultCredentialMapperLDAPHelper.java:537)
    at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.createOrgUnit(DefaultCredentialMapperLDAPHelper.java:432)
    at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.verifyHierarchy(DefaultCredentialMapperLDAPHelper.java:407)
    at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.<init>(DefaultCredentialMapperLDAPHelper.java:146) at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.getInstance(DefaultCredentialMapperLDAPHelper.java:112)
    at weblogic.security.providers.credentials.DefaultCredentialMapperProviderImpl.initialize(DefaultCredentialMapperProviderImpl.java:93)
    at com.bea.common.security.internal.legacy.service.SecurityProviderImpl.init(SecurityProviderImpl.java:53)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:340) at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:292)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:263)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:71)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:461) at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:822)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:851)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1007)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:854) at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    - with nested exception:
    Managed server looking for ldap configuration from admin server.
    I have checked the all configuration file same on both managed server and admin server.
    Please let me know How to recover the managed server in this scenario.
    Edited by: user10773210 on Aug 16, 2010 11:55 PM
    Edited by: user10773210 on Aug 17, 2010 2:38 AM

    thanks for the reply....
    the managed server is pointing to jrokit_160_22_D1.1.1-3 jdk....the server has enough ram also...while running the managed server showing status 'STARTING' for long period of time...and the admin server health goes 'Warning' because of threadpool....when we stop the managed server then adminserver health becomes ok...

  • Error : Could not start the SSO service. Please check the configuration

    Hi,
    I am getting the above error when enabling the"Agent-Based Windows Single Sign-On with Active Directory (Kerberos0".
    I already twice did the KTpass.Timing is perfect bet CAS and AD.Please look into this CAS LOG file and advice me the next step to solve this issue.
    Thanks
    swami

    Until you perform the configuration on the AD server, the following message will appear:
    Error: Could not start the SSO service. Please check the configuration.
    So configure the AD server so that the error message will not appear again.

  • Cannot open file, Photoshop is not compatible with this version of photoshop. 2 weeks

    This has been a problem for almost 2 weeks now. Cant save any work in photoshop, files are unretrievable once closed. I get the same error message. I spent all of last week online with Adobe Tech support, screen sharing conference etc, now iMac isnt working properly. AAARRFGGHH.
    Same prob on iMac and new Macbook pro
    Last week Adobe via screen share uninstalled and re-installed Photoshop, took a few hours and still nothing. I have lost many hours work here. Cant reach Adobe and I am really pissed off. Cant reach a human via the support emails they aren't working. I have asked to speak to a Programmer or Manager for help with this and I have received none!
    Latest message sent through to Support:
    OLd support file not opening.
    I cant open this one:
    1/26/11 Case #0182004961: Unable to open some photoshop documents.
    Open - Pending Adobe Response
    So we need to start a new way of communicating. I am really upset with Adobe, my Photoshop has been working improperly for almost 2 weeks now. Adobe accessed my computer last week and now MY COMPUTER is not working Properly. I NEED ALL OF THIS FIXED IMMEDIATELY PLEASE!!!!!!
    DO NOT withdraw this support topic. Please get a Manager to address this issue ASAP!!!!!!
    If anyone reading this can get me through to the right person I would appreciate it. Hopefully Adobe will make reparation for all the trouble caused and time lost!
    I should add that last night I tried to contact Adobe to see what the hold up was. I went and tried to open up the case file (No it had not been withdrawn and was still active), but it would not open. So, I started up a new support file with a whole new case number, I received an email this morning from Adobe saying that I would have to communicate with them through the original case #. Went to respond to this email today and the NEW case file had been withdrawn.
    Yes, I have read all the user forums on this stuff for months, NO I am not using any Anti Virus stuff, No I did not upgrade my Macs at the time of the prob appearing! Thanks
    3. Jan 26, 2011 6:55 PM in response to: Charlie.D
    Re: Cannot open file, Photoshop is not compatible with this version of photoshop. 2 weeks
    Thanks so Much Charlie. Could you get someone from Tech Support to contact me via email with a return address. I really feel this needs to be escalated to Management now. Thanks

    Here some info about my hw /sw / diag
    If you need more, please ask me.
        Hardware Overview:
          Machine Name: Power Mac G5
          Machine Model: PowerMac11,2
          CPU Type: PowerPC G5 (1.1)
          Number Of CPUs: 2
          CPU Speed: 2.3 GHz
          L2 Cache (per CPU): 1 MB
          Memory: 2.5 GB
          Bus Speed: 1.15 GHz
          Boot ROM Version: 5.2.7f1
    Software:
        System Software Overview:
          System Version: Mac OS X 10.4.11 (8S165)
          Kernel Version: Darwin 8.11.0
    Diagnostics:
        Power On Self-Test:
          Last Run: 06/05/11 15:14
          Result: Passed
    Applications:
        AASync:
          Version: 1.2.5.1
          Last Modified: 03/05/07 16:42
          Kind: Universal
          Get Info String: AASync version 1.2.5.1, Copyright 2005-2006 Robert Vasvari.
          Location: /Applications/AASync.app
        Acrobat.com:
          Version: 1.2.443
          Last Modified: 16/07/09 12:20
          Kind: Universal
          Get Info String: 1.2.443, 08/06/2008 14:56
          Location: /Applications/Adobe/Acrobat.com.app
        Acrobat Distiller:
          Version: 9.4.2
          Last Modified: 16/07/09 12:22
          Kind: Universal
          Get Info String: Acrobat Distiller™ 9.4.2, ©COPYRIGHT_YEAR_FROM-2010 Adobe Systems Incorporated. All rights reserved.
          Location: /Applications/Adobe Acrobat 9 Pro/Acrobat Distiller.app
        Acrobat Uninstaller:
          Version: Acrobat Uninstaller version 9.4.4
          Last Modified: 16/07/09 12:24
          Kind: Universal
          Get Info String: Acrobat Uninstaller version 9.4.4, Copyright © 2004-2011 by Adobe Systems, Incorporated.  All rights reserved.
          Location: /Applications/Adobe Acrobat 9 Pro/Acrobat Uninstaller.app
        Adobe Acrobat Pro:
          Version: 9.4.4
          Last Modified: 08/02/11 08:57
          Kind: Universal
          Get Info String: Adobe® Acrobat® 9.4.4, ©1984-2010 Adobe Systems Incorporated. All rights reserved.
          Location: /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app
        Bridge:
          Version: 1.0.4.6
          Last Modified: 23/05/06 22:54
          Kind: PowerPC
          Get Info String: 1.0.4.6 (104504), Copyright 2003-2005, Adobe
          Location: /Applications/Adobe Bridge/Bridge.app
        Bridge CS3:
          Version: 2.1.1.9
          Last Modified: 14/03/08 15:48
          Kind: Universal
          Get Info String: 2.1.1.9 (124992), Copyright 2003-2007, Adobe Systems, Inc.
          Location: /Applications/Adobe Bridge CS3/Bridge CS3.app
        Adobe Bridge CS4:
          Version: 3.0.0.464
          Last Modified: 16/07/09 12:17
          Kind: Universal
          Get Info String: 3.0.0.464 (144651), Copyright 2003-2007, Adobe Systems, Inc.
          Location: /Applications/Adobe Bridge CS4/Adobe Bridge CS4.app
        Device Central:
          Version: 1.1.0
          Last Modified: 14/03/08 16:11
          Kind: Universal
          Location: /Applications/Adobe Device Central CS3/Device Central.app
        Device Central:
          Version: 2.1.0
          Last Modified: 16/07/09 12:17
          Kind: Universal
          Get Info String: 2.1.0, Copyright © 2007-2008 Adobe Systems Incorporated
          Location: /Applications/Adobe Device Central CS4/Device Central.app
        Extension Manager:
          Version: "2.1.0.115" © 2000-2008 Adobe Systems Incorporated
          Last Modified: 16/07/09 12:12
          Kind: Universal
          Get Info String: "2.1.0.115" © 2000-2008 Adobe Systems Inc.
          Location: /Applications/Adobe Extension Manager CS4/Adobe Extension Manager CS4.app
        Adobe Flash CS4:
          Version: 10.0.2.566
          Last Modified: 22/02/10 17:33
          Kind: Universal
          Get Info String: 10.0.2.566, Copyright © 1993-2008 Adobe Systems Incorporated
          Location: /Applications/Adobe Flash CS4/Adobe Flash CS4.app
        Flash Player:
          Version: 10.0.22.87
          Last Modified: 22/02/10 17:33
          Kind: Native (Preferred) or Classic
          Get Info String: Adobe Flash Player 10.0 r22 Copyright (c) 1996-2009 Adobe Macromedia Software LLC. All rights reserved
          Location: /Applications/Adobe Flash CS4/Players/Debug/Flash Player.app
        Flash Player:
          Version: 10.0.22.87
          Last Modified: 22/02/10 17:33
          Kind: Native (Preferred) or Classic
          Get Info String: Adobe Flash Player 10.0 r22 Copyright (c) 1996-2009 Adobe Macromedia Software LLC. All rights reserved
          Location: /Applications/Adobe Flash CS4/Players/Flash Player.app
        Flash Player:
          Version: 10.0.22.87
          Last Modified: 22/02/10 17:33
          Kind: Native (Preferred) or Classic
          Get Info String: Adobe Flash Player 10.0 r22 Copyright (c) 1996-2009 Adobe Macromedia Software LLC. All rights reserved
          Location: /Applications/Adobe Flash CS4/Players/Release/Flash Player.app
        Adobe Help Center:
          Version: Adobe Help Center 1.0.2.44
          Last Modified: 08/05/06 19:10
          Kind: PowerPC
          Get Info String: Adobe Help Center 1.0.2.44 (C) 2005 Adobe Systems, Inc. All rights reserved.
          Location: /Applications/Adobe Help Center.app
        Adobe Help Viewer 1.0:
          Version: 1.0
          Last Modified: 05/11/07 10:13
          Kind: Universal
          Get Info String: 1.0.0.185
          Location: /Applications/Adobe Help Viewer 1.0.app
        Adobe Help Viewer 1.1:
          Version: 1.1
          Last Modified: 05/11/07 10:04
          Kind: Universal
          Get Info String: 1.1.0.143
          Location: /Applications/Adobe Help Viewer 1.1.app
        Illustrator:
          Version: 12.0.0
          Last Modified: 08/05/06 19:29
          Kind: PowerPC
          Get Info String: 12.0.0, Copyright © 1987-2005 Adobe Systems Inc.  All rights reserved.
          Location: /Applications/Adobe Illustrator CS2/Adobe Illustrator.app
        Analyze Documents:
          Last Modified: 08/05/06 19:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Analyze Documents.localized/Analyze Documents.app
        Make Calendar:
          Last Modified: 08/05/06 19:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Calendar.localized/Make Calendar.app
        Collect for Output:
          Last Modified: 08/05/06 19:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Collect for Output.localized/Collect for Output.app
        Contact Sheets:
          Last Modified: 08/05/06 19:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Contact Sheet Demo.localized/Contact Sheets.app
        Dataset Batch PDF from Text:
          Last Modified: 08/05/06 19:29
          Kind: PowerPC
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Datasets.localized/Dataset Batch PDF from Text.app
        Export Flash Animation:
          Last Modified: 08/05/06 19:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Export Flash Animation.localized/Export Flash Animation.app
        Web Gallery:
          Last Modified: 08/05/06 19:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Web Gallery.localized/Web Gallery.app
        Illustrator:
          Version: 13.0.1
          Last Modified: 05/11/07 10:16
          Kind: Universal
          Get Info String: 13.0.1, Copyright © 1987-2007 Adobe Systems Inc.  All rights reserved.
          Location: /Applications/Adobe Illustrator CS3/Adobe Illustrator.app
        Analyze Documents:
          Last Modified: 05/11/07 10:16
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS3/Scripting.localized/Sample Scripts.localized/AppleScript/Analyze Documents.localized/Analyze Documents.app
        Make Calendar:
          Last Modified: 05/11/07 10:16
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS3/Scripting.localized/Sample Scripts.localized/AppleScript/Calendar.localized/Make Calendar.app
        Collect for Output:
          Last Modified: 05/11/07 10:16
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS3/Scripting.localized/Sample Scripts.localized/AppleScript/Collect for Output.localized/Collect for Output.app
        Contact Sheets:
          Last Modified: 05/11/07 10:16
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS3/Scripting.localized/Sample Scripts.localized/AppleScript/Contact Sheet Demo.localized/Contact Sheets.app
        Export Flash Animation:
          Last Modified: 05/11/07 10:16
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS3/Scripting.localized/Sample Scripts.localized/AppleScript/Export Flash Animation.localized/Export Flash Animation.app
        Web Gallery:
          Last Modified: 05/11/07 10:16
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS3/Scripting.localized/Sample Scripts.localized/AppleScript/Web Gallery.localized/Web Gallery.app
        Illustrator:
          Version: 367
          Last Modified: 16/07/09 12:30
          Kind: Universal
          Get Info String: 14.0.0, Copyright © 1987-2008 Adobe Systems Inc.  All rights reserved.
          Location: /Applications/Adobe Illustrator CS4/Adobe Illustrator.app
        Analyze Documents:
          Last Modified: 16/07/09 12:30
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS4/Scripting.localized/Sample Scripts.localized/AppleScript.localized/Analyze Documents.localized/Analyze Documents.app
        Make Calendar:
          Last Modified: 16/07/09 12:30
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS4/Scripting.localized/Sample Scripts.localized/AppleScript.localized/Calendar.localized/Make Calendar.app
        Contact Sheets:
          Last Modified: 16/07/09 12:30
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS4/Scripting.localized/Sample Scripts.localized/AppleScript.localized/Contact Sheet Demo.localized/Contact Sheets.app
        Export Flash Animation:
          Last Modified: 16/07/09 12:30
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS4/Scripting.localized/Sample Scripts.localized/AppleScript.localized/Export Flash Animation.localized/Export Flash Animation.app
        Web Gallery:
          Last Modified: 16/07/09 12:30
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Illustrator CS4/Scripting.localized/Sample Scripts.localized/AppleScript.localized/Web Gallery.localized/Web Gallery.app
        Adobe InDesign CS2:
          Version: 4.0.2.633
          Last Modified: 08/05/06 19:24
          Kind: PowerPC
          Get Info String: 4.0.2, Copyright 2000-2005 Adobe Systems Incorporated. All rights reserved.
          Location: /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app
        Adobe InDesign CS3:
          Version: 5.0.4.682
          Last Modified: 28/10/08 09:32
          Kind: Universal
          Get Info String: 5.0.4, Copyright 2000-2008 Adobe Systems Incorporated. All rights reserved.
          Location: /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app
        Adobe InDesign CS4:
          Version: 6.0.6.622
          Last Modified: 16/07/09 12:36
          Kind: Universal
          Get Info String: 6.0.6, Copyright 2000-2009 Adobe Systems Incorporated. All rights reserved.
          Location: /Applications/Adobe InDesign CS4/Adobe InDesign CS4.app
        Adobe Media Encoder CS4:
          Version: 4.2
          Last Modified: 22/02/10 17:32
          Kind: Universal
          Get Info String: 4.2.0, Copyright 2002-2009 Adobe Systems Incorporated
          Location: /Applications/Adobe Media Encoder CS4/Adobe Media Encoder CS4.app
        Setup:
          Version: 2.0.131.0
          Last Modified: 22/02/10 17:32
          Kind: Universal
          Get Info String: 2.0.131.0, Copyright © 2005-2008 Adobe Systems Incorporated. All rights reserved.
          Location: /Applications/Adobe Media Encoder CS4/PCI/AMEImporters/Setup.app
        Adobe Media Player:
          Version: 1.1
          Last Modified: 16/07/09 12:15
          Kind: Universal
          Get Info String: 1.1,
          Location: /Applications/Adobe Media Player.app
        Adobe ImageReady CS2:
          Version: 9.0x246
          Last Modified: 08/05/06 19:13
          Kind: PowerPC
          Get Info String: 9.0x246, Copyright © 1998-2005 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Adobe ImageReady CS2.app
        Adobe Photoshop CS2:
          Version: 9.0.1 (9.0.1x294)
          Last Modified: 23/05/06 22:58
          Kind: PowerPC
          Get Info String: 9.0.1 (9.0.1x294), Copyright  ©1990-2005 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app
        Crea GIF (128 colori):
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea GIF (128 colori).exe
        Crea GIF (32, senza dithering):
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea GIF (32, senza dithering).exe
        Crea GIF (64 colori):
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea GIF (64 colori).exe
        Crea JPEG (qualità 10):
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea JPEG (qualità 10).exe
        Crea JPEG (qualità 30):
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea JPEG (qualità 30).exe
        Crea JPEG (qualità 60):
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea JPEG (qualità 60).exe
        Crea pulsante:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Crea pulsante.exe
        Mantieni 350, Crea JPG 30:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Mantieni 350, Crea JPG 30.exe
        Mantieni a 200x200 pixel:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Mantieni a 200x200 pixel.exe
        Mantieni a 64X64 pixel:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Mantieni a 64X64 pixel.exe
        Maschera di contrasto:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Maschera di contrasto.exe
        Miniatura diapo metallo:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Miniatura diapo metallo.exe
        Miniatura diapo:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Miniatura diapo.exe
        Miniatura rett arrotondato:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Miniatura rett arrotondato.exe
        Salvat. a più dimensioni:
          Last Modified: 11/05/05 22:19
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di ImageReady/Salvat. a più dimensioni.exe
        Cornice ombreggiata:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Cornice ombreggiata.exe
        Crea pulsante:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Crea pulsante.exe
        Crea tonalità seppia:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Crea tonalità seppia.exe
        Foto invecchiata:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Foto invecchiata.exe
        Mantieni a 300 pixel:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Mantieni a 300 pixel.exe
        Mantieni a 64 pixel:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Mantieni a 64 pixel.exe
        Mod metodo condizionale:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Mod metodo condizionale.exe
        Salva come JPEG media:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Salva come JPEG media.exe
        Salva come Photoshop PDF:
          Version: 9.0
          Last Modified: 11/05/05 15:14
          Kind: Native (Preferred) or Classic
          Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS2/Esempi/Droplet/Droplet di Photoshop/Salva come Photoshop PDF.exe
        Adobe Photoshop CS3:
          Version: 10.0.1 (10.0.1x20071012 [20071012.r.1644 2007/10/12:09:30:00 cutoff; r branch])
          Last Modified: 14/03/08 15:47
          Kind: Universal
          Get Info String: 10.0.1 (10.0.1x20071012 [20071012.r.1644 2007/10/12:09:30:00 cutoff; r branch]) © 1990-2007 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app
        Adobe Photoshop CS4:
          Version: 11.0.2 (11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch])
          Last Modified: 16/07/09 12:32
          Kind: Universal
          Get Info String: 11.0.2 (11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]) © 1990-2010 Adobe Systems Incorporated
          Location: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app
        Adobe Stock Photos CS3:
          Version: Adobe Stock Photos 1.5.0.466
          Last Modified: 05/11/07 10:04
          Kind: Universal
          Get Info String: Adobe Stock Photos 1.5.0.466 (C) 2005 Adobe Systems, Inc. All rights reserved.
          Location: /Applications/Adobe Stock Photos CS3/Adobe Stock Photos CS3.app
        Adobe Stock Photos:
          Last Modified: 23/11/05 19:07
          Kind: Native (Preferred) or Classic
          Location: /Applications/Adobe Stock Photos.app
        VersionCueCS2:
          Version: 2.0
          Last Modified: 08/05/06 19:21
          Kind: PowerPC
          Get Info String: 2.0, Copyright  ©2001-2004 Adobe Systems Incorporated
          Location: /Applications/Adobe Version Cue CS2/bin/VersionCueCS2.app
        VersionCueCS2Status:
          Version: 1.0.0
          Last Modified: 08/05/06 19:21
          Kind: PowerPC
          Location: /Applications/Adobe Version Cue CS2/bin/VersionCueCS2Status.app
        VC2Native:
          Version: 2.0
          Last Modified: 08/05/06 19:21
          Get Info String: 2.0.0, © 2003-2004 Adobe Systems Incorporated
          Location: /Applications/Adobe Version Cue CS2/plugins/com.adobe.versioncue.nativecomm_2.0.0/res/macosx/VC2Native.app
        Uninstall Version Cue CS2:
          Version: 0.1
          Last Modified: 08/05/06 19:21
          Kind: PowerPC
          Location: /Applications/Adobe Version Cue CS2/Uninstall Version Cue CS2.app
        Agamik Barcode Identifier:
          Version: 0.1
          Last Modified: 04/02/08 22:11
          Kind: PowerPC
          Location: /Applications/Agamik barcode/Agamik BarCode Identifier.app
        Agamik BarCoder:
          Version: 4.38
          Last Modified: 31/12/09 15:18
          Kind: Universal
          Location: /Applications/Agamik barcode/Agamik BarCoder 4.38.app
        aMSN:
          Version: 0.97
          Last Modified: 21/09/07 22:40
          Kind: Universal
          Get Info String: aMSN 0.97
    TclTk 8.4.16
          Location: /Applications/aMSN.app
        AppleScript Utility:
          Version: 1.0
          Last Modified: 05/10/05 10:51
          Kind: PowerPC
          Location: /Applications/AppleScript/AppleScript Utility.app
        Folder Actions Setup:
          Version: 1.1
          Last Modified: 05/10/05 10:51
          Kind: PowerPC
          Location: /Applications/AppleScript/Folder Actions Setup.app
        Script Editor:
          Version: 2.1.2
          Last Modified: 22/12/09 10:24
          Kind: PowerPC
          Get Info String: Script Editor 2.1.1
          Location: /Applications/AppleScript/Script Editor.app
        Art Directors Toolkit:
          Version: 4.2
          Last Modified: 05/10/05 10:53
          Kind: PowerPC
          Get Info String: 4.2    (v29), Copyright 2001-2005 Code Line Communications
          Location: /Applications/Art Directors Toolkit 4/Art Directors Toolkit.app
        Automator:
          Version: 1.0.5
          Last Modified: 07/12/07 09:19
          Kind: PowerPC
          Get Info String: Automator version 1.0.5, Copyright 2004-2007 Apple Computer, Inc.
          Location: /Applications/Automator.app
        Bar Code Pro:
          Version: Bar Code Pro version 6.1.2
          Last Modified: 24/09/08 12:45
          Kind: Native (Preferred) or Classic
          Get Info String: Bar Code Pro version 6.1.2, Copyright Bar Code Pro 2008 by SNX Software Inc. All rights reserved.
          Location: /Applications/Bar Code Pro 6.14 Demo/Bar Code Pro.app
        BCP6Converter:
          Version: version 1.01
          Last Modified: 12/05/04 10:58
          Kind: Classic
          Get Info String: version 1.01 © 2004 SNX. All rights reserved.
          Location: /Applications/Bar Code Pro 6.14 Demo/Bar Code Utilities/BCP6Converter
        BarcodeGenerator:
          Version: 2.4
          Last Modified: 23/12/07 11:48
          Kind: PowerPC
          Get Info String: V2.4 (16.01.2005)
          Location: /Applications/Barcode Generator Eval/BarcodeGenerator.app
        barCodeCreator:
          Version: 1.1
          Last Modified: 14/11/02 16:35
          Kind: PowerPC
          Location: /Applications/barCodeCreator.app
        Calculator:
          Version: 4.0.6
          Last Modified: 07/12/07 09:19
          Kind: PowerPC
          Get Info String: 4.0.6
          Location: /Applications/Calculator.app
        Carbon Copy Cloner:
          Version: 3.3
          Last Modified: 23/09/09 03:41
          Kind: Universal
          Get Info String: Carbon Copy Cloner version 3.3, Copyright 2002-2009 Mike Bombich.
          Location: /Applications/Carbon Copy Cloner.app
        CDFinder:
          Version: 4.6
          Last Modified: 16/05/06 11:30
          Kind: Universal
          Get Info String: 4.6, Copyright 1995-2006 Norbert M. Doerner, wfs
          Location: /Applications/CDFinder 4.6/CDFinder.app
        Installer:
          Last Modified: 15/05/06 16:06
          Kind: Native (Preferred) or Classic
          Location: /Applications/CDFinder 4.6/Extras/CDFinder CMM/Mac OS X/Installer.app
        Update in CDFinder & Eject X:
          Last Modified: 07/04/05 10:29
          Kind: Native (Preferred) or Classic
          Location: /Applications/CDFinder 4.6/Extras/Update in CDFinder & Eject X.app
        Incremental:
          Version: 03
          Last Modified: 16/05/06 11:30
          Kind: PowerPC
          Location: /Applications/CDFinder 4.6/Scripts/Incrémental (Find New Files)/Incremental.app
        Chess:
          Version: 2.1
          Last Modified: 05/10/05 10:51
          Kind: PowerPC
          Get Info String: Chess version 2.1, Copyright 2003-2004 Apple Computer, Inc.
          Location: /Applications/Chess.app
        Dashboard:
          Version: 1.0
          Last Modified: 07/12/07 09:19
          Kind: PowerPC
          Location: /Applications/Dashboard.app
        Dictionary:
          Version: 1.0.2
          Last Modified: 07/12/07 09:19
          Kind: PowerPC
          Location: /Applications/Dictionary.app
        Dropbox:
          Version: Dropbox 1.0.28
          Last Modified: 27/01/11 07:16
          Kind: Universal
          Location: /Applications/Dropbox.app
        DVD Player:
          Visible: Yes
          Identifier: com.apple.preference.general
          Location: /System/Library/PreferencePanes/Appearance.prefPane
        Bluetooth:
          Version: 1.9.5
          Supported by: Apple
          Visible: No
          Identifier: com.apple.preferences.Bluetooth
          Location: /System/Library/PreferencePanes/Bluetooth.prefPane
        CDs & DVDs:
          Version: 1.4
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.digihub.discs
          Location: /System/Library/PreferencePanes/DigiHubDiscs.prefPane
        Classic:
          Version: 1.1
          Supported by: Apple
          Visible: No
          Identifier: com.apple.preference.classic
          Location: /System/Library/PreferencePanes/Classic.prefPane
        Dashboard & Exposé:
          Version: 1.1.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.expose
          Location: /System/Library/PreferencePanes/Expose.prefPane
        Date & Time:
          Version: 2.2
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.datetime
          Location: /System/Library/PreferencePanes/DateAndTime.prefPane
        Desktop & Screen Saver:
          Version: 1.3.2
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.desktopscreeneffect
          Location: /System/Library/PreferencePanes/DesktopScreenEffectsPref.prefPane
        Displays:
          Version: 2.1.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.displays
          Location: /System/Library/PreferencePanes/Displays.prefPane
        Dock:
          Version: 1.4
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.dock
          Location: /System/Library/PreferencePanes/Dock.prefPane
        Energy Saver:
          Version: 3.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.energysaver
          Location: /System/Library/PreferencePanes/EnergySaver.prefPane
        Growl:
          Version: 1.1.6
          Supported by: 3rd Party
          Visible: Yes
          Identifier: com.growl.prefpanel
          Location: /Users/admin/Library/PreferencePanes/Growl.prefPane
        Ink:
          Version: 1.2
          Supported by: Apple
          Visible: No
          Identifier: com.apple.preference.ink
          Location: /System/Library/PreferencePanes/Ink.prefPane
        International:
          Version: 1.2.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.Localization
          Location: /System/Library/PreferencePanes/Localization.prefPane
        Keyboard & Mouse:
          Version: 3.2
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.keyboard
          Location: /System/Library/PreferencePanes/Keyboard.prefPane
        Network:
          Version: 1.7
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.network
          Location: /System/Library/PreferencePanes/Network.prefPane
        Print & Fax:
          Version: 2.0
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.printfax
          Location: /System/Library/PreferencePanes/PrintAndFax.prefPane
        QuickTime:
          Version: 7.4
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.quicktime
          Location: /System/Library/PreferencePanes/QuickTime.prefPane
        Security:
          Version: 1.2.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.security
          Location: /System/Library/PreferencePanes/Security.prefPane
        Sharing:
          Version: 1.4.4
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preferences.sharing
          Location: /System/Library/PreferencePanes/SharingPref.prefPane
        Software Update:
          Version: 2.0
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preferences.softwareupdate
          Location: /System/Library/PreferencePanes/SoftwareUpdate.prefPane
        Sound:
          Version: 2.3.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.sound
          Location: /System/Library/PreferencePanes/Sound.prefPane
        Speech:
          Version: 3.3
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.speech
          Location: /System/Library/PreferencePanes/Speech.prefPane
        Spotlight:
          Version: 1.1
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.spotlight
          Location: /System/Library/PreferencePanes/Spotlight.prefPane
        Startup Disk:
          Version: 10.4
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.startupdisk
          Location: /System/Library/PreferencePanes/StartupDisk.prefPane
        StuffIt AVR:
          Version: 10.0.1
          Supported by: 3rd Party
          Visible: Yes
          Identifier: com.stuffit.prefs.AVR
          Location: /Library/PreferencePanes/StuffIt AVR.prefPane
        Universal Access:
          Version: 2.4
          Supported by: Apple
          Visible: Yes
          Identifier: com.apple.preference.universalaccess
          Location: /System/Library/PreferencePanes/UniversalAccessPref.prefPane
    Startup Items:
        Apache:
          Description: Apache web server
          Location: /System/Library/StartupItems/Apache
          Provides: Web Server
          Uses: Disks, NFS
        AppleShare:
          Description: Apple File Service
          Location: /System/Library/StartupItems/AppleShare
          Provides: Apple File Service
          Requires: Disks
        AppServices:
          Description: application services
          Location: /System/Library/StartupItems/AppServices
          Provides: Core Services
        AuthServer:
          Description: authentication service
          Location: /System/Library/StartupItems/AuthServer
          Provides: TIM
        CrashReporter:
          Description: crash reporter
          Location: /System/Library/StartupItems/CrashReporter
          Provides: Crash Reporter
          Messages:
              Start: Starting crash reporter
              Stop: Stopping crash reporter
          Order Preference: Early
        Disks:
          Description: local disks
          Location: /System/Library/StartupItems/Disks
          Provides: Disks
          Requires: SecurityServer
          Uses: System Tuning
        FibreChannel:
          Description: fibrechannel
          Location: /System/Library/StartupItems/FibreChannel
          Provides: FibreChannel
          Requires: SecurityServer
          Order Preference: Early
        IFCStart:
          Description: IFC
          Location: /System/Library/StartupItems/IFCStart
          Provides: IFC
          Messages:
              Start: Building international caches
              Stop: Stopping build of international caches
          Order Preference: Last
        IPServices:
          Description: Internet services
          Location: /System/Library/StartupItems/IPServices
          Provides: Super Server, Config Server
          Uses: mDNSResponder, Portmap
        Metadata:
          Description: Metadata Server
          Location: /System/Library/StartupItems/Metadata
          Provides: Metadata Server
          Requires: Core Services, Disks
        NetworkTime:
          Description: network time synchronization
          Location: /System/Library/StartupItems/NetworkTime
          Provides: Network Time
        NFS:
          Description: network file system
          Location: /System/Library/StartupItems/NFS
          Provides: NFS
          Uses: Disks
        NIS:
          Description: Network Information Service
          Location: /System/Library/StartupItems/NIS
          Provides: NIS
        PrintingServices:
          Description: Printing Services
          Location: /System/Library/StartupItems/PrintingServices
          Provides: PrintingServices
          Requires: Resolver
          Uses: Network Time
          Order Preference: Late
        RemoteDesktopAgent:
          Description: Remote Desktop
          Location: /System/Library/StartupItems/RemoteDesktopAgent
          Provides: Remote Desktop
          Requires: Disks, Resolver
          Messages:
              Start: Starting Remote Desktop Agent
              Stop: Stopping Remote Desktop Agent
          Order Preference: Last
        SNMP:
          Description: SNMP server
          Location: /System/Library/StartupItems/SNMP
          Provides: SNMP
          Requires: Resolver
          Messages:
              Start: Starting SNMP service
              Stop: Stopping SNMP service
          Order Preference: None
        AdobeVersionCueCS2:
          Description: Adobe Version Cue CS2
          Location: /Library/StartupItems/AdobeVersionCueCS2
          Provides: AdobeVersionCueCS2
          Requires: Disks
          Uses: mDNSResponder
          Messages:
              Start: Starting Adobe Version Cue CS2
              Stop: Stopping Adobe Version Cue CS2
        FTDIReEnumerate:
          Description: FTDI ReEnumerate Device
          Location: /Library/StartupItems/FTDIReEnumerate
          Provides: FTDIReEnumerate
          Messages:
              Start: Starting FTDI ReEnumerate
              Stop: Stopping FTDI ReEnumerate
          Order Preference: None
        ProTec6b:
          Description: Nalpeiron Copy Protection 6b
          Location: /Library/StartupItems/ProTec6b
          Provides: Nalpeiron Copy Protection 6b
          Messages:
              Start: Starting Nalpeiron Daemon 6b
              Stop: Stopping Nalpeiron Daemon 6b
          Order Preference: Early
        RetroRun:
          Description: Retrospect Startup Helper
          Location: /Library/StartupItems/RetroRun
          Provides: Retrospect Startup Services
          Messages:
              Start: Starting Retrospect Startup Helper
              Stop: Stopping Retrospect Startup Helper
          Order Preference: Last

  • How do I turn off background ni file activity when not using Labview? files such as nimxs.exe, nipalsm.exe, nipalsm.exe, nisvcloc.exe, nicitdl5.exe

    How do I turn off background ni file activity when not using Labview? I use labview rarely, and I also use my computer for demanding multimedia applications, including multitrack digital audio recording. I need to reduce as much background activity as possible, and taking a look with task manager I see files such as nimxs.exe, nipalsm.exe, nipalsm.exe, nisvcloc.exe, and nicitdl5.exe running even when I haven't used Labview (8 I believe). These files run even after I right click the NI icon on the lower right and turn off the application. I would like the computer to boot up without these files, and for the necessary files to be activated only when I start the program.
    Can this be done or do I have to remove labview from the system to improve performance?
    Thanks

    Hello, those processes are part of running NI services that start when Windows boots.  These processes serve varied purposes and stopping them can have undefined and unknown consiquences for your NI products.  These products run at "normal" priority meaning that they should be preempted by any process running at a higher priority which I would expect your other application to be doing given their time sensitivity.  That being said, in Windows XP (I can't speak for other OSes), you can lower their priorities even greater through task manager (right click the process»set priority) to further remove them from contention for resources.  If you want to prevent them from running you can set the service startup type to "manual" in Control Panel»Administrative Tools»Services.  Right click the process go to Properties and Under the General tab choose Startup Type»Manual.  This will start up the processes only when something directly starts it up.  LabVIEW will start these processes up as it attempts to use them.  When you shut down LabVIEW you will need to manually shut down these processes through task manager.  Again, doing this can cause problems with your NI products on your system and it is not advised.
    Travis M
    LabVIEW R&D
    National Instruments

  • Error: Could not start Service[keystone]: Execution of '/sbin/service openstack-keystone start' returned 1: Starting keystone: [FAILED]

    I'm using Oracle Linux 6u6. While I'm installing openstack ( 2 node set up) using packstack, I'm getting this error:
    Applying 10.245.33.37_cinder.pp
    10.245.33.37_keystone.pp:                         [ ERROR ]
    Applying Puppet manifests                         [ ERROR ]
    ERROR : Error appeared during Puppet run: 10.245.33.37_keystone.pp
    Error: Could not start Service[keystone]: Execution of '/sbin/service openstack-keystone start' returned 1: Starting keystone: [FAILED]
    You will find full trace in log /var/tmp/packstack/20150327-100335-ltC8Ic/manifests/10.245.33.37_keystone.pp.log
    Please check log file /var/tmp/packstack/20150327-100335-ltC8Ic/openstack-setup.log for more information
    Additional information:
    * A new answerfile was created in: /root/packstack-answers-20150327-100336.txt
    * Time synchronization installation was skipped. Please note that unsynchronized time on server instances might be problem for some OpenStack components.
    * Did not create a cinder volume group, one already existed
    * File /root/keystonerc_admin has been created on OpenStack client host 10.245.33.37. To use the command line tools you need to source the file.
    * To access the OpenStack Dashboard browse to http://10.245.33.37/dashboard .
    Please, find your login credentials stored in the keystonerc_admin in your home directory.
    Packages:
    [root@slcai461 ~]# rpm -qa|grep keystone
    python-keystoneclient-0.9.0-5.el6.noarch
    python-keystone-2014.1.3-2.el6.noarch
    openstack-keystone-2014.1.3-2.el6.noarch
    [root@slcai461 ~]# rpm -qa|grep packstack
    openstack-packstack-puppet-2014.1.1-0.12.dev1068.0.4.el6.noarch
    openstack-packstack-2014.1.1-0.12.dev1068.0.4.el6.noarch
    Log :
    [root@slcai461 ~]# cat /var/tmp/packstack/20150327-100335-ltC8Ic/manifests/10.245.33.37_keystone.pp.log
    Warning: Config file /etc/puppet/hiera.yaml not found, using Hiera defaults
    Warning: Scope(Class[Keystone]): The sql_connection parameter is deprecated, use database_connection instead.
    Warning: Scope(Class[Keystone]): token_format parameter is deprecated. Use token_provider instead.
    Warning: Scope(Class[Keystone::Endpoint]): The public_address parameter is deprecated, use public_url instead.
    Warning: Scope(Class[Keystone::Endpoint]): The internal_address parameter is deprecated, use internal_url instead.
    Warning: Scope(Class[Keystone::Endpoint]): The admin_address parameter is deprecated, use admin_url instead.
    Warning: Scope(Class[Nova::Keystone::Auth]): The cinder parameter is deprecated and has no effect.
    Notice: Compiled catalog for slcai461.us.oracle.com in environment production in 1.60 seconds
    Warning: The package type's allow_virtual parameter will be changing its default value from false to true in a future release. If you do not want to allow virtual packages, please explicitly set allow_virtual to false.
       (at /usr/lib/ruby/site_ruby/1.8/puppet/type.rb:816:in `set_default')
    Notice: /Stage[main]/Keystone/Keystone_config[DEFAULT/admin_token]/value: value changed '[old secret redacted]' to '[new secret redacted]'
    Notice: /Stage[main]/Keystone/Keystone_config[database/connection]/value: value changed '[old secret redacted]' to '[new secret redacted]'
    Notice: /Stage[main]/Keystone::Db::Sync/Exec[keystone-manage db_sync]: Triggered 'refresh' from 3 events
    Notice: /Stage[main]/Keystone/Exec[keystone-manage pki_setup]: Triggered 'refresh' from 2 events
    Error: Could not start Service[keystone]: Execution of '/sbin/service openstack-keystone start' returned 1: Starting keystone: [FAILED]
    Wrapped exception:
    Execution of '/sbin/service openstack-keystone start' returned 1: Starting keystone: [FAILED]
    Error: /Stage[main]/Keystone::Service/Service[keystone]/ensure: change from stopped to running failed: Could not start Service[keystone]: Execution of '/sbin/service openstack-keystone start' returned 1: Starting keystone: [FAILED]
    Notice: /Stage[main]/Keystone::Service/Service[keystone]: Triggered 'refresh' from 5 events
    Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_service[neutron]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_service[neutron]: Skipping because of failed dependencies
    Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[admin]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[admin]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova_ec2]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova_ec2]: Skipping because of failed dependencies
    Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinderv2]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinderv2]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[novav3]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[novav3]: Skipping because of failed dependencies
    Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[services]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[services]: Skipping because of failed dependencies
    Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_user[neutron]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_user[neutron]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_user[nova]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_user[nova]: Skipping because of failed dependencies
    Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_user[glance]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_user[glance]: Skipping because of failed dependencies
    Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[admin]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[admin]: Skipping because of failed dependencies
    Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_user_role[glance@services]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_user_role[glance@services]: Skipping because of failed dependencies
    Notice: /Stage[main]/Keystone::Endpoint/Keystone_service[keystone]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Endpoint/Keystone_service[keystone]: Skipping because of failed dependencies
    Error: Could not prefetch keystone_endpoint provider 'keystone': Execution of '/usr/bin/keystone --os-endpoint http://127.0.0.1:35357/v2.0/ endpoint-list' returned 1: An unexpected error prevented the server from fulfilling your request. (HTTP 500)
    Notice: /Stage[main]/Keystone::Endpoint/Keystone_endpoint[RegionOne/keystone]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Endpoint/Keystone_endpoint[RegionOne/keystone]: Skipping because of failed dependencies
    Notice: /Stage[main]/Main/Keystone_service[cinder_v2]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Main/Keystone_service[cinder_v2]: Skipping because of failed dependencies
    Notice: /Stage[main]/Main/Keystone_endpoint[RegionOne/cinder_v2]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Main/Keystone_endpoint[RegionOne/cinder_v2]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/novav3]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/novav3]: Skipping because of failed dependencies
    Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinder]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinder]: Skipping because of failed dependencies
    Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinder]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinder]: Skipping because of failed dependencies
    Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_service[glance]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_service[glance]: Skipping because of failed dependencies
    Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_endpoint[RegionOne/glance]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_endpoint[RegionOne/glance]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_user_role[nova@services]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_user_role[nova@services]: Skipping because of failed dependencies
    Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_user[admin]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user[admin]: Skipping because of failed dependencies
    Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Skipping because of failed dependencies
    Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_user[cinder]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_user[cinder]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova_ec2]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova_ec2]: Skipping because of failed dependencies
    Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinderv2]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinderv2]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova]: Skipping because of failed dependencies
    Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova]: Skipping because of failed dependencies
    Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_user_role[neutron@services]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_user_role[neutron@services]: Skipping because of failed dependencies
    Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_endpoint[RegionOne/neutron]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_endpoint[RegionOne/neutron]: Skipping because of failed dependencies
    Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_user_role[cinder@services]: Dependency Service[keystone] has failures: true
    Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_user_role[cinder@services]: Skipping because of failed dependencies
    Notice: Finished catalog run in 3.10 seconds
    Please let me know how to fix this.

    This problem connected with proxy-setings.
    As the first steps you should try:
           1.  export system env variable:
    http_proxy=http://www-proxy.ru.oracle.com:80
    https_proxy=https://www-proxy.ru.oracle.com:80
    no_proxy=127.0.0.1,localhost
    and you can also export
        export OS_TENANT_NAME=admin
        export OS_USERNAME=admin
        export OS_PASSWORD=root
        export OS_AUTH_URL=http://<conntroller_IP>:5000/v2.0/
    2. and than restart mysqld, if it is running, stop iptables and repeat installation process from beginning with the currently generated answer file
    if we are exporting variable OS_PASSWORD, its value should be the same as value for CONFIG_KEYSTONE_ADMIN_PW in the currently generated answer file.
    This OS_PASSWORD will be written by packstack in the /root/keystonerc_admin file and will be used as admin's password for login to  Openstack dashboard.

  • In aperture 3.4.5, I get unsupported file error when exporting version of photo I've edited using plugins?

    In aperture 3.4.5, I get unsupported file error when exporting version of photo I've edited using plugins. I have try reinstalling aperture three times, deleting plists a few times, reinstalling plugins, restarting my MacBook Pro many times. Everything I've tried may fix the problem for a very short while and I can export a few photos before it returns. The problem happens with topaz and photomatrix pro plugins after I edited and try to export version.

    I had the same problem with the Photomatix plug-in and this solved it for me. I realised it only happened with Photomatix and not other plug-ins so I checked where the plug-ins were installed. The Photomatix plug-in was installed in
    ~/Library/Application Support/Aperture/Plug-Ins/
    where ~ is the home location for the current user account. All the other plug-ins however were installed in
    Macintosh HD/Library/Application Support/Aperture/Plug-Ins/
    which is the location that makes them available to all user accounts on your Mac. Moving the Photomatix plug-in to this location solved the problem for me.
    Note that the Library directory under the first location is normally hidden, to get to it hold down the Option (Alt) key and select it from the Finder Go menu.

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

Maybe you are looking for

  • ITunes video hangs for 2 seconds at exactly 8 seconds after start of video

    This has been a nagging problem for me ever since iTunes 7. For some reason, when I play a video in iTunes, it always seems to freeze for about 2-3 seconds, and it always happens at the same time: 8 seconds into the video. Both video and audio freeze

  • P6N Diamond - Vista/XP won't install.

    I have Vista Home Premium x64 and I went to install for testing before I registered it.  I then see I can install any version of Vista, so I decide to try Vista Ultimate to see how different it is from Home Premium.  Anyway, the trial period for Ulti

  • Itunes screw up my music library

    Attention! I use itunes 7.0.1.8 and used the function "add folder to library". In my case the folder is a network based harddisk. itunes added all of my songs, also the mp3 files which were already on the disc, but SCRAMBLED the whole disc. For examp

  • Strange issue when save from sending to sounstrack

    Hi I don't understand.... I open my sequence in FCP, then sent it do Multitrack project in STP, make my changes in the audio file, save it but when I come back to my sequence in FCP the audio file has not change...Why?? Thanks

  • Doubts in Statspack

    Hi, I have one small doubt (crosschecking) in Statspack. Prior to 9i, whether a wait event needs to be considered or not that depends on following formula : response time = service time + wait time = cpu used by session + wait time = cpu used by sess