Autostart on lnux server 3

Hi
i m using oracle 9.2 on linux advance server 3
my autostart process is not working on this server.
i did all configuration(given in documentation and given on some reknown websites) to autostart database and listener at system startup but its not working.
can any body tell me whats the problem?
its not hapening on single server bu on all my servers which are running linx advance server 3
regards

Did the following according to the instrunctions given on
ORACLE-BASE.COM
Once the instance is created edit the /etc/oratab file setting the restart flag for each instance to 'Y':
bips:/opt/oracle/product/9.2.0:Y
Create a file called /etc/init.d/dbora containing the following:
#!/bin/sh
# description: Oracle auto start-stop script.
# chkconfig: - 20 80
# Set ORA_HOME to be equivalent to the $ORACLE_HOME
# from which you wish to execute dbstart and dbshut;
# Set ORA_OWNER to the user id of the owner of the
# Oracle database in ORA_HOME.
ORA_HOME=/opt/oracle/product/9.2.0
ORA_OWNER=oracle
if [ ! -f $ORA_HOME/bin/dbstart ]
then
echo "Oracle startup: cannot start"
exit
fi
case "$1" in
'start')
# Start the Oracle databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
'stop')
# Stop the Oracle databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
esac
Use chmod to set the privileges to 750:
chmod 750 /etc/init.d/dbora
Link the file into the appropriate run-level script directories:
ln -s /etc/init.d/dbora /etc/rc0.d/K10dbora
ln -s /etc/init.d/dbora /etc/rc3.d/S99dbora
Associate the dbora service with the appropriate run levels:
chkconfig --level 345 dbora on
remember that my dbstart and dbshut scripts do right and work fine when i explicitly run these scripts on command line
in my problem...neither listener gets started nor database

Similar Messages

  • How to autostart weblogic server in windows

    Hello,
    Can somebody one the setting change/or modification in any of the scripts we need to do for autostart of weblogic server if it crashes due to some reason.
    Thanks in advance
    Ram

    You can use the nodemanager for this purpose (http://docs.oracle.com/cd/E21764_01/web.1111/e13740/toc.htm)
    Some examples are given here: http://middlewaremagic.com/weblogic/?p=7265 and http://middlewaremagic.com/weblogic/?p=7716

  • Trying to makea report run when clicking a button on a form

    I am trying to run a report by clicking a button on a form (Forms 9i)
    I have modified the registry settings for FORMS90_PATH and REPORTS_PATH to include my development directory, and now at last the report is generating. However the command to display the form in a window is not doing anything at all - no error even. Can someone please help, the trigger code for my button is displayed below:
    DECLARE
         rep_result VARCHAR2(30);
    BEGIN
         SET_REPORT_OBJECT_PROPERTY('INVENTORY_REPORT', REPORT_FILENAME, :GLOBAL.project_path || 'Inventory.rdf');
         SET_REPORT_OBJECT_PROPERTY('INVENTORY_REPORT', REPORT_DESNAME, :GLOBAL.project_path || 'Inventory.htm');
         rep_result := RUN_REPORT_OBJECT('INVENTORY_REPORT');
         --MESSAGE('Rep result: ' || rep_result);
         WEB.SHOW_DOCUMENT('file:///' || :GLOBAL.project_path || 'Inventory.htm', '_blank');
         --WEB.SHOW_DOCUMENT('file:///C:\Temp\Dev\Inventory.htm', '_blank');
    END;
    thx
    adam

    Hi,
    may be this could be helpful for you:
    You have to include the following code to execute a report:
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status Varchar2(20);
    BEGIN
    repid := find_report_object(report_name);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,report_server_name);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := report_object_status(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    if rep_status = 'FINISHED' then
    WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    else
    error report not exists
    end if;
    END;
    Also you have to create the report server with the command:
    "rwserver - install service_name autostart=yes
    report server name must be the same that appears in the code above
    You must add the report to run in the REPORT object type in your .fmb and put there with the same name
    The report server to install ought to be the one and only in you network to avoid mistakes...

  • Not authorized when suspensing, but not when logged in from terminal

    Hi All,
    I have the following line in my inittab, to start an X server for the user "cedric"
    x:5:once:/bin/su cedric -l -c "/bin/bash --login -c /usr/bin/startx >/dev/null 2>&1"
    This works great, my X server is started during the startup of the rest of the services. when I then try to mouns an USB stick, suspend or reboot the machine, I get the message "Not autorized"
    When I then kill X, login from a terminal, and then start X, everything works great, I can mount USB sticks, and suspend my machine from the lxde session without any problem, the message "not autorized" never comes up anymore
    What have I missed in the iniitab line above? Is there a better way to autostart the X server? How can I debug these messages?
    Best regards,
    Cedric

    Read the note in https://wiki.archlinux.org/index.php/St … ot#inittab
    Try https://wiki.archlinux.org/index.php/St … sh_profile instead.

  • Guide to startup mulitple instances

    OS: Red Hat Enterprise Linux 5
    Sun Java Web Server 7 update 6
    When I installed the webserver 7 (as root), it asked me if I wanted to start-up the admin-server automatically and I typed in Yes, however it did not create a script for it in the startup (either in init.d or rc3.d) and it's not starting up automatically.
    I'd like to know how to do this and also I have 20 sites (instances) that need to start up automatically as well. Going through the GUI is a pain as sometimes, I have to restart a site twice, because it doesn't start up the first time. There are no errors at all.. I suck as scripting, but here is something I was working on.. It doesn't work though.
    startup.sh script
    /usr/bin/find webserver7/servers/https* -name start -print > list
    count=`ps -ef | grep -v grep | grep webservd | wc -l`
    clear
    echo "\n\n\nThere are currently " $count " web servers running."
    echo "\nEnter the Certificate db Password:\n"
    read pass
    echo "\nYou Entered: " $pass
    echo "\n\nOK to proceed with starting all the web servers? [yes/no]\n"
    read ans
    if [ $ans = yes ]
    then
    tmp=`echo "echo" \"$pass\" "|\ "`
    sed -e "s/^/$tmp/" list > .list.tmp ; chmod 400 .list.tmp ; rm list
    awk -f start.awk .list.tmp > .list ; chmod 500 .list ; rm .list.tmp
    ./.list ; rm .list
    sleep 3 ; echo "\n\n\nThere are currently "`ps -ef | grep -v grep | grep webservd | wc -l` " web servers runni
    ng."
    else
    clear
    echo "\n\n\n"
    echo "You did not answer 'yes'. Bailing..." ; rm list ; exit
    fi
    start.awk script
    BEGIN { RS = "\n" ; FS = "/" }
    print "echo \"\\n\""
    print "echo \"Starting up " $5 "\""
    print $0 " &" }
    Thanks!
    Much appreciated!
    Edited by: bubbamax on Apr 16, 2010 1:38 PM
    Edited by: bubbamax on Apr 16, 2010 1:38 PM

    The SJSWS7.0u8 install provides a startup script that will work:
    #!/bin/sh
    # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
    # Use is subject to license terms.
    # NOTE: To avoid your system from failing on reboot, do not change this
    #       file in any way.
    # This script is designed to be executed on reboot.
    # Make sure we have PATH set at this  point.
    PATH="/bin:/sbin:/usr/bin:/usr/sbin:$PATH"
    # Set this to 0, if you do NOT want autostart of Web Server
    # after a system reboot.
    WS_START_ONBOOT=1
    # Initialize Script scope level variables.
    WS_INSTANCE_ROOT="/path/to/installed/webserver"
    # Setup return and error values.
    rc_failed="Failure"
    rc_success="Success"
    ret=$rc_success
    # See how we were called.
    case "$1" in
        start)
            if [ -z "WS_START_ONBOOT" ] || [ "$WS_START_ONBOOT" = "0" ]; then
                ret=$rc_success
            else
                echo "Starting Web Servers in $WS_INSTANCE_ROOT"
                for each_server in $WS_INSTANCE_ROOT/admin-* $WS_INSTANCE_ROOT/https-*
                do
                    if [ -d "$each_server" ]
                    then
                        if [ ! -f "$each_server/.noStartOnBoot" ]
                        then
                            echo -n "  `basename $each_server`: "
                            $each_server/bin/startserv > /dev/null 2>&1 || ret=$rc_failed
                            echo "$ret"
                        fi
                    fi
                done
            fi
        stop)
            for each_server in $WS_INSTANCE_ROOT/admin-* $WS_INSTANCE_ROOT/https-*
            do
                reversed_list="$each_server $reversed_list"
            done
            echo "Stopping Web Servers in $WS_INSTANCE_ROOT"
            for each_server in $reversed_list
            do
                if [ -d $each_server ]
                then
                    echo -n "  `basename $each_server`: "
                    $each_server/bin/stopserv > /dev/null 2>&1 || ret=$rc_failed
                    echo "$ret"
                fi
            done
        restart)
            $0 stop || return=$rc_failed
            $0 start || return=$rc_failed
            echo "Usage: $0 {start|stop|restart}"
            exit 1
    esac
    # Inform the caller not only verbosely and set an exit status.
    test "$ret" = "$rc_success" || exit 1
    exit 0

  • Environment Failover

    Dear Forte-users,
    here is a tricky question.
    I'm checking the Forte' functionality that allows you to put multiple
    addresses in FORTE_NS_ADDRESS, so that a client can connect to an
    alternative environment in case of failover.
    I have deployed my application in two alternative environment, called
    AEnv and BEnv respectively.
    I've paid attention to deploy the application exactly in the same way in
    the two environment, that is, with the same partition numbering, so that
    my application is deployed correctly to the client.
    I've started two environment manager:
    start_nodemgr -e AEnv -fns srv1:5000 -fnd srv1Node
    start_nodemgr -e BEnv -fns srv2:6000 -fnd srv2Node
    onto two different machines.
    I've set my client FORTE_NS_ADDRESS to srv1:5000;srv2:6000 so that when
    srv1 crashes, my client "should" automatically connect to srv2.
    My application consists of three partitions: a client partition and two
    server partition. The two server partition are replicated for failover
    and are distributed to two different logical nodes. In environment AEnv
    the two logical nodes corrispond to two different machines, whilst in
    Benv the two logical nodes are on the same physical machine.
    The platforms in use are: PC client (Windows 95) and AIX servers.
    After all these setup operations, I've started up with my work.
    To simulate an hardware crash of srv1, I killed all Forte' processes
    (ftexec and all nodemgr) while my application was running, then I made a
    new request to a server partition.
    What I espected from Forte' was that my application connected to the
    alternative environment and an autostart of the server partitions were
    made in order to satisfy my client request.
    What happens instead is that I receive a DistributedAccessException and
    I have to exit the application. If I then execute again the application,
    this time Forte' correctly connects to BEnv and autostarts the server
    partitions.
    I've also tried to start manually the server partitions in BEnv from
    econsole, but with the same result.
    In order to understand this behaviour, I've set the trc:do:35 flag.
    Reading the trace messages, I've seen that in the case of a new
    execution of the application there is at a certain time an
    "InitiateNsBind", a "ClientCreateEnvironment" and some
    "RegisterPartition". When I read the trace messages generated in the
    case of DistributedAccessException I noted that Forte' correctly
    initiates a bind to BEnv, but after that there is a "Got NAMESERVERAVAIL
    event" message and no "ClientCreateEnvironment" or "RegisterPartition"
    messages.
    So I think it tries to use old references in the new connected
    environment.
    Thanks in advance for reading till the end !
    If anyone has any idea or opinion, please let me know.
    Regards,
    Cristina.

    Thank you Don.
    I know that I have to handle the exception in case of Transaction or
    Session Duration and I handled in fact the DistributedAccessException. I
    think my problem could be connected to what you said by the end:
    Specifying multiple name server addresses in FORTE_NS_ADDRESS onlyapplies to initial startup by the client. If the primary name server can't
    be found, the client will try the other addresses in FORTE_NS_ADDRESS.
    Once the client is connected, it uses the environment search path for
    failover.
    because I haven't used the search path.
    And
    Fourth - have you "warmed up" the application by talking to all serviceobjects in all partitions? Doing this will ensure that the client has a
    list of all service objects in all partitions, in all connected
    environments.
    Yes, my request to the server partition involves al Service Objects, so my
    client has a list of all of them.
    I will try setting the environment search path.
    Greeting,
    Cristina.
    [email protected] il 02/09/97 18.16.19
    Per: Cristina Tomacelli/CSI/IT
    cc: [email protected]
    Oggetto: Re: Environment Failover
    Cristina,
    I'm assuming that you have connected the two environments. Keep in mind,
    when connecting environments, that one environment is the "master", and
    others are "subordinates." Thus, if Aenv was the master environment, you
    should connect Benv to it.
    Secondly, have you set the environment search path? For example:
    @AEnv:@BEnv
    Third, unless you're using message dialog duration, you will either have to
    catch the AbortException (for transaction duration,) or the
    RemoteAccessException for session duration. If you receive either of these
    events, you would have to retry your message.
    Fourth - have you "warmed up" the application by talking to all service
    objects in all partitions? Doing this will ensure that the client has a
    list of all service objects in all partitions, in all connected
    environments.
    Specifying multiple name server addresses in FORTE_NS_ADDRESS only applies
    to initial startup by the client. If the primary name server can't be
    found, the client will try the other addresses in FORTE_NS_ADDRESS. Once
    the client is connected, it uses the environment search path for failover.
    Hope this helps,
    Don
    At 04:34 PM 9/1/97 +0100, Cristina Tomacelli wrote:
    Dear Forte-users,
    here is a tricky question.
    I'm checking the Forte' functionality that allows you to put multiple
    addresses in FORTE_NS_ADDRESS, so that a client can connect to an
    alternative environment in case of failover.
    I have deployed my application in two alternative environment, called
    AEnv and BEnv respectively.
    I've paid attention to deploy the application exactly in the same way in
    the two environment, that is, with the same partition numbering, so that
    my application is deployed correctly to the client.
    I've started two environment manager:
    start_nodemgr -e AEnv -fns srv1:5000 -fnd srv1Node
    start_nodemgr -e BEnv -fns srv2:6000 -fnd srv2Node
    onto two different machines.
    I've set my client FORTE_NS_ADDRESS to srv1:5000;srv2:6000 so that when
    srv1 crashes, my client "should" automatically connect to srv2.
    My application consists of three partitions: a client partition and two
    server partition. The two server partition are replicated for failover
    and are distributed to two different logical nodes. In environment AEnv
    the two logical nodes corrispond to two different machines, whilst in
    Benv the two logical nodes are on the same physical machine.
    The platforms in use are: PC client (Windows 95) and AIX servers.
    After all these setup operations, I've started up with my work.
    To simulate an hardware crash of srv1, I killed all Forte' processes
    (ftexec and all nodemgr) while my application was running, then I made a
    new request to a server partition.
    What I espected from Forte' was that my application connected to the
    alternative environment and an autostart of the server partitions were
    made in order to satisfy my client request.
    What happens instead is that I receive a DistributedAccessException and
    I have to exit the application. If I then execute again the application,
    this time Forte' correctly connects to BEnv and autostarts the server
    partitions.
    I've also tried to start manually the server partitions in BEnv from
    econsole, but with the same result.
    In order to understand this behaviour, I've set the trc:do:35 flag.
    Reading the trace messages, I've seen that in the case of a new
    execution of the application there is at a certain time an
    "InitiateNsBind", a "ClientCreateEnvironment" and some
    "RegisterPartition". When I read the trace messages generated in the
    case of DistributedAccessException I noted that Forte' correctly
    initiates a bind to BEnv, but after that there is a "Got NAMESERVERAVAIL
    event" message and no "ClientCreateEnvironment" or "RegisterPartition"
    messages.
    So I think it tries to use old references in the new connected
    environment.
    Thanks in advance for reading till the end !
    If anyone has any idea or opinion, please let me know.
    Regards,
    Cristina.

  • Auto start weblogic

    Hi all,
    I want to autostart the weblogic server everytime after the server
    is rebooted. Since the weblogic server is installed and run as user
    "peter". How can I do it in the solaris??
    Rgds,
    unplug

    Jesse,
    I did the following.
    make a copy of startWebLogic.sh in init.d.
    make a link of startWebLogic.sh as S99WebLogic in rc3.d
    make a link of startWebLogic.sh as K99WebLogic in rc0.d
    Are there any problems in the above actions??
    Does the initialization script run by root?? I think so.
    So is there any problems if the startWebLogic.sh is own by
    other user (not root) for the above actions??
    thanks,
    unplug
    Jesse E Tilly wrote:
    >
    [email protected] (unplug) wrote in <[email protected]>:
    Hi all,
    I want to autostart the weblogic server everytime after the server
    is rebooted. Since the weblogic server is installed and run as user
    "peter". How can I do it in the solaris??
    Rgds,
    unplugUnplug,
    This is really more of a Solaris administration question than a WebLogic
    question. I will give you a head start, but I really recommend that if
    you're going to develop or deploy on a Solaris system that you consider
    hiring a Solaris administrator or taking admin classes and certifications
    on your own if you're gonna be the admin. Solaris can be powerful, but you
    have enough rope to hang yourself and your corporation in 8 easy
    characters, "rm -Rf /".
    Solaris uses what's called SysVInit (Linux does, BSD does not). The init
    scripts are based on the system's runlevel (a number 0-7). Usually 6 is
    reserved for reboot, 0 for shutdown, 1 for single-user and 2-5 for various
    run states. One of my systems, for example, defaults to level 3. You can
    check this in /etc/inittab. Look for initdefault and the number next to
    it. Depending on the runlevel, init (the Unix initialization program) runs
    an rc script. For 3 this is rc3. This can be found at /etc/rc3. It will
    run various checks and variable settings then run the scripts found in
    /etc/rc3.d (d for directory, get it?). There is a README (or should be)
    that describes how the scripts are run, should be made, etc. In Linux,
    these scripts are soft links to another group of scripts. In Solaris,
    that's not always the case.
    Anyway, to shorten this up, you're gonna want a weblogic start script
    (S99Weblogic) for rc3.d and a kill script (K99Weblogic) for the rc0.d
    directory. Check the file names. Sblahblah means start, Kblahblah means
    kill. Do a man on "init" and read the README in rc3.d.
    Jesse

  • Autostart of Oracle 10.2 on MAC (XServe with Snow Leopard (10.6.3 Server))

    Followed the instruction given in http://download.oracle.com/docs/cd/B19306_01/server.102/b15658/strt_stp.htm#CFAHCEFC (Section 2.2.1)
    Get the following error listed in the error console:
    23/05/2010 02:28:55 com.apple.SystemStarter[93] bash: /Volumes/BD1/oracle/product/10.2.0/db_1/bin/dbstart: No such file or directory
    Despite the fact that the script can be run successfully from the command line.
    user:~ systemone$ ls -tl /Volumes/BD1/oracle/product/10.2.0/db_1/bin/dbstart
    -rwxr-xr-x@ 1 oracle dba 14111 22 Apr 15:54 /Volumes/BD1/oracle/product/10.2.0/db_1/bin/dbstart
    The problem remains that Oracle recommend oracle software and data be located on separate disks, but the Apple dbstart (autostart) will not work if any of the oracle files are not on the system disk.

    I have also got the same problem, and currently have a support request on Metalink for this issue. I am waiting for a reply from Oracle.

  • How to disable autostart (application) when managed server restart ?

    Hi Ppl,
    How to disable autostart (application) when managed server restart ?
    I want some of the applications to remain not started. In WebSPhere, we have an option disable auto start for applications.
    I don't find in weblogic.
    Thanks

    Hi,
    I agree with Faisal. When you shutdown your WL server while the application is running, the thing is when you start your server again, it would automatically start the application with it. Now if the application was down when you shutdown the server, it _the application_ won't start with the server.
    So it depends on the application last state, when you start your server.
    Regards,
    Mohab

  • Autostart svnserve on OS Lion Server

    Hello,
    I tried to get svnserve to start automaticallyon Lion Server (10.7.2) but when I use the plist from 10.6 on 10.7 I get:
    root @ /library/launchdaemons $ launchctl start svnserve.plist
    launchctl start error: No such process
    but when I execute the following command in Terminal it works:
    /usr/bin/svnserve -d -r /Users/svn
    This is the plist I try it with:
    <?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>Label</key>
          <string>svnserve</string>
              <key>OnDemand</key>
                        <false/>
              <key>Program</key>
                        <string>/usr/bin/svnserve</string>
              <key>ProgramArguments</key>
                        <array>
                        <string>/usr/bin/svnserve</string>
                        <string>-d</string>
                        <string>-r /Users/svn</string>
                        </array>
              <key>ServiceDescription</key>
                        <string>SVN Version Control System</string>
              </dict>
    </plist>
    Does someone have an idea? I ran out of Google and clues...

    Oh my, I simply forgot to do a 'launchctl load' before my 'launchctl start'. Problem solved!

  • Cannot Install Windows Updates on Server 2008 R2 - Error Code 80070002

    Hello,
    I'm having issues installing updates among other issues that seem to be related.
    I'm not able to view a list of Installed Updates. Also Server Manager fails when it tries to list the Roles and Features on the server.
    I get this error message in server manager
    I get this error when I try and do a manual install of MSXML 4.0 SP2
    When I try and run sfc /scannow:
    Windows Resource Protection could not perform the requested operation
    I've tried the following:
    .NET repair tool
    The Readiness tool - http://support.microsoft.com/kb/947821/en-us
    Resetting Windows Update Components - http://support.microsoft.com/kb/971058/en-us
    ChkDSK
    The automatic troubleshooter "WindowsUpdateDiagnostic.diagcab" - http://windows.microsoft.com/en-ca/windows/windows-update-error-80070002#1TC=windows-7
    Latest from the CBS log file:
    2014-08-14 15:02:35, Info                  CBS    Starting TrustedInstaller initialization.
    2014-08-14 15:02:35, Info                  CBS    Loaded Servicing Stack v6.1.7601.17592 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17592_none_672ce6c3de2cb17f\cbscore.dll
    2014-08-14 15:02:36, Info                  CSI    00000001@2014/8/14:19:02:36.522 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee399f0ad @0x7fef79a9849
    @0x7fef79734e3 @0xff0be97c @0xff0bd799 @0xff0bdb2f)
    2014-08-14 15:02:36, Info                  CBS    Could not load SrClient DLL from path: SrClient.dll.  Continuing without system restore points.
    2014-08-14 15:02:36, Info                  CSI    00000002@2014/8/14:19:02:36.524 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee399f0ad @0x7fef79f6816
    @0x7fef79c2aac @0x7fef79735b9 @0xff0be97c @0xff0bd799)
    2014-08-14 15:02:36, Info                  CSI    00000003@2014/8/14:19:02:36.525 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fee399f0ad @0x7fef7c58738
    @0x7fef7c58866 @0xff0be474 @0xff0bd7de @0xff0bdb2f)
    2014-08-14 15:02:36, Info                  CBS    Ending TrustedInstaller initialization.
    2014-08-14 15:02:36, Info                  CBS    Starting the TrustedInstaller main loop.
    2014-08-14 15:02:36, Info                  CBS    TrustedInstaller service starts successfully.
    2014-08-14 15:02:36, Info                  CBS    SQM: Initializing online with Windows opt-in: False
    2014-08-14 15:02:36, Info                  CBS    SQM: Cleaning up report files older than 10 days.
    2014-08-14 15:02:36, Info                  CBS    SQM: Requesting upload of all unsent reports.
    2014-08-14 15:02:36, Info                  CBS    SQM: Failed to start upload with file pattern: C:\Windows\servicing\sqm\*_std.sqm, flags: 0x2 [HRESULT = 0x80004005
    - E_FAIL]
    2014-08-14 15:02:36, Info                  CBS    SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL]
    2014-08-14 15:02:36, Info                  CBS    SQM: Queued 0 file(s) for upload with pattern: C:\Windows\servicing\sqm\*_all.sqm, flags: 0x6
    2014-08-14 15:02:36, Info                  CBS    SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL]
    2014-08-14 15:02:36, Info                  CBS    No startup processing required, TrustedInstaller service was not set as autostart, or else a reboot is still
    pending.
    2014-08-14 15:02:36, Info                  CBS    NonStart: Checking to ensure startup processing was not required.
    2014-08-14 15:02:37, Info                  CSI    00000004@2014/8/14:19:02:37.667 PopulateComponentFamiliesKey - Begin
    2014-08-14 15:02:38, Info                  CSI    00000005 PopulateComponentFamilies ignoring identity-less key [l:162{81}]"amd64_hal.inf-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_fd214455f7d01c16"
    2014-08-14 15:02:39, Info                  CSI    00000006 PopulateComponentFamilies ignoring identity-less key [l:140{70}]"amd64_mdmmcd.inf_31bf3856ad364e35_6.1.7600.16385_none_75f2f184549e8f36"
    2014-08-14 15:02:39, Info                  CSI    00000007 PopulateComponentFamilies ignoring identity-less key [l:142{71}]"amd64_mdmmcom.inf_31bf3856ad364e35_6.1.7600.16385_none_812d4a3d3edaed64"
    2014-08-14 15:02:39, Info                  CSI    00000008 PopulateComponentFamilies ignoring identity-less key [l:140{70}]"amd64_mdmmct.inf_31bf3856ad364e35_6.1.7600.16385_none_a7d732137db062c6"
    2014-08-14 15:02:39, Info                  CSI    00000009 PopulateComponentFamilies ignoring identity-less key [l:142{71}]"amd64_mdmmega.inf_31bf3856ad364e35_6.1.7600.16385_none_995cdac734df71e6"
    2014-08-14 15:02:39, Info                  CSI    0000000a PopulateComponentFamilies ignoring identity-less key [l:144{72}]"amd64_mdmmetri.inf_31bf3856ad364e35_6.1.7600.16385_none_0c74b3dc07900de3"
    2014-08-14 15:02:39, Info                  CSI    0000000b PopulateComponentFamilies ignoring identity-less key [l:144{72}]"amd64_mdmmhrtz.inf_31bf3856ad364e35_6.1.7600.16385_none_a55d8d9d74018205"
    2014-08-14 15:02:39, Info                  CSI    0000000c PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-a..lprovider.resources_31bf3856ad364e35_6.1.7600.16385_en-us_41183708c1b5eca0"
    2014-08-14 15:02:39, Info                  CSI    0000000d PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-a..ompat-adm.resources_31bf3856ad364e35_6.1.7600.16385_en-us_1770b9ac6464f96e"
    2014-08-14 15:02:39, Info                  CSI    0000000e PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-b..atacenter.resources_31bf3856ad364e35_6.1.7601.17514_en-us_f18072837d519058"
    2014-08-14 15:02:39, Info                  CSI    0000000f PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-b..serverweb.resources_31bf3856ad364e35_6.1.7601.17514_en-us_0680b8dbb9bb3b0b"
    2014-08-14 15:02:39, Info                  CSI    00000010 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-c..rvices-camanagement_31bf3856ad364e35_6.1.7600.16385_none_461bddfc1b1d8882"
    2014-08-14 15:02:39, Info                  CSI    00000011 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-d..-adsiedit.resources_31bf3856ad364e35_6.1.7601.17514_en-us_eabb7fec550b2fac"
    2014-08-14 15:02:40, Info                  CSI    00000012 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-d..mc-schema.resources_31bf3856ad364e35_6.1.7601.17514_en-us_198f71574d5f5470"
    2014-08-14 15:02:40, Info                  CSI    00000013 PopulateComponentFamilies ignoring identity-less key [l:194{97}]"amd64_microsoft-windows-diskcopy.resources_31bf3856ad364e35_6.1.7600.16385_en-us_cb72ed81259f5f62"
    2014-08-14 15:02:40, Info                  CSI    00000014 PopulateComponentFamilies ignoring identity-less key [l:192{96}]"amd64_microsoft-windows-dwm-adm.resources_31bf3856ad364e35_6.1.7600.16385_en-us_8cdb64cf3d2e1f51"
    2014-08-14 15:02:40, Info                  CSI    00000015 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-f..truetype-arialblack_31bf3856ad364e35_6.1.7600.16385_none_4540bd0a80a4a192"
    2014-08-14 15:02:40, Info                  CSI    00000016 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-h..providers.resources_31bf3856ad364e35_6.1.7600.16385_en-us_2c3b936d3d73e8ea"
    2014-08-14 15:02:40, Info                  CSI    00000017 PopulateComponentFamilies ignoring identity-less key [l:194{97}]"amd64_microsoft-windows-help-efs.resources_31bf3856ad364e35_6.1.7600.16385_en-us_7b42dfac415afe76"
    2014-08-14 15:02:42, Info                  CSI    00000018 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-l..geexpress.resources_31bf3856ad364e35_6.1.7600.16385_en-us_18a6dfd0b144425f"
    2014-08-14 15:02:42, Info                  CSI    00000019 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-l..priseia64.resources_31bf3856ad364e35_6.1.7601.17514_en-us_dd8a17a6ae27c46c"
    2014-08-14 15:02:42, Info                  CSI    0000001a PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-l..standardv.resources_31bf3856ad364e35_6.1.7600.16385_en-us_8092a76ab10c358b"
    2014-08-14 15:02:43, Info                  CSI    0000001b PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-p..vchostreg.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b2906da4f261daf9"
    2014-08-14 15:02:43, Info                  CSI    0000001c PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-r..ance-diag.resources_31bf3856ad364e35_6.1.7600.16385_en-us_0aa841d0afc8562e"
    2014-08-14 15:02:43, Info                  CSI    0000001d PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-s..agnosticsengine-adm_31bf3856ad364e35_6.1.7600.16385_none_af31be1d191f101a"
    2014-08-14 15:02:43, Info                  CSI    0000001e PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-s..csengine-nativehost_31bf3856ad364e35_6.1.7600.16385_none_761ad65676427bd9"
    2014-08-14 15:02:43, Info                  CSI    0000001f PopulateComponentFamilies ignoring identity-less key [l:200{100}]"amd64_microsoft-windows-s..itlockeraccessagent_31bf3856ad364e35_6.1.7601.17514_none_a37185ebed3561d4"
    2014-08-14 15:02:44, Info                  CBS    Archived backup log: C:\Windows\Logs\CBS\CbsPersist_20140814190235.cab.
    2014-08-14 15:02:45, Info                  CSI    00000020 PopulateComponentFamilies ignoring identity-less key [l:202{101}]"amd64_microsoft-windows-w..ouppolicy.resources_31bf3856ad364e35_6.1.7600.16385_en-us_9ac2938a2572fd95"
    2014-08-14 15:02:45, Info                  CSI    00000021 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"amd64_microsoft-windows-webenroll.resources_31bf3856ad364e35_6.1.7600.16385_en-us_df5e63b27c378d72"
    2014-08-14 15:02:45, Info                  CSI    00000022 PopulateComponentFamilies ignoring identity-less key [l:204{102}]"amd64_microsoft.windows.c..-controls.resources_6595b64144ccf1df_5.82.7600.16385_zh-cn_19dcac3f6bc16dce"
    2014-08-14 15:02:46, Info                  CSI    00000023 PopulateComponentFamilies ignoring identity-less key [l:172{86}]"amd64_prnlx00v.inf-languagepack_31bf3856ad364e35_6.1.7600.16385_en-us_f15b45768a38ee43"
    2014-08-14 15:02:47, Info                  CSI    00000024 PopulateComponentFamilies ignoring identity-less key [l:144{72}]"amd64_wiaca00f.inf_31bf3856ad364e35_6.1.7600.16385_none_9c640a1de4358225"
    2014-08-14 15:02:47, Info                  CSI    00000025 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"msil_microsoft.windows.d..s.writediagprogress_31bf3856ad364e35_6.1.7600.16385_none_e38c01a0031da2a2"
    2014-08-14 15:02:47, Info                  CSI    00000026 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"msil_microsoft.windows.d..troubleshootingpack_31bf3856ad364e35_6.1.7600.16385_none_d39c6eb26d6b6b96"
    2014-08-14 15:02:47, Info                  CSI    00000027 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"msil_microsoft.windows.s..owershell.resources_31bf3856ad364e35_6.1.7601.17514_en-us_8f2f867c8e6052ea"
    2014-08-14 15:02:47, Info                  CSI    00000028 PopulateComponentFamilies ignoring identity-less key [l:168{84}]"msil_rmconfighelper.resources_31bf3856ad364e35_6.1.7601.17514_en-us_4a474daab25dc8c5"
    2014-08-14 15:02:48, Info                  CSI    00000029 PopulateComponentFamilies ignoring identity-less key [l:190{95}]"wow64_microsoft-windows-powershell-events_31bf3856ad364e35_6.1.7600.16385_none_3f1bbf2cf11ac44b"
    2014-08-14 15:02:48, Info                  CSI    0000002a PopulateComponentFamilies ignoring identity-less key [l:184{92}]"wow64_microsoft-windows-powershell-exe_31bf3856ad364e35_6.1.7600.16385_none_cf5f9aad50446c26"
    2014-08-14 15:02:48, Info                  CSI    0000002b PopulateComponentFamilies ignoring identity-less key [l:192{96}]"wow64_microsoft-windows-powershell-message_31bf3856ad364e35_6.1.7600.16385_none_938e93ff8676acaf"
    2014-08-14 15:02:48, Info                  CSI    0000002c PopulateComponentFamilies ignoring identity-less key [l:184{92}]"wow64_microsoft-windows-powershell-sip_31bf3856ad364e35_6.1.7600.16385_none_ceb83cd750c49126"
    2014-08-14 15:02:48, Info                  CSI    0000002d PopulateComponentFamilies ignoring identity-less key [l:202{101}]"wow64_microsoft-windows-r..comserver.resources_31bf3856ad364e35_6.1.7600.16385_en-us_403d230b6e5b87e4"
    2014-08-14 15:02:48, Info                  CSI    0000002e PopulateComponentFamilies ignoring identity-less key [l:200{100}]"wow64_microsoft-windows-t..nition-server.en-gb_31bf3856ad364e35_6.1.7600.16385_none_d02d64e79a7a8fbd"
    2014-08-14 15:02:48, Info                  CSI    0000002f PopulateComponentFamilies ignoring identity-less key [l:200{100}]"wow64_microsoft-windows-t..nition-server.en-us_31bf3856ad364e35_6.1.7600.16385_none_d5aafabf9706aa20"
    2014-08-14 15:02:48, Info                  CSI    00000030 PopulateComponentFamilies ignoring identity-less key [l:200{100}]"wow64_microsoft-windows-t..nition-server.es-es_31bf3856ad364e35_6.1.7600.16385_none_ce9789519b91e063"
    2014-08-14 15:02:49, Info                  CSI    00000031 PopulateComponentFamilies ignoring identity-less key [l:194{97}]"x86_microsoft-windows-bootconfig.resources_31bf3856ad364e35_6.1.7600.16385_en-us_c4baaf9824d2fc4c"
    2014-08-14 15:02:50, Info                  CSI    00000032 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-l..-lpksetup.resources_31bf3856ad364e35_6.1.7601.17514_en-us_e7729b5db351ae7a"
    2014-08-14 15:02:50, Info                  CSI    00000033 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-l..anagement.resources_31bf3856ad364e35_6.1.7600.16385_en-us_952103538e95283d"
    2014-08-14 15:02:50, Info                  CSI    00000034 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-l..serverhpc.resources_31bf3856ad364e35_6.1.7600.16385_en-us_0c2373da8ea83bcf"
    2014-08-14 15:02:50, Info                  CSI    00000035 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-l..verembeddedsolution_31bf3856ad364e35_6.1.7600.16385_none_477beb6858bdf981"
    2014-08-14 15:02:50, Info                  CSI    00000036 PopulateComponentFamilies ignoring identity-less key [l:188{94}]"x86_microsoft-windows-msieftp.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b44a626bc200312a"
    2014-08-14 15:02:50, Info                  CSI    00000037 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-n.._service_runtimeapi_31bf3856ad364e35_6.1.7600.16385_none_8b6b5562c22f4547"
    2014-08-14 15:02:50, Info                  CSI    00000038 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-r..stion-detector-core_31bf3856ad364e35_6.1.7600.16385_none_f8beaf4e716bb761"
    2014-08-14 15:02:50, Info                  CSI    00000039 PopulateComponentFamilies ignoring identity-less key [l:196{98}]"x86_microsoft-windows-rasrtrfiltr.resources_31bf3856ad364e35_6.1.7600.16385_en-us_52dd99b3adb074a7"
    2014-08-14 15:02:50, Info                  CSI    0000003a PopulateComponentFamilies ignoring identity-less key [l:190{95}]"x86_microsoft-windows-regsvr32.resources_31bf3856ad364e35_6.1.7600.16385_en-us_191bcef0c24d6bfc"
    2014-08-14 15:02:51, Info                  CSI    0000003b PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-t..er-engine.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b7129d57c1ee4aef"
    2014-08-14 15:02:51, Info                  CSI    0000003c PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-t..extension.resources_31bf3856ad364e35_6.1.7600.16385_en-us_45e6f39742808f67"
    2014-08-14 15:02:51, Info                  CSI    0000003d PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-t..rk-msimtf.resources_31bf3856ad364e35_6.1.7600.16385_en-us_e4d46cbfc094f384"
    2014-08-14 15:02:51, Info                  CSI    0000003e PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-u..lsettings.resources_31bf3856ad364e35_6.1.7600.16385_en-us_3fc4fe6fb4bdaec2"
    2014-08-14 15:02:51, Info                  CSI    0000003f PopulateComponentFamilies ignoring identity-less key [l:190{95}]"x86_microsoft-windows-winre-recoverytools_31bf3856ad364e35_6.1.7601.17514_none_d7553e5fcf6b6373"
    2014-08-14 15:02:51, Info                  CSI    00000040 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft-windows-wlangpclient.resources_31bf3856ad364e35_6.1.7600.16385_en-us_d71954ccc0bef83a"
    2014-08-14 15:02:51, Info                  CSI    00000041 PopulateComponentFamilies ignoring identity-less key [l:198{99}]"x86_microsoft.windows.c..-controls.resources_6595b64144ccf1df_6.0.7600.16385_sv-se_3d38d4e8a053e3eb"
    2014-08-14 15:02:51, Info                  CSI    00000042 Install-map entry missing component key in populate: [l:132{66}]"amd64_hal.inf-languagepack_31bf3856ad364e35_en-us_77e8041b44c19aa9"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000043 Install-map entry missing component key in populate: [l:140{70}]"amd64_hiddigi.inf-languagepack_31bf3856ad364e35_en-us_284235e9c962f280"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000044 Install-map entry missing component key in populate: [l:140{70}]"amd64_hidserv.inf-languagepack_31bf3856ad364e35_en-us_ffad27e3e33e1d7b"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000045 Install-map entry missing component key in populate: [l:110{55}]"amd64_mdmmcd.inf_31bf3856ad364e35_none_22a8db0f018e3889"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000046 Install-map entry missing component key in populate: [l:112{56}]"amd64_mdmmcom.inf_31bf3856ad364e35_none_31c07cb3cb15bc4b"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000047 Install-map entry missing component key in populate: [l:110{55}]"amd64_mdmmct.inf_31bf3856ad364e35_none_f9562a50e08c3d79"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000048 Install-map entry missing component key in populate: [l:112{56}]"amd64_mdmmega.inf_31bf3856ad364e35_none_063982a7934e1f59"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    00000049 Install-map entry missing component key in populate: [l:114{57}]"amd64_mdmmetri.inf_31bf3856ad364e35_none_daf34a3d0a1e0e04"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004a Install-map entry missing component key in populate: [l:114{57}]"amd64_mdmmhrtz.inf_31bf3856ad364e35_none_e6e342238c4a5672"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004b Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-a..lprovider.resources_31bf3856ad364e35_en-us_8af97888bc8b9fef"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004c Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-a..ompat-adm.resources_31bf3856ad364e35_en-us_821ab8b6ffcd8211"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:51, Info                  CSI    0000004d Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-b..rstandard.resources_31bf3856ad364e35_en-us_ab6fc212f9f4e893"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    0000004e Install-map entry missing component key in populate: [l:164{82}]"amd64_microsoft-windows-diskcopy.resources_31bf3856ad364e35_en-us_6302e953cde376bd"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000004f Install-map entry missing component key in populate: [l:162{81}]"amd64_microsoft-windows-dwm-adm.resources_31bf3856ad364e35_en-us_e17bae3ee7b72886"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000050 Install-map entry missing component key in populate: [l:170{85}]"amd64_microsoft-windows-f..truetype-arialblack_31bf3856ad364e35_none_0760da1d6e711a0d"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000051 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-h..providers.resources_31bf3856ad364e35_en-us_b352d37ee7af6775"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000052 Install-map entry missing component key in populate: [l:164{82}]"amd64_microsoft-windows-help-efs.resources_31bf3856ad364e35_en-us_61c13f6e2023f349"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000053 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-l..geexpress.resources_31bf3856ad364e35_en-us_17c6801ba1ed9668"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000054 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-l..priseia64.resources_31bf3856ad364e35_en-us_f8a97f4cf74424cd"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    00000055 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-l..standardv.resources_31bf3856ad364e35_en-us_cd062e328582099c"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000056 Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-p..vchostreg.resources_31bf3856ad364e35_en-us_0b6320bab723301e"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000057 Install-map entry missing component key in populate: [l:170{85}]"amd64_microsoft-windows-s..agnosticsengine-adm_31bf3856ad364e35_none_2d921027cf470dc5"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000058 Install-map entry missing component key in populate: [l:170{85}]"amd64_microsoft-windows-s..csengine-nativehost_31bf3856ad364e35_none_2821f4ae1a431e3e"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000059 Install-map entry missing component key in populate: [l:158{79}]"amd64_microsoft-windows-sysdm.resources_31bf3856ad364e35_en-us_0858f6439944b79d"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005a Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft-windows-w..ouppolicy.resources_31bf3856ad364e35_en-us_e6d8645b06cbf362"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005b Install-map entry missing component key in populate: [l:172{86}]"amd64_microsoft.windows.c..-controls.resources_6595b64144ccf1df_zh-cn_7e873ca8c1808db3"
    [l:30{15}]"5.82.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005c Install-map entry missing component key in populate: [l:136{68}]"amd64_mshdc.inf-languagepack_31bf3856ad364e35_en-us_eb809c3a5bcf098f"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005d Install-map entry missing component key in populate: [l:146{73}]"amd64_networking-mpssvc.resources_31bf3856ad364e35_en-us_dec64a5527731c75"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005e Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx006.inf-languagepack_31bf3856ad364e35_en-us_3f3836061538b064"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000005f Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx00v.inf-languagepack_31bf3856ad364e35_en-us_0a24838850eed8a4"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000060 Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx00w.inf-languagepack_31bf3856ad364e35_en-us_a9503b8d1dddb145"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000061 Install-map entry missing component key in populate: [l:142{71}]"amd64_prnlx00z.inf-languagepack_31bf3856ad364e35_en-us_86d349fa84aa3b28"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000062 Install-map entry missing component key in populate: [l:142{71}]"amd64_prnms002.inf-languagepack_31bf3856ad364e35_en-us_0f4e2e4ae11b4862"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000063 Install-map entry missing component key in populate: [l:134{67}]"amd64_tape.inf-languagepack_31bf3856ad364e35_en-us_973842fa62a48c80"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000064 Install-map entry missing component key in populate: [l:168{84}]"msil_microsoft.windows.d..s.writediagprogress_31bf3856ad364e35_none_680feca004dd7d0b"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000065 Install-map entry missing component key in populate: [l:168{84}]"msil_microsoft.windows.d..troubleshootingpack_31bf3856ad364e35_none_1b5b30e0a3b866b7"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000066 Install-map entry missing component key in populate: [l:170{85}]"msil_microsoft.windows.s..owershell.resources_31bf3856ad364e35_en-us_8a9bfe8ff50d064d"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    00000067 Install-map entry missing component key in populate: [l:138{69}]"msil_rmconfighelper.resources_31bf3856ad364e35_en-us_587cf87bf10d4e8a"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    00000068 Install-map entry missing component key in populate: [l:160{80}]"wow64_microsoft-windows-powershell-events_31bf3856ad364e35_none_d601b7800debedba"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000069 Install-map entry missing component key in populate: [l:154{77}]"wow64_microsoft-windows-powershell-exe_31bf3856ad364e35_none_51d98b2a035913f7"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006a Install-map entry missing component key in populate: [l:162{81}]"wow64_microsoft-windows-powershell-message_31bf3856ad364e35_none_89b9ccaee0e1b776"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006b Install-map entry missing component key in populate: [l:154{77}]"wow64_microsoft-windows-powershell-sip_31bf3856ad364e35_none_51e8f9d0034ad6f7"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006c Install-map entry missing component key in populate: [l:164{82}]"x86_microsoft-windows-bootconfig.resources_31bf3856ad364e35_en-us_e91165d43a042067"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006d Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-l..-lpksetup.resources_31bf3856ad364e35_en-us_c56a4fd729d7a973"
    [l:28{14}]"6.1.7601.17514"
    2014-08-14 15:02:52, Info                  CSI    0000006e Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-l..anagement.resources_31bf3856ad364e35_en-us_63d825b64ab5a9be"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    0000006f Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-l..serverhpc.resources_31bf3856ad364e35_en-us_7962778a6725523c"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000070 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-l..verembeddedsolution_31bf3856ad364e35_none_f5b3c13a343f599a"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000071 Install-map entry missing component key in populate: [l:158{79}]"x86_microsoft-windows-msieftp.resources_31bf3856ad364e35_en-us_cdbac8c0b6c636f9"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000072 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-n.._service_runtimeapi_31bf3856ad364e35_none_f8313852616ba684"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000073 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-r..stion-detector-core_31bf3856ad364e35_none_f1331bb5f89dd2ba"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000074 Install-map entry missing component key in populate: [l:166{83}]"x86_microsoft-windows-rasrtrfiltr.resources_31bf3856ad364e35_en-us_86e21fc24740da24"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000075 Install-map entry missing component key in populate: [l:160{80}]"x86_microsoft-windows-regsvr32.resources_31bf3856ad364e35_en-us_a61362bfb6bda237"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:52, Info                  CSI    00000076 Install-map entry missing component key in populate: [l:168{84}]"x86_microsoft-windows-s..iprovider.resources_31bf3856ad364e35_en-us_1447213805498c8a"
    [l:28{14}]"6.1.7600.16385"
    2014-08-14 15:02:53, Error                 CSI    00000077 (F) STATUS_OBJECT_NAME_NOT_FOUND #1556704# from Windows::Rtl::SystemImplementation::DirectRegistryProvider::SysOpenKey(flg
    = 0, key = {provider=NULL, handle=0}, da = (KEY_READ|KEY_WOW64_64KEY), oa = @0xd3e2e0->OBJECT_ATTRIBUTES {s:48; rd:NULL; on:[156]"\Registry\Machine\Software\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-security-secedit_31bf3[gle=0xd0000034]
    2014-08-14 15:02:53, Error                 CSI    00000078@2014/8/14:19:02:53.07 (F) d:\win7sp1_gdr\base\wcp\sil\merged\ntu\ntsystem.cpp(3676): Error STATUS_OBJECT_NAME_NOT_FOUND
    originated in function Windows::Rtl::SystemImplementation::DirectRegistryProvider::SysOpenKey expression: (null)
    [gle=0x80004005]
    2014-08-14 15:02:53, Error                 CSI    00000079 (F) STATUS_OBJECT_NAME_NOT_FOUND #1556703# from Windows::Rtl::SystemImplementation::CKey::OpenExistingKey(f
    = 0, da = (KEY_READ), oa = @0xd3e7a0, key = NULL, disp = (null))[gle=0xd0000034]
    2014-08-14 15:02:53, Info                  CBS    NonStart: Failed to get store. [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-08-14 15:02:53, Info                  CBS    Failed to ensure no startup processing was required. [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-08-14 15:02:53, Info                  CBS    Failed during startup processing, continuing with Trusted Installer execution [HRESULT = 0x80070002 - ERROR_FILE_NOT_FOUND]
    2014-08-14 15:02:53, Info                  CBS    Startup processing thread terminated normally
    2014-08-14 15:02:54, Info                  CSI    0000007a@2014/8/14:19:02:54.282 PopulateComponentFamiliesKey - Begin

    Hi,
    Sorry to hear that in-place upgrade is still failed. It also indicates the operating system is non-recoverable.
    You may have to rebuild the server.
    If rebuilding is not an acceptable solution, you can open a ticket with CSS support.
    http://support.microsoft.com/gp/profsup/en-au
    Hi Daniel, the price indicated on the site. Is it the price until the incident is resolved? (no matter whether it takes days or weeks)
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • Error when starting Weblogic server with Coherence

    We want to use Coherence 3.6 with Weblogic Server 10.3. During server startup, we get the following error. My understanding is the cluster should be started automatically based on the configuration listed below the error. Appreciate any pointers.
    <Dec 15, 2011 3:20:11 PM PST> <Error> <Coherence> <BEA-000000> <2011-12-15 15:20:11.920/67.311 Oracle Coherence SE 3.6.0.4 <Error> (thread=Cluster, member=n/a): This member could not join the cluster because of a configuration mismatch between this member and the configuration being used by the rest of the cluster. This member specified a cluster name of "EPCIS" which did not match the name of the running cluster. This indicates that there are multiple clusters on this network attempting to use overlapping network configurations. Rejected by Member(Id=9, Timestamp=2011-11-16 13:58:42.941, Address=10.229.189.30:8088, MachineId=21022, Location=site:us.oracle.com,machine:adc2101177,process:30667, Role=WeblogicServer).>
    <Dec 15, 2011 3:20:11 PM PST> <Error> <oracle.apps.pas.epc.framework.db.Cache> <BEA-000000> <java.lang.RuntimeException: Failed to start Service "Cluster" (ServiceState=SERVICE_STOPPED, STATE_JOINING)>
    <Dec 15, 2011 3:20:11 PM PST> <Error> <Coherence> <BEA-000000> <2011-12-15 15:20:11.957/67.349 Oracle Coherence SE 3.6.0.4 <Error> (thread=[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Error while starting cluster: java.lang.RuntimeException: Failed to start Service "Cluster" (ServiceState=SERVICE_STOPPED, STATE_JOINING)
    CONFIGURATION:
    We have the following descriptor (epcis-coherence-cache-config.xml) in $DOMAIN_HOME/epc-config:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>distributed</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributed</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <local-scheme></local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    </caching-schemes>
    </cache-config>
    We also have tangosol-coherence-override.xml in the same dir:
    <coherence>
    <cluster-config>
    <member-identity>
    <cluster-name system-property="tangosol.coherence.clustername">EPCIS</cluster-name>
    </member-identity>
    </cluster-config>
    <configurable-cache-factory-config>
    <class-name>com.tangosol.net.DefaultConfigurableCacheFactory</class-name>
    <init-params>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>epcis-coherence-cache-config.xml</param-value>
    </init-param>
    </init-params>
    </configurable-cache-factory-config>
    <license-config>
    <edition-name system-property="tangosol.coherence.edition">SE</edition-name>
    <license-mode system-property="tangosol.coherence.mode">dev</license-mode>
    </license-config>
    </coherence>
    We have modified startWebLogic.sh by adding:
    PRE_CLASSPATH="/slot/xyz/oracle/mwhome/oracle_common/modules/oracle.coherence_3.6/coherence.jar:${DOMAIN_HOME}/epc-config/:${PRE_CLASSPATH}"

    As the error message says, your WebLogic server is trying to join a cluster that has a different cluster name.
    This bit in your tangosol-coherence-override.xml file or the tangosol.coherence.clustername system property must be the same in all members of the cluster
    <cluster-name system-property="tangosol.coherence.clustername">EPCIS</cluster-name>JK

  • Systemd unit for Glassfish v4 server

    Hi all!
    Im trying to set up sytemd unit for glassfish4 web server but I am ending up in failed satate..
    Here's what I got:
    cat /usr/lib/systemd/system/glassfish.service
    [Unit]
    Description=GlassFish Server
    [Service]
    ExecStart=/home/pian/glassfish4/bin/asadmin start-domain
    ExecStop=/home/pian/glassfish4/bin/asadmin stop-domain
    ExecReload=/home/pian/glassfish4/bin/asadmin restart-domain
    Type=forking
    TimeoutSec=15min
    [Install]
    WantedBy=multi-user.target
    #systemctl status glassfish.service
    * glassfish.service - GlassFish Server
    Loaded: loaded (/usr/lib/systemd/system/glassfish.service; enabled; vendor preset: disabled)
    Active: failed (Result: exit-code) since Sun 2015-03-22 14:54:34 UTC; 10min ago
    Process: 142 ExecStart=/home/pian/glassfish4/bin/asadmin start-domain (code=exited, status=1/FAILURE)
    Mar 22 14:43:32 alarmpi systemd[1]: Starting GlassFish Server...
    Mar 22 14:54:34 alarmpi asadmin[142]: Waiting for domain1 to start ................................................................................................................................................
    Mar 22 14:54:34 alarmpi asadmin[142]: serverNoStart
    Mar 22 14:54:34 alarmpi asadmin[142]: Command start-domain failed.
    Mar 22 14:54:34 alarmpi systemd[1]: glassfish.service: control process exited, code=exited status=1
    Mar 22 14:54:34 alarmpi systemd[1]: Failed to start GlassFish Server.
    Mar 22 14:54:34 alarmpi systemd[1]: Unit glassfish.service entered failed state.
    Mar 22 14:54:34 alarmpi systemd[1]: glassfish.service failed.
    glassfish's log file
    [2015-03-22T15:08:25.078+0000] [] [INFO] [NCLS-GFLAUNCHER-00005] [javax.enterprise.launcher] [tid: _ThreadID=1 _ThreadName=main] [timeMillis: 1427036905078] [levelValue: 800] [[
    JVM invocation command line:
    /usr/lib/jvm/java-8-openjdk/bin/java
    -cp
    /home/pian/glassfish4/glassfish/modules/glassfish.jar
    -XX:+UnlockDiagnosticVMOptions
    -XX:NewRatio=2
    -XX:MaxPermSize=192m
    -Xmx512m
    -client
    -javaagent:/home/pian/glassfish4/glassfish/lib/monitor/flashlight-agent.jar
    -Djavax.xml.accessExternalSchema=all
    -Djavax.net.ssl.trustStore=/home/pian/glassfish4/glassfish/domains/domain1/config/cacerts.jks
    -Djdk.corba.allowOutputStreamSubclass=true
    -Dfelix.fileinstall.dir=/home/pian/glassfish4/glassfish/modules/autostart/
    -Dorg.glassfish.additionalOSGiBundlesToStart=org.apache.felix.shell,org.apache.felix.gogo.runtime,org.apache.felix.gogo.shell,org.apache.felix.gogo.command,org.apache.felix.shell.remote,org.apache.felix.fileinstall
    -Dcom.sun.aas.installRoot=/home/pian/glassfish4/glassfish
    -Dfelix.fileinstall.poll=5000
    -Djava.endorsed.dirs=/home/pian/glassfish4/glassfish/modules/endorsed:/home/pian/glassfish4/glassfish/lib/endorsed
    -Djava.security.policy=/home/pian/glassfish4/glassfish/domains/domain1/config/server.policy
    -Dosgi.shell.telnet.maxconn=1
    -Dfelix.fileinstall.bundles.startTransient=true
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dfelix.fileinstall.log.level=2
    -Djavax.net.ssl.keyStore=/home/pian/glassfish4/glassfish/domains/domain1/config/keystore.jks
    -Djava.security.auth.login.config=/home/pian/glassfish4/glassfish/domains/domain1/config/login.conf
    -Dfelix.fileinstall.disableConfigSave=false
    -Dfelix.fileinstall.bundles.new.start=true
    -Dcom.sun.aas.instanceRoot=/home/pian/glassfish4/glassfish/domains/domain1
    -Dosgi.shell.telnet.port=6666
    -Dgosh.args=--nointeractive
    -Dcom.sun.enterprise.security.httpsOutboundKeyAlias=s1as
    -Dosgi.shell.telnet.ip=127.0.0.1
    -DANTLR_USE_DIRECT_CLASS_LOADING=true
    -Djava.awt.headless=true
    -Dcom.ctc.wstx.returnNullForDefaultNamespace=true
    -Djava.ext.dirs=/usr/lib/jvm/java-8-openjdk/lib/ext:/usr/lib/jvm/java-8-openjdk/jre/lib/ext:/home/pian/glassfish4/glassfish/domains/domain1/lib/ext
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djava.library.path=/home/pian/glassfish4/glassfish/lib:/usr/java/packages/lib/arm:/lib:/usr/lib
    com.sun.enterprise.glassfish.bootstrap.ASMain
    -upgrade
    false
    -domaindir
    /home/pian/glassfish4/glassfish/domains/domain1
    -read-stdin
    true
    -asadmin-args
    --host,,,localhost,,,--port,,,4848,,,--secure=false,,,--terse=false,,,--echo=false,,,--interactive=false,,,start-domain,,,--verbose=false,,,--watchdog=false,,,--debug=false,,,--domaindir,,,/home/pian/glassfish4/glassfish/domains,,,domain1
    -domainname
    domain1
    -instancename
    server
    -type
    DAS
    -verbose
    false
    -asadmin-classpath
    /home/pian/glassfish4/glassfish/lib/client/appserver-cli.jar
    -debug
    false
    -asadmin-classname
    com.sun.enterprise.admin.cli.AdminMain]]
    [2015-03-22T15:10:49.758+0000] [glassfish 4.1] [INFO] [NCLS-LOGGING-00009] [javax.enterprise.logging] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037049758] [levelValue: 800] [[
    Running GlassFish Version: GlassFish Server Open Source Edition 4.1 (build 13)]]
    [2015-03-22T15:10:49.826+0000] [glassfish 4.1] [INFO] [NCLS-LOGGING-00010] [javax.enterprise.logging] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037049826] [levelValue: 800] [[
    Server log file is using Formatter class: com.sun.enterprise.server.logging.ODLLogFormatter]]
    [2015-03-22T15:10:58.384+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01115] [javax.enterprise.system.core.security] [tid: _ThreadID=12 _ThreadName=RunLevelControllerThread-1427037040685] [timeMillis: 1427037058384] [levelValue: 800] [[
    Realm [admin-realm] of classtype [com.sun.enterprise.security.auth.realm.file.FileRealm] successfully created.]]
    [2015-03-22T15:10:58.495+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01115] [javax.enterprise.system.core.security] [tid: _ThreadID=12 _ThreadName=RunLevelControllerThread-1427037040685] [timeMillis: 1427037058495] [levelValue: 800] [[
    Realm [file] of classtype [com.sun.enterprise.security.auth.realm.file.FileRealm] successfully created.]]
    [2015-03-22T15:10:59.986+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01115] [javax.enterprise.system.core.security] [tid: _ThreadID=12 _ThreadName=RunLevelControllerThread-1427037040685] [timeMillis: 1427037059986] [levelValue: 800] [[
    Realm [certificate] of classtype [com.sun.enterprise.security.auth.realm.certificate.CertificateRealm] successfully created.]]
    [2015-03-22T15:11:19.304+0000] [glassfish 4.1] [INFO] [SEC-SVCS-00100] [javax.enterprise.security.services] [tid: _ThreadID=15 _ThreadName=RunLevelControllerThread-1427037041041] [timeMillis: 1427037079304] [levelValue: 800] [[
    Authorization Service has successfully initialized.]]
    [2015-03-22T15:11:34.956+0000] [glassfish 4.1] [INFO] [] [org.glassfish.ha.store.spi.BackingStoreFactoryRegistry] [tid: _ThreadID=15 _ThreadName=RunLevelControllerThread-1427037041041] [timeMillis: 1427037094956] [levelValue: 800] [[
    Registered org.glassfish.ha.store.adapter.cache.ShoalBackingStoreProxy for persistence-type = replicated in BackingStoreFactoryRegistry]]
    [2015-03-22T15:11:35.020+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427037041032] [timeMillis: 1427037095020] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 1,051ms - bound to [/0.0.0.0:8080]]]
    [2015-03-22T15:11:42.794+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427037041032] [timeMillis: 1427037102794] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 60ms - bound to [/0.0.0.0:8181]]]
    [2015-03-22T15:11:49.478+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427037041032] [timeMillis: 1427037109478] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 50ms - bound to [/0.0.0.0:4848]]]
    [2015-03-22T15:11:53.456+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427037041032] [timeMillis: 1427037113456] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 12ms - bound to [/0.0.0.0:3700]]]
    [2015-03-22T15:14:14.999+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037254999] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:15:00.827+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01002] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037300827] [levelValue: 800] [[
    Java security manager is disabled.]]
    [2015-03-22T15:15:00.842+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01010] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037300842] [levelValue: 800] [[
    Entering Security Startup Service.]]
    [2015-03-22T15:15:01.135+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01143] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037301135] [levelValue: 800] [[
    Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.]]
    [2015-03-22T15:15:07.477+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01011] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037307477] [levelValue: 800] [[
    Security Service(s) started successfully.]]
    [2015-03-22T15:15:35.705+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00198] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037335705] [levelValue: 800] [[
    Created HTTP listener http-listener-1 on host/port 0.0.0.0:8080]]
    [2015-03-22T15:15:36.235+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00198] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037336235] [levelValue: 800] [[
    Created HTTP listener http-listener-2 on host/port 0.0.0.0:8181]]
    [2015-03-22T15:15:36.542+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00198] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037336542] [levelValue: 800] [[
    Created HTTP listener admin-listener on host/port 0.0.0.0:4848]]
    [2015-03-22T15:15:37.531+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00200] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037337531] [levelValue: 800] [[
    Created virtual server server]]
    [2015-03-22T15:15:37.794+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00200] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037337794] [levelValue: 800] [[
    Created virtual server __asadmin]]
    [2015-03-22T15:15:47.942+0000] [glassfish 4.1] [INFO] [AS-WEB-CORE-00306] [javax.enterprise.web.core] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037347942] [levelValue: 800] [[
    Setting JAAS app name glassfish-web]]
    [2015-03-22T15:15:47.965+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00201] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037347965] [levelValue: 800] [[
    Virtual server server loaded default web module ]]
    [2015-03-22T15:16:31.619+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037391619] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:32.504+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037392504] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:32.624+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037392624] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:32.740+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037392740] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:32.856+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037392856] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:32.975+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037392975] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:33.092+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037393092] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:16:33.212+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427037040728] [timeMillis: 1427037393212] [levelValue: 800] [[
    visiting unvisited references]]
    when starting Glassfish from terminal with asadmin start-domain I get this:
    $ ./asadmin start-domain
    Waiting for domain1 to start ....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
    serverNoStart
    Command start-domain failed.
    and this gets logged:
    [2015-03-22T15:39:24.132+0000] [] [INFO] [NCLS-GFLAUNCHER-00005] [javax.enterprise.launcher] [tid: _ThreadID=1 _ThreadName=main] [timeMillis: 1427038764132] [levelValue: 800] [[
    JVM invocation command line:
    /usr/lib/jvm/java-8-openjdk/bin/java
    -cp
    /home/pian/glassfish4/glassfish/modules/glassfish.jar
    -XX:+UnlockDiagnosticVMOptions
    -XX:NewRatio=2
    -XX:MaxPermSize=192m
    -Xmx512m
    -client
    -javaagent:/home/pian/glassfish4/glassfish/lib/monitor/flashlight-agent.jar
    -Djavax.xml.accessExternalSchema=all
    -Djavax.net.ssl.trustStore=/home/pian/glassfish4/glassfish/domains/domain1/config/cacerts.jks
    -Djdk.corba.allowOutputStreamSubclass=true
    -Dfelix.fileinstall.dir=/home/pian/glassfish4/glassfish/modules/autostart/
    -Dorg.glassfish.additionalOSGiBundlesToStart=org.apache.felix.shell,org.apache.felix.gogo.runtime,org.apache.felix.gogo.shell,org.apache.felix.gogo.command,org.apache.felix.shell.remote,org.apache.felix.fileinstall
    -Dcom.sun.aas.installRoot=/home/pian/glassfish4/glassfish
    -Dfelix.fileinstall.poll=5000
    -Djava.endorsed.dirs=/home/pian/glassfish4/glassfish/modules/endorsed:/home/pian/glassfish4/glassfish/lib/endorsed
    -Djava.security.policy=/home/pian/glassfish4/glassfish/domains/domain1/config/server.policy
    -Dosgi.shell.telnet.maxconn=1
    -Dfelix.fileinstall.bundles.startTransient=true
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dfelix.fileinstall.log.level=2
    -Djavax.net.ssl.keyStore=/home/pian/glassfish4/glassfish/domains/domain1/config/keystore.jks
    -Djava.security.auth.login.config=/home/pian/glassfish4/glassfish/domains/domain1/config/login.conf
    -Dfelix.fileinstall.disableConfigSave=false
    -Dfelix.fileinstall.bundles.new.start=true
    -Dcom.sun.aas.instanceRoot=/home/pian/glassfish4/glassfish/domains/domain1
    -Dosgi.shell.telnet.port=6666
    -Dgosh.args=--nointeractive
    -Dcom.sun.enterprise.security.httpsOutboundKeyAlias=s1as
    -Dosgi.shell.telnet.ip=127.0.0.1
    -DANTLR_USE_DIRECT_CLASS_LOADING=true
    -Djava.awt.headless=true
    -Dcom.ctc.wstx.returnNullForDefaultNamespace=true
    -Djava.ext.dirs=/usr/lib/jvm/java-8-openjdk/lib/ext:/usr/lib/jvm/java-8-openjdk/jre/lib/ext:/home/pian/glassfish4/glassfish/domains/domain1/lib/ext
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djava.library.path=/home/pian/glassfish4/glassfish/lib:/usr/java/packages/lib/arm:/lib:/usr/lib
    com.sun.enterprise.glassfish.bootstrap.ASMain
    -upgrade
    false
    -domaindir
    /home/pian/glassfish4/glassfish/domains/domain1
    -read-stdin
    true
    -asadmin-args
    --host,,,localhost,,,--port,,,4848,,,--secure=false,,,--terse=false,,,--echo=false,,,--interactive=true,,,start-domain,,,--verbose=false,,,--watchdog=false,,,--debug=false,,,--domaindir,,,/home/pian/glassfish4/glassfish/domains,,,domain1
    -domainname
    domain1
    -instancename
    server
    -type
    DAS
    -verbose
    false
    -asadmin-classpath
    /home/pian/glassfish4/glassfish/lib/client/appserver-cli.jar
    -debug
    false
    -asadmin-classname
    com.sun.enterprise.admin.cli.AdminMain]]
    [2015-03-22T15:41:45.525+0000] [glassfish 4.1] [INFO] [NCLS-LOGGING-00009] [javax.enterprise.logging] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427038905525] [levelValue: 800] [[
    Running GlassFish Version: GlassFish Server Open Source Edition 4.1 (build 13)]]
    [2015-03-22T15:41:45.598+0000] [glassfish 4.1] [INFO] [NCLS-LOGGING-00010] [javax.enterprise.logging] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427038905598] [levelValue: 800] [[
    Server log file is using Formatter class: com.sun.enterprise.server.logging.ODLLogFormatter]]
    [2015-03-22T15:41:54.578+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01115] [javax.enterprise.system.core.security] [tid: _ThreadID=15 _ThreadName=RunLevelControllerThread-1427038896771] [timeMillis: 1427038914578] [levelValue: 800] [[
    Realm [admin-realm] of classtype [com.sun.enterprise.security.auth.realm.file.FileRealm] successfully created.]]
    [2015-03-22T15:41:54.690+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01115] [javax.enterprise.system.core.security] [tid: _ThreadID=15 _ThreadName=RunLevelControllerThread-1427038896771] [timeMillis: 1427038914690] [levelValue: 800] [[
    Realm [file] of classtype [com.sun.enterprise.security.auth.realm.file.FileRealm] successfully created.]]
    [2015-03-22T15:41:56.229+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01115] [javax.enterprise.system.core.security] [tid: _ThreadID=15 _ThreadName=RunLevelControllerThread-1427038896771] [timeMillis: 1427038916229] [levelValue: 800] [[
    Realm [certificate] of classtype [com.sun.enterprise.security.auth.realm.certificate.CertificateRealm] successfully created.]]
    [2015-03-22T15:42:16.455+0000] [glassfish 4.1] [INFO] [SEC-SVCS-00100] [javax.enterprise.security.services] [tid: _ThreadID=12 _ThreadName=RunLevelControllerThread-1427038896420] [timeMillis: 1427038936455] [levelValue: 800] [[
    Authorization Service has successfully initialized.]]
    [2015-03-22T15:42:25.582+0000] [glassfish 4.1] [INFO] [] [org.glassfish.ha.store.spi.BackingStoreFactoryRegistry] [tid: _ThreadID=12 _ThreadName=RunLevelControllerThread-1427038896420] [timeMillis: 1427038945582] [levelValue: 800] [[
    Registered org.glassfish.ha.store.adapter.cache.ShoalBackingStoreProxy for persistence-type = replicated in BackingStoreFactoryRegistry]]
    [2015-03-22T15:42:43.272+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427038896756] [timeMillis: 1427038963272] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 1,079ms - bound to [/0.0.0.0:8080]]]
    [2015-03-22T15:42:49.658+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427038896756] [timeMillis: 1427038969658] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 62ms - bound to [/0.0.0.0:8181]]]
    [2015-03-22T15:42:54.264+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427038896756] [timeMillis: 1427038974264] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 41ms - bound to [/0.0.0.0:4848]]]
    [2015-03-22T15:42:58.446+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00087] [javax.enterprise.system.core] [tid: _ThreadID=14 _ThreadName=RunLevelControllerThread-1427038896756] [timeMillis: 1427038978446] [levelValue: 800] [[
    Grizzly Framework 2.3.15 started in: 12ms - bound to [/0.0.0.0:3700]]]
    [2015-03-22T15:45:23.078+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039123078] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:46:06.032+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01002] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039166032] [levelValue: 800] [[
    Java security manager is disabled.]]
    [2015-03-22T15:46:06.048+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01010] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039166048] [levelValue: 800] [[
    Entering Security Startup Service.]]
    [2015-03-22T15:46:06.359+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01143] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039166359] [levelValue: 800] [[
    Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.]]
    [2015-03-22T15:46:12.625+0000] [glassfish 4.1] [INFO] [NCLS-SECURITY-01011] [javax.enterprise.system.core.security] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039172625] [levelValue: 800] [[
    Security Service(s) started successfully.]]
    [2015-03-22T15:46:40.575+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00198] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039200575] [levelValue: 800] [[
    Created HTTP listener http-listener-1 on host/port 0.0.0.0:8080]]
    [2015-03-22T15:46:41.137+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00198] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039201137] [levelValue: 800] [[
    Created HTTP listener http-listener-2 on host/port 0.0.0.0:8181]]
    [2015-03-22T15:46:41.462+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00198] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039201462] [levelValue: 800] [[
    Created HTTP listener admin-listener on host/port 0.0.0.0:4848]]
    [2015-03-22T15:46:42.503+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00200] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039202503] [levelValue: 800] [[
    Created virtual server server]]
    [2015-03-22T15:46:42.788+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00200] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039202788] [levelValue: 800] [[
    Created virtual server __asadmin]]
    [2015-03-22T15:46:52.796+0000] [glassfish 4.1] [INFO] [AS-WEB-CORE-00306] [javax.enterprise.web.core] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039212796] [levelValue: 800] [[
    Setting JAAS app name glassfish-web]]
    [2015-03-22T15:46:52.815+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00201] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039212815] [levelValue: 800] [[
    Virtual server server loaded default web module ]]
    [2015-03-22T15:47:35.172+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039255172] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.122+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256122] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.245+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256245] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.369+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256369] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.493+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256493] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.619+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256619] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.741+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256741] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:47:36.871+0000] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039256871] [levelValue: 800] [[
    visiting unvisited references]]
    [2015-03-22T15:49:33.162+0000] [glassfish 4.1] [INFO] [] [org.glassfish.jersey.server.ApplicationHandler] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039373162] [levelValue: 800] [[
    Initiating Jersey application, version Jersey: 2.10.4 2014-08-08 15:09:00...]]
    [2015-03-22T15:50:26.435+0000] [glassfish 4.1] [INFO] [AS-WEB-GLUE-00172] [javax.enterprise.web] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039426435] [levelValue: 800] [[
    Loading application [service] at [/service]]]
    [2015-03-22T15:50:26.502+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00022] [javax.enterprise.system.core] [tid: _ThreadID=13 _ThreadName=RunLevelControllerThread-1427038896461] [timeMillis: 1427039426502] [levelValue: 800] [[
    Loading application service done in 486,416 ms]]
    [2015-03-22T15:50:26.554+0000] [glassfish 4.1] [INFO] [NCLS-CORE-00017] [javax.enterprise.system.core] [tid: _ThreadID=1 _ThreadName=main] [timeMillis: 1427039426554] [levelValue: 800] [[
    GlassFish Server Open Source Edition 4.1 (13) startup time : Felix (127,555ms), startup services(530,277ms), total(657,832ms)]]
    [2015-03-22T15:50:51.956+0000] [glassfish 4.1] [INFO] [NCLS-JMX-00024] [javax.enterprise.system.jmx] [tid: _ThreadID=59 _ThreadName=Thread-19] [timeMillis: 1427039451956] [levelValue: 800] [[
    Creating a SecureRMIServerSocketFactory @ 0.0.0.0 with ssl config = GlassFishConfigBean.org.glassfish.grizzly.config.dom.Ssl]]
    [2015-03-22T15:50:52.232+0000] [glassfish 4.1] [WARNING] [NCLS-JMX-00020] [javax.enterprise.system.jmx] [tid: _ThreadID=59 _ThreadName=Thread-19] [timeMillis: 1427039452232] [levelValue: 900] [[
    All SSL cipher suites disabled for network-listener(s). Using SSL implementation specific defaults]]
    [2015-03-22T15:50:52.223+0000] [glassfish 4.1] [INFO] [] [] [tid: _ThreadID=59 _ThreadName=Thread-8] [timeMillis: 1427039452223] [levelValue: 800] [[
    SSLParams =org.glassfish.admin.mbeanserver.ssl.SSLParams@1a7d45]]
    [2015-03-22T15:50:53.861+0000] [glassfish 4.1] [INFO] [] [] [tid: _ThreadID=59 _ThreadName=Thread-8] [timeMillis: 1427039453861] [levelValue: 800] [[
    SSLParams =org.glassfish.admin.mbeanserver.ssl.SSLParams@1a7d45]]
    [2015-03-22T15:50:53.870+0000] [glassfish 4.1] [WARNING] [NCLS-JMX-00020] [javax.enterprise.system.jmx] [tid: _ThreadID=59 _ThreadName=Thread-19] [timeMillis: 1427039453870] [levelValue: 900] [[
    All SSL cipher suites disabled for network-listener(s). Using SSL implementation specific defaults]]
    right now, glassfish is started, but when accessing deployed application's URL (it's REST web service) I get resource not available.
    after a while sevice get's available and this is appended into the log:
    [2015-03-22T15:51:01.140+0000] [glassfish 4.1] [INFO] [NCLS-JMX-00025] [javax.enterprise.system.jmx] [tid: _ThreadID=59 _ThreadName=Thread-19] [timeMillis: 1427039461140] [levelValue: 800] [[
    SSLServerSocket /0.0.0.0:8686 and [SSL: ServerSocket[addr=/0.0.0.0,localport=8686]] created]]
    [2015-03-22T15:51:08.236+0000] [glassfish 4.1] [INFO] [NCLS-BOOTSTRAP-00027] [javax.enterprise.bootstrap] [tid: _ThreadID=1 _ThreadName=main] [timeMillis: 1427039468236] [levelValue: 800] [[
    Registered com.sun.enterprise.glassfish.bootstrap.osgi.EmbeddedOSGiGlassFishImpl@5a060f as OSGi service registration: org.apache.felix.framework.ServiceRegistrationImpl@ec523c.]]
    [2015-03-22T15:52:03.697+0000] [glassfish 4.1] [INFO] [NCLS-JMX-00005] [javax.enterprise.system.jmx] [tid: _ThreadID=59 _ThreadName=Thread-19] [timeMillis: 1427039523697] [levelValue: 800] [[
    JMXStartupService has started JMXConnector on JMXService URL service:jmx:rmi://alarmpi:8686/jndi/rmi://alarmpi:8686/jmxrmi]]
    [2015-03-22T15:53:19.225+0000] [glassfish 4.1] [INFO] [] [org.hibernate.validator.internal.util.Version] [tid: _ThreadID=25 _ThreadName=http-listener-1(4)] [timeMillis: 1427039599225] [levelValue: 800] [[
    HV000001: Hibernate Validator 5.0.0.Final]]
    [2015-03-22T15:53:30.219+0000] [glassfish 4.1] [INFO] [] [] [tid: _ThreadID=25 _ThreadName=Thread-8] [timeMillis: 1427039610219] [levelValue: 800] [[
    [EL Info]: 2015-03-22 15:53:30.062--ServerSession(32742320)--EclipseLink, version: Eclipse Persistence Services - 2.5.2.v20140319-9ad6abd]]
    [2015-03-22T15:53:34.081+0000] [glassfish 4.1] [INFO] [] [] [tid: _ThreadID=25 _ThreadName=Thread-8] [timeMillis: 1427039614081] [levelValue: 800] [[
    [EL Info]: connection: 2015-03-22 15:53:34.067--ServerSession(32742320)--file:/home/pian/glassfish4/glassfish/domains/domain1/applications/service/WEB-INF/classes/_serviceUnit login successful]]
    So can you, please, help me understand what is happening and what I need to do to correctly start glassfish's domain with deployed application in it via systemd?
    Thank you!
    Last edited by greengold (2015-03-22 16:10:33)

    I suggest you create a dedicated user for your calibre service and not run it as root (User=, Group=). I'm not so sure running that code mess as root.
    Edit: Or if you want the server to run only when your user is logged in, then create it in the systemd user session.
    Last edited by progandy (2015-01-18 23:56:03)

  • Iphone and ipad Lync Client Randomly cannot sign in to Lync 2013 Server

    I have a Lync 2013 environment that will allow all clients to connect from inside and outside of the network except for ios devices. iOS devices are sometimes able to connect and sometimes not. When they are not able to sign in they receive a message stating,
    "An Error Occurred in Lync. Please retry. If the problem persists, contact your support department"
    I have run tests using the Microsoft Remote Connectivity Analyzer and all tests come back green.  I have also used the Lync Connectivity Analyzer and get the results below:
    Starting Lync server autodiscovery
    Starting automatic discovery for secure (HTTPS) internal channel
    Server discovery failed for secured internal channel against
    https://lyncdiscoverinternal.earenfroe.com/
    Starting automatic discovery for unsecure (HTTP) internal channel
    Server discovery failed for unsecured internal channel against
    http://lyncdiscoverinternal.earenfroe.com/
    Starting automatic discovery for secure (HTTPS) external channel
    Server discovery succeeded for secure (HTTPS) external channel against URL
    https://lyncdiscover.earenfroe.com/
    Starting automatic discovery for unsecure (HTTP) external channel
    Server discovery failed for unsecured external channel against
    http://lyncdiscover.earenfroe.com/
    Starting the requirement tests for Lync Mobile 2013 App
    Starting tests for Mobility (UCWA) service
    Completed tests for Mobility (UCWA) service
    Your deployment meets the minimum requirements for Lync Mobile 2013 App.
    Anyone have any suggestions on where to go next?  Troubleshooting an intermittent connection issue that only affects one mobile platform is tough...especially when all the testing tools say everything is configured correctly :)
    Thanks in advance!
    Tom

    I have the same problem, and we have netscaller as revrse proxy solution and we have the required records created for mobility.
    with lync2010 mobility it is working fine, but with lync 2013 mobiltity we have intermittent issue with error e2-3-33 error
    raghu
    I had the same problem (e2-3-33 on mobile devices at random times) and it turns out it was McAfee antivirus causing the UCWA service to crash repeatedly. The workaround for it is outlined in the below blog entry I found as well as the below Microsoft document.
    Long story short you want to run  follow the steps outlined in the workaround section below (I copied it from the linked MSFT document)
    http://support.microsoft.com/kb/2997513
    http://lynclounge.blogspot.com/2014/07/lync-mobility-issues-event-ids-1309.html
    WORKAROUND
    he following procedures must be performed on all Lync Server 2013 FE server and Director Lync 2013 server roles. To
    perform these procedures, first open a command prompt as an administrator.
    Windows Server 2008 R2
    On the Start menu, type cmd.exe in the Windows search feature, and then press Enter.
    Right-click cmd.exe, and then click Run as administrator.
    Windows Server 2012
    Press the Windows key to access the Start page.
    Use the Windows search feature to locate cmd.exe.
    Right-click cmd.exe, and then click Run as administrator.
    In the Command Prompt window, follow these steps:
    Navigate to the %install drive%:\Windows\System32\inetsrv> directory prompt.
    Enter the following command, and then press Enter:
    appcmd set config /section:applicationPools /[name='LyncUcwa'].recycling.disallowOverlappingRotation:true
    Enter the following command, and then press Enter:
    appcmd set config /section:applicationPools /[name='LyncUcwa'].processModel.shutdownTimeLimit:0.00:00:30
    To confirm the changes from steps 2–3, enter the following command, and then press Enter:
    appcmd list apppools lyncucwa /config
    The following information should be returned to the console to confirm the update to the LyncUcwa application pool
    settings:
    <add name="LyncUcwa" autoStart="true" managedRuntimeVersion="v4.0" managedPipelneMode="Integrated" startMode="AlwaysRunning">
    <processModel identityType="NetworkService" idleTimeout="00:00:00" shutdownTieLimit="00:00:30" />
    <recycling disallowOverlappingRotation="true">
    <periodicRestart time="00:00:00">
    <schedule>
    </schedule>
    </periodicRestart>
    </recycling>
    <failure />
    <cpu />
    </add>
     

  • Unable to start EBS DB after the Server Crash. Error in installing the Required RPM.

    Hi , Hussein ( As most of the Time It is Only you here who comes to the rescue or give Usefull inputs. I am sorry if i mistaken, no Pan intended for Other Experts)
    I 've also posted this issue here but got no response. https://forums.oracle.com/thread/2590497 
    Badly require your inputs and suggestions on the Following Issue. , Really Appreciate the suggestions.
    I need to Install the sabayon-apply rpm which could fix the issue after the Server Crash but unable to install it.
       Please see the Brief of the Issue.
    I got stuck up in installing the rpm after the server(Red Hat Enterprise Linux Server release 6.0 (Santiago) x86_64 GNU/Linux) got
    crashed Eventhough I am able to start it in Xwindows but not able to run or start EBS database along with many other programmes. Also The
    VirtualBox machine installed on it 've No issue, they work fine  But the host OS is not fine. as there are lots of
    errors in .xsession-errors. which i 've pasted below.  And Unable to Install the sabayon-apply rpm that could have fix the Issue.
    I would highly Appreciate if anyone could drop few hints and suggestions on this Issue as this is really Urgently Important for me.
    Please see the following Brief of the Issue.
      after starting the server in Xwindows I was installing the rpms from RHEL6/Packages directory on the server even installed 10-12 rpms
      While installing the rpm i 've inadvertantly issued or run  this command
      rpm -ivh *.rpm --force --nodeps  as it ended up with Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
        After That I could Not Install any rpm with yum or rpm command as getting the Same Errors. 
    while trying to install individual rpm am getting the followig Errors
    [root@ebs Packages]# rpm -ivh libX11*
    error: libX11-1.3-2.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
    error: libX11-1.3-2.el6.i686.rpm cannot be installed
    [root@ebs Packages]# rpm --checksig gtk2*
    gtk2-2.18.9-4.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-2.18.9-4.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-docs-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-engines-2.18.4-5.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-engines-2.18.4-5.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-immodule-xim-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    For that I tried to import the RPM GPG Key But still faced the same errors
    [root@ebs yum.repos.d]# wget http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6 -O /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Key fingerprint = 4214 4123 FECF
    C55B 9086  313D 72F9 7B74 EC55 1F03
    --2013-10-08 00:04:56--  http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    Resolving public-yum.oracle.com... 202.159.216.177, 202.159.216.171
    Connecting to public-yum.oracle.com|202.159.216.177|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 1011 [text/plain]
    Saving to: “/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle”
    FINISHED --2013-10-08 00:05:06--
    Downloaded: 6 files, 55K in 2.0s (27.7 KB/s)
    100%[===========================================================================================================================================================>]
    1,011 --.-K/s   in 0s
    2013-10-08 00:04:56 (155 MB/s) - “/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle”
    saved [1011/1011]
       Than i run this command
    [root@ebs yum.repos.d]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle  ----it Returns with no output
    [root@ebs yum.repos.d]#
    [root@ebs log]# rpm -q gpg-pubkey-ec551f03-4c2d256a
    gpg-pubkey-ec551f03-4c2d256a
    But still I can't install the rpms, got the same Errors. please see the following
    [root@ebs yum.repos.d]# yum install firefox*
    Loaded plugins: refresh-packagekit, rhnplugin
    This system is not registered with RHN.
    RHN support will be disabled.
    Setting up Install Process
    Downloading Packages:
    (1/2): firefox-17.0.9-1.0.1.el6_4.x86_64.rpm
      |  25 MB     03:42
    (2/2): xulrunner-17.0.9-1.0.1.el6_4.x86_64.rpm
      |  14 MB     02:03
    Total
    117 kB/s |  39 MB     05:46
    error: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: BAD
    Problem opening package xulrunner-17.0.9-1.0.1.el6_4.x86_64.rpm
    [root@ebs log]# rpm -qf `which gpg`
    error: rpmdbNextIterator: skipping h#     455 Header V3 RSA/SHA256
    Signature, key ID fd431d51: BAD
    [root@ebs log]# gpg --list-keys
    /root/.gnupg/pubring.gpg
    pub 1024D/11F63C51 2002-02-28
    uid Jamie Cameron <[email protected]>
    sub 1024g/1B24BE83 2002-02-28
    pub 2048D/671DF296 2013-10-08
    uid oracle
    sub 2048g/9FE459CE 2013-10-08
    pub 1024R/F3A5AC78 2013-10-08
    uid oracle (no comment) <[email protected]>
    sub 1024R/6DC65985 2013-10-08
    pub 1024R/78F6C944 2013-10-08
    uid root user (Example GPG Key Signature For RPM
    Packages) <[email protected]>
    sub 1024R/77C97AFF 2013-10-08
    [root@ebs log]# rpm -qi 'gpg-pubkey-*'
    Name : gpg-pubkey Relocations: (not relocatable)
    Version : ec551f03 Vendor: (none)
    Release : 4c2d256a Build Date: Wed 09 Oct
    2013 01:09:10 AM IST
    Install Date: Wed 09 Oct 2013 01:09:10 AM IST      Build Host: localhost
    Group : Public Keys Source RPM: (none)
    Size : 0 License: pubkey
    Signature : (none)
    Summary : gpg(Oracle OSS group (Open Source Software group)
    <[email protected]>)
    Description :
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: rpm-4.8.0 (NSS-3)
    mQENBEwtJWoBCACpiY2rGA6T0ceBi92X88/QclytVBjtDRohOVzs3pmIPh3ULqsW
    G323nmyKbKQBBSjh9OnuO9Y09VG8mzr/w9YV0Ix4cI9/HDTERZ2+TR5u+VNn5J5h
    yvwQSN/FEK6oH2+mz7O0yUNleN7UltR4MOEkHIoAhIvv+1AQQKN3OM8oalz+3gv/
    zz9rAoQczQzT7QWOtBrsRMZgBrKXY/TpJrpVSO3Hx8CnbhKGtLxCCrxZ5v7hh1ht
    3CRAr2+h5bDA9KP6vBZWKEs7NgcvtZFDY6EJc7AoApr3phX9hHE2+snTxe82DkFT
    uA69C8wLyjPCoSy+tcaCqJKOZelNy9RN/WKRABEBAAG0RE9yYWNsZSBPU1MgZ3Jv
    dXAgKE9wZW4gU291cmNlIFNvZnR3YXJlIGdyb3VwKSA8YnVpbGRAb3NzLm9yYWNs
    ZS5jb20+iQE8BBMBAgAmBQJMLSVqAhsDBQkWjmoABgsJCAcDAgQVAggDBBYCAwEC
    HgECF4AACgkQcvl7dOxVHwMiNAf/cD8R74fCBeQsAYid5slIz7CG8xEOBUTDNEJT
    p/owtzr7m7Ydp1txNBOkVeVkUP8czX5EldcmoxA4kCCyHhnxmpJnOt52Fy5ZRnYh
    Ll5gYdpJpXGVScB7fnlh3rJAaesSTacVFC5MKIYPZBiTo9soSXMLNcG8WqHPasdd
    AblC4t5BTDNYlX1RiPeP6m5egHnnxyAXsis8fqIZY0RC9hERxWQ6hdDAX0tJXY8F
    88HDUozvo8jqTlg/5GZcfqcbUjjMUJQ5cBtH3adCthMycdPpPXWJQBuzMIdFJ03u
    YuQ3XrKxBkOLips+OZuWNVZzrPOHsenb49aX4yQsLVc2E2fhKQ==
    =M8XY
    -----END PGP PUBLIC KEY BLOCK-----
    I 've tried to remove the existing keys But Not able to remove them as well.
    Is this the right way of removing the keys ?
    rpm -e --allmatches 'gpg-pubkey-ec551f03-*'  the ec551f03 is the
    version of rpm -qi 'gpg-pubkey-*' query...  Please correct
    Could you tell what I am missing here that's causing the Issue.
    Following are the Errors that is observed in .xsession-errors log file
    ===== BEGIN RING BUFFER (/usr/sbin/sabayon-apply) =====
    MainThread 2013/10/08 18:34:23.3001 (sabayon-apply): No profile for
    user 'root' found
    MainThread 2013/10/08 18:34:23.3005 (sabayon-apply): Fatal exception!
    Exiting abnormally.
    MainThread 2013/10/08 18:34:23.3009 (sabayon-apply): Traceback (most
    recent call last):
    File "/usr/sbin/sabayon-apply", line 149, in <module>
    sys.exit (util.EXIT_CODE_NO_USER_PROFILE)
    SystemExit: 3
    ===== END RING BUFFER (/usr/sbin/sabayon-apply) =====
    This configuration for the debug log can be re-created
    by putting the following in ~//etc/sabayon/sabayon-debug-log.conf
    (use ';' to separate domain names):
    [debug log]
    max lines = 1000
    gnome-session[3707]: EggSMClient-WARNING: Desktop file
    '/etc/xdg/autostart/esc.desktop' has malformed Icon key
    'esc.png'(should not include extension)
    GNOME_KEYRING_SOCKET=/tmp/keyring-x5SKbN/socket
    SSH_AUTH_SOCK=/tmp/keyring-x5SKbN/socket.ssh
    Failed to play sound: Not available
    (polkit-gnome-authentication-agent-1:3917): GLib-GObject-WARNING **:
    cannot register existing type `_PolkitError'
    (polkit-gnome-authentication-agent-1:3917): GLib-CRITICAL **:
    g_once_init_leave: assertion `initialization_value != 0' failed
    W: main.c: This program is not intended to be run as root (unless
    --system is specified).
    ** Message: applet now removed from the notification area
    ** (gnome-user-share:3948): WARNING **: gnome-user-share cannot be
    started as root for security reasons.
    08/10/2013 06:34:26 PM Autoprobing TCP port in (all) network interface
    08/10/2013 06:34:26 PM Listening IPv{4,6}://*:5900
    08/10/2013 06:34:26 PM Autoprobing selected port 5900
    08/10/2013 06:34:26 PM Advertising authentication type: 'No Authentication' (1)
    08/10/2013 06:34:26 PM Advertising security type: 'No Authentication' (1)
    Initializing nautilus-gdu extension
    Initializing nautilus-open-terminal extension
    ** Message: applet now embedded in the notification area
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    kbuildsycoca4 running...
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e00019 (Restore Se).
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    kio_http_cache_cleaner: Already running!
    Object::disconnect: Unexpected null parameter
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x5200004
    specified for 0x5200019 (Restore Se).
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    Object::disconnect: Unexpected null parameter
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e08cb7 (timesofind).
    libpng warning: Extra compressed data in IDAT
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e0a6e3 (Server Aut).
    Highly appreciate the response.
    Thanks And Regards
    MZ

    The Packaged are already there on the server as the RHEL software DVD is copied on the server.
    Yes it was working before the crash, And Even after the Crash i.e
    after starting the server in Xwindows I was installing the rpms from RHEL6/Packages directory on the server even installed 10-12 rpms
      and was in the process of installing the sabayon rpm i 've inadvertantly issued or run  this command
      rpm -ivh *.rpm --force --nodeps  from RHEL software Packages directory.   
    and it ended up with Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
       After that I could Not install any rpm from rpm or yum command.
       I 've  Downloaded the new sabyon*  and Other rpms from the net and tried to install them with rpm or yum command but
        got the same Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD 
       with yum am getting this error
       error: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: BAD.
      I 've Tried searching on google as well for at least 10 hours but did not get any help from it so far.
      The Reinstallation of OS is not AN Option for me rightnow.
       Could you tell something which i could try & may be that works.
    Thanks
    MZ

Maybe you are looking for

  • Multiple Apple IDs on 1 Mac?

    I am considering buying a Mac, but I has a quick question: are multiple IDs supported on in OSX? For instance, could one user use their own AID while another can use a different ID, with no overlap between Users? Please explain this function if there

  • Not able to portletise an ADF application with Security Feature.

    Dear All, I am able to portletise a normal ADF application and is running fine on Portal. But as I add security feature to it I am not able to portletise it, For reference i am pasting my web.xml and portlet.xml. Do i need to include any filter or li

  • How to retrieve Namespace based on Prefix

    Hi I need to parse some XML Schema files that generate elements in a namespace. For example: <element name="firstName" type="xsd:string"/> Is it possible to ask the DOM API what is the namespace for XSD? Regards, N�stor Bosc�n

  • Nokia 2730classic app can't connect to internet

    Hi, I'm trying to use the E-mail application of my phone (Nokia 2730 classic) but when I try to connect it says "Comunication Error", I've tried with the Opera mini browser and the native web browser and definitely there is a internet connection avai

  • Can an iMac monitor for use with a windows computer

    I have software that MUST run on a Windows PC ... it definitely won't run with VMFusion.  I can buy a Cheap PC, but screen quality and size.  Is there a way to use my iMac (Intel based) monitor and hook it to a PC?