Attempting to start NodeManager with WLST

I have a WLST script that list all the configured nodemangers in a domain. I use that list to make a menu. In theory I am trying to have a user pick a nodemanager from the menu and start it without providing any other information. It's not working out well. Here is what I am doing:
#Create Menu
def display():
nm = cmo.getMachines()
menuItems = {}
num = 1
for nodeName in nm:
print "%d. %-3s" % (num, nodeName.getName())
menuItems[num] = nodeName.getName()
num = num + 1
try:
selection = raw_input("Make a Selection: ")
print ""
print "You selected %s" % menuItems[int(selection)]
choice = menuItems[int(selection)]
return choice
except KeyError, ValueError:
print "%s is not a menu option!" %
I make the following call: pick = display()
This stores the nodemanager name in var pick to use later.
I then run the following method: StartNodeManager(pick)
The contents of the method:
StartNodeManager(pick)
serverRuntime()
WLHome=cmo.getWeblogicHome()
NODEManagerHome=WLHome+'/common/nodemanager'
domainConfig()
cd('/Machines/' pick '/NodeManager/' +pick)
nodeIP = cmo.getListenAddress()
nodePort = cmo.getListenPort()
startNodeManager(verbose='true', NodeManagerHome=NODEManagerHome, ListenPort=nodePort, ListenAddress=nodeIP)
When 'startNodeManager(verbose='true', NodeManagerHome=NODEManagerHome, ListenPort=nodePort, ListenAddress=nodeIP)' command is run I get the following error:
Problem invoking WLST - Traceback (innermost last):
File "/home/beaadmin/bin/scripts/wlst/nodemanager-v103.py", line 123, in ?
File "/home/beaadmin/bin/scripts/wlst/nodemanager-v103.py", line 105, in StartNodeManager
File "<iostream>", line 1589, in startNodeManager
TypeError: setProperty(): 2nd arg can't be coerced to String
Is that saying the NodeManagerHome value is throwing the exception? When I set all the vars manually in WLST and run the startNodeManager command it runs fine.
Any ideas?
The code for the StartNodeManager method is as follows:
Edited by: cwells3rd on May 8, 2012 2:25 PM
Edited by: cwells3rd on May 8, 2012 2:27 PM

I looked that up and tried running it a couple of different ways and got the following:
os.spawnlp(os.P_WAIT, startNodeManager(verbose='true', NodeManagerHome=NODEManagerHome, ListenPort=nodePortS, ListenAddress=nodeIP))
Problem invoking WLST - Traceback (innermost last):
File "/home/beaadmin/bin/scripts/wlst/nodemanager-v103.py", line 141, in ?
File "/home/beaadmin/bin/scripts/wlst/nodemanager-v103.py", line 120, in StartNodeManager
AttributeError: class 'org.python.modules.os' has no attribute 'P_WAIT'
os.spawnlp(startNodeManager(verbose='true', NodeManagerHome=NODEManagerHome, ListenPort=nodePortS, ListenAddress=nodeIP))
Successfully launched the Node Manager.
The Node Manager process is running independent of the WLST process.
Exiting WLST will not stop the Node Manager process. Please refer
to the Node Manager logs for more information.
The Node Manager logs will be under /dsto/sw/dev/bea/WEBLOGIC.11.1/oracle11g/wlserver_10.3/common/nodemanager
Node Manager starting in the background
Problem invoking WLST - Traceback (innermost last):
File "/home/beaadmin/bin/scripts/wlst/nodemanager-v103.py", line 141, in ?
File "/home/beaadmin/bin/scripts/wlst/nodemanager-v103.py", line 120, in StartNodeManager
AttributeError: class 'org.python.modules.os' has no attribute 'spawnlp'
Still investigating.....

Similar Messages

  • I mistakenly deleted all browsers from my laptop in an attempt to start clean with the newest version of Firefox. I still have Firefox on my desktop. How can I copy it to my laptop?

    I mistakenly deleted all browsers from my laptop in an attempt to start clean with the newest version of Firefox. I still have Firefox on my desktop. How can I copy it to my laptop?

    Re-installing the Firefox browser is fairly easy. For most users the important part is the information held in the [[profiles|profile]] including bookmarks and passwords.
    If you remove personal settings it is almost impossible to get them back. You can however [[what is firefox sync?|sync]] between computers, and that effectively clones your bookmarks etc.
    If you have not already removed setting do not do so now, some of that info may be recoverable.

  • Problem starting adminserver with WLST and Nodemanager

    I have a domain with one cluster containing 4 managed servers. Now I want to start the adminserver with WLST using the Nodemanager. (I know there are other/beter ways but in this situation I need to do it with Nodemanager).
    The problem is that the Nodemanager doesn't add the right memory arguments to the start command of the admin server.
    This is what I do:
    nmConnect(usernaam,password,host,port,domain)
    nmstart(adminserver)
    This does start the adminserver only without the proper memory arguments.
    I tried:
    using a startup.properties file in the directory <domain-dir> \servers\<server-name> \data\nodemanager with the following arguments: -Xms1024m -Xmx1024m
    and
    Puting the memory arguments in the "Server Start" properties in the config.xml (This works fine for the managedservers)
    How can I solve this?

    The nmstart command has a properties argument. Have you tried that?
    nmStart([serverName], [domainDir], [props], [writer])
    <Richard Greeven> wrote in message news:[email protected]..
    I have a domain with one cluster containing 4 managed servers. Now I want to
    start the adminserver with WLST using the Nodemanager. (I know there are
    other/beter ways but in this situation I need to do it with Nodemanager).
    The problem is that the Nodemanager doesn't add the right memory arguments
    to the start command of the admin server.
    This is what I do:
    nmConnect(usernaam,password,host,port,domain)
    nmstart(adminserver)
    This does start the adminserver only without the proper memory arguments.
    I tried:
    using a startup.properties file in the directory <domain-dir>
    \servers\<server-name> \data\nodemanager with the following
    arguments: -Xms1024m -Xmx1024m
    and
    Puting the memory arguments in the "Server Start" properties in the
    config.xml (This works fine for the managedservers)
    How can I solve this?

  • Error while starting nodemanager in wlst, but start wit startNodeManager.sh

    Hi,
    I cannot start node manager using wlst, but can start with startNodeManager.sh ( present in webogic_home/server/bin )
    My wlst looks like this :
    bea_home=..
    weblogic_home=...
    nmhome = weblogic_home + '\\common\\nodemanager'
    domaindir = bea_home + '\\user_projects\\domains\\' + sys.argv[2]
    startNodeManager(verbose='true', NodeManagerHome=nmhome)
    #Connect to the node manager
    nmConnect(domainName='myclusterdomain',domainDir=domaindir)
    ==============================================
    I get the following errror:
    [java] Launching NodeManager ...
    [java] Properties: {NodeManagerHome=/home/hkarthig/wl11g/middleware/wlserver_10.3/common/nodemanager,}
    [java] Command: /usr/java/jdk1.6.0_07/jre/bin/java -classpath /usr/java/jdk1.6.0_07/jre/lib/rt.jar:/usr/java/jdk1.6.0_07/jre/lib/i18n.jar:/home/hkarthig/wl11g/middleware/wlserver_10.3/server/lib/weblogic.jar weblogic.NodeManager -v
    [java] NMProcess: <Aug 1, 2009 10:17:17 AM> <INFO> <Loading domains file: /home/hkarthig/wl11g/middleware/wlserver_10.3/common/nodemanager/nodemanager.domains>
    [java] NMProcess: <Aug 1, 2009 10:17:17 AM> <SEVERE> <Fatal error in node manager server>
    [java] NMProcess: weblogic.nodemanager.common.ConfigException: Native version is enabled but node manager native library could not be loaded
    [java] NMProcess: at weblogic.nodemanager.server.NMServerConfig.initProcessControl(NMServerConfig.java:243)
    [java] NMProcess: at weblogic.nodemanager.server.NMServerConfig.<init>(NMServerConfig.java:182)
    [java] NMProcess: at weblogic.nodemanager.server.NMServer.init(NMServer.java:177)
    [java] NMProcess: at weblogic.nodemanager.server.NMServer.<init>(NMServer.java:142)
    [java] NMProcess: at weblogic.nodemanager.server.NMServer.main(NMServer.java:357)
    [java] NMProcess: at weblogic.NodeManager.main(NodeManager.java:31)
    [java] NMProcess: Caused by: java.lang.UnsatisfiedLinkError: no nodemanager in java.library.path
    [java] NMProcess: at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    [java] NMProcess: at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    [java] NMProcess: at java.lang.System.loadLibrary(System.java:1030)
    [java] NMProcess: at weblogic.nodemanager.util.UnixProcessControl.<init>(UnixProcessControl.java:24)
    [java] NMProcess: at weblogic.nodemanager.util.Platform.getProcessControl(Platform.java:114)
    [java] NMProcess: at weblogic.nodemanager.server.NMServerConfig.initProcessControl(NMServerConfig.java:241)
    [java] NMProcess: ... 5 more
    [java] NMProcess:
    [java] NMProcess: Stopped draining NMProcess
    [java] NMProcess: Stopped draining NMProcess
    [java] Successfully launched the Node Manager.

    What you should do is note the exact java.library.path setting you end up with when you run startNodeManager.sh and set that value manually in the WLST script.

  • Error JRF when start AdminServer with WLST

    Hello,
    I have a problem when I want to start the AdminServer with my WLST command :
    startServer('AdminServer','mydomain','t3://localhost:7001','user','pwd', 'D:/Oracle/Middleware/user_projects/domains/mydomain',jvmArgs='-Ddomain.home=D:/Oracle/Middleware/user_projects/domains/mydomain -Doracle.security.jps.config=D:/Oracle/Middleware/user_projects/domains/mydomain/config/fmwconfig/jps-config.xml -Doracle.domain.config.dir=D:/Oracle/Middleware/user_projects/domains/mydomain/config')
    Here is the error (sorry, it's in French) :
    WLST-WLS-1336736583189: <11 mai 2012 13 h 43 CEST> <Critical> <WebLogicServer> <BEA-000286> <Failed to invoke startup class "JRF Startup Class", oracle.jrf.UnknownPlatformException: JRF ne peut pas déterminer la plate-forme de serveur d'applications en cours.
    WLST-WLS-1336736583189: oracle.jrf.UnknownPlatformException: JRF ne peut pas déterminer la plate-forme de serveur d'applications en cours.
    WLST-WLS-1336736583189:      at oracle.jrf.ServerPlatformSupportFactory.getInstance(ServerPlatformSupportFactory.java:79)
    WLST-WLS-1336736583189:      at oracle.jrf.wls.JRFStartup.main(JRFStartup.java:42)
    WLST-WLS-1336736583189:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    WLST-WLS-1336736583189:      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    WLST-WLS-1336736583189:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Even with all these Warning/Error, I can use the Administration Console, but not the EM...
    nodemanager.domains : The domain directory is good.
    nodemanager.properties : StartScriptEnabled=true
    I run setDomainEnv.cmd before each run of the command.
    Do you have any idea/advice ?
    Thanks !

    Hello,
    I tried to start the AdminServer with the nodemanager and it works perfectly :
    "nmConnect('NMUser','NMpwd','localhost','5556','DomaineName','Domainedirectory')"
    I had to change the NM user and NM Password in "domain_name, Security, General, and then expand the Advanced options at the bottom.".
    But because of this action, I can't manage my others WebApp on the second host :
    Here is my error :
    "<Could not execute command "getVersion" on the node manager. Reason: "Access to domain 'DomaineName' for user 'NMUser' denied".> "
    Here is my configuration :
    Domain is setup on the HOST1
    AdminServer : HOST1
    WebApp1 : HOST1
    WebApp2 : Host2
    I can't manage WebApp2. I restarted the NodeManager on Host2. Same error...
    Do you already have this error ? The nodemanager.properties and nodemanager.domains are ok the Host2.
    Thanks for your help !

  • How To Set Server Start Parameters With WLST?

    I have WLST scripts that create my WebLogic 10.0 domain(s), managed servers, resources, etc. I'd like to add code to set the server start parameters but I can't seem to find the properties related to server start like root directory, java home, arguments, classpath, etc.
    The relevant piece of the script here that I have so far is:
    def createManagedServer(d,noManagedServers,managed_server_port):
    dhome = DOMAINHOME + "/" + d
    readDomain(DOMAINHOME + "/" + d)
    x = 0
    while x < noManagedServers:
    ms = d + "Man" + str(x+1)
    create(ms,'Server')
    cd("Servers/" + ms)
    lp = managed_server_port + (x * 10)
    set('ListenPort',lp)
    set('AutoRestart','true')
    set('AutoKillIfFailed','true')
    set('AutoRestart','true')
    set('IgnoreSessionsDuringShutdown','true')
    set('GracefulShutdownTimeout',30)
    cd('/')
    x = x + 1
    updateDomain()
    closeDomain()

    From WLST you can find these parameters in
    wls:/DOMAIN_NAME/serverConfig/Servers/SERVER_NAME/ServerStart/SERVER_NAME
    Of course, from your scripts you can set these parameters once you have created the managed server and getting its MBean.
    I hope this helps

  • Weblogic Administration Server start with WLST

    Hi Team,
    I am looking for some WLST script to start the WLS Admin server and then check the status of the Adminserver as well.
    When i tried thee command startServer( Adminserver, myserver, domainname, Domaindir )
    its not working the way i want it to.....So if you tell me some way to check if its not running and start it with WLST...
    I can do the same thing using Shell scripting but not WLST..
    Also is there any way in jython language to execute the script from a file.
    i use exec startmyfile.sh but it does not recognize it.
    help appreciated!!

    You can see an overview presentation of WLST here:
    http://www.slideshare.net/jambay/weblogic-server-weblogic-scripting-tool-overview-presentation/
    There is an Oracle By Example (OBE) tutorial for WLST here:
    http://www.oracle.com/technology/obe/fusion_middleware/wls103/SystemMgmt/Command_Line/Command_Line.html
    I think both of these resources would be valuable for you.

  • MacBook Pro attempts to power up with the lid shut

    My MacBook Pro attempts to start up with the lid shut. The apple on the lid lights up and I can hear the hard drive attempt to boot up. I have recently had the logic board replaced. I have tried to put the computer to sleep before closing the lid but i still experience the same problem.
    thanks

    I'd suggest taking it back to wherever you had the thing repaired and tell them what's happening. My guess is the new logic board is bad, but it could be something as simple as the flex cable for the top case being in improperly. That cable is a bit tricky to get in right, and it's easy to break the locking mechanism, otherwise I'd suggest trying to reseat it yourself. So, take it back, they will most likely do that themselves, and odds are just end up replacing the logic board again.

  • Starting over with ical

    I trashed much of my ical folders in an attempt to start anew with ical because it was giving me so much trouble. Now it won't sync with my palm at all. What can I do?

    Hey,
    this was so frustrating- my orginial post was from about a month ago and what i've done since then has worked for me....
    I wound up using google calendar as my "online hub" instead of icloud. I imported my ical calendar and deleted all my duplicates (did not have to retype everything as I thought- just delete). I wiped out my calendars on ipad and Iphone and transfered google calendar in.
    So far everything has been working great, they all sync pretty much instantly and I haven't had any problems. I really wanted to use icloud since it was the new thing and all and you would think would work the best with all these apple products, but it was so buggy and just didn't work for me. I am still using icloud for photo stream.
    Hope this helps..... I wasted so much time trying to figure this out! Good luck!!!
    * Also.... wanted to mention that I'm still using iCal as my calendar- just syncing with google calendar to make everything work right. Didn't know if that was clear.

  • WebLogic10.3) starting ManagedServer with nodemanager script

    When I started ManagedServer with script (startManagedWebLogic.sh), it was OK.
    the script was
    ./startManagedWebLogic.sh ManagedServer_1 http://xxx.xxx.xxx.xxx:7001
    But, the problem is here
    I used this script to start ManagedServer named as ManagedServer_1
    -----------------------------------------------------script run-----------------------------------------------
    /home/shon/app/weblogic/10.3/was_1/wlserver_10.3/common/bin/wlscontrol.sh -d shon_domain_1 -n /home/shon/app/weblogic/10.3/was_1/common/nodemanager -r /home/shon/app/weblogic/10.3/was_1/user_projects/domains/shon_domain_1 -c -f startManagedWebLogic.sh -s ManagedServer_1 START
    and I get this error log..
    ---------------------------------------------------error log ------------------------------------------------
    <Wed Mar 11 05:08:26 FKST 2009)> <Info> <NodeManager> <Rotated server output log to '/home/shon/app/weblogic/10.3/was_1/user_projects/domains/shon_domain_1/servers/ManagedServer_1/logs/ManagedServer_1.out00004'>
    Server failed to start (see server output log for details)
    /home/shon/app/weblogic/10.3/was_1/user_projects/domains/shon_domain_1/bin> vi '/home/shon/app/weblogic/10.3/was_1/user_projects/domains/shon_domain_1/servers/ManagedServer_1/logs/ManagedServer_1.out00004'
    <Mar 11, 2009 5:05:06 AM FKST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Mar 11, 2009 5:05:06 AM FKST> <Notice> <Log Management> <BEA-170019> <The server log file /home/shon/app/weblogic/10.3/was_1/user_projects/domains/shon_domain_1/servers/ManagedServer_1/logs/ManagedServer_1.log is opened. All server side log events will be written to this file.>
    <Mar 11, 2009 5:05:06 AM FKST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: java.lang.AssertionError: java.lang.reflect.InvocationTargetException
    java.lang.AssertionError: java.lang.reflect.InvocationTargetException
    at weblogic.descriptor.DescriptorManager$SecurityServiceImpl$SecurityProxy._invokeServiceMethod(DescriptorManager.java:175)
    at weblogic.descriptor.DescriptorManager$SecurityServiceImpl$SecurityProxy.decrypt(DescriptorManager.java:192)
    at weblogic.descriptor.DescriptorManager$SecurityServiceImpl.decrypt(DescriptorManager.java:114)
    at weblogic.descriptor.internal.AbstractDescriptorBean._decrypt(AbstractDescriptorBean.java:990)
    at weblogic.management.configuration.SecurityConfigurationMBeanImpl.getCredential(SecurityConfigurationMBeanImpl.java:704)
    Truncated. see log file for complete stacktrace
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    What the hell is the problem? Anyone knows?
    boot.properties was set correctly,

    Looks like this is an issue with insufficient privileges.
    Regards,
    Harsha Chava

  • Problem starting servers with nodemanager

    Hi,
    I'm following the Oracle By Example:
    [http://www.oracle.com/technology/obe/fusion_middleware/wls103/InstallConfig/admin_mngd_srvr/admin_ms_using_nm.htm]
    I have installed on Windows (not on Linux), but that shouldn't make much difference.
    Now look at what I got on Step 10 of the OBE:
    OUTPUT
    D:\oracle\Middleware\user_projects\domains\dizzyworld\bin>startManagedWebLogic.cmd dizzy1 http://localhost:7001
    JAVA Memory arguments: -Xms256m -Xmx512m -Xns128m -Xgcprio:pausetime -XpauseTarget:200ms
    WLS Start Mode=Production
    CLASSPATH=D:\oracle\MIDDLE~1\patch_wls1032\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\oracle\MIDDLE~1\JROCKI~1.5-3\lib\to
    ols.jar;D:\oracle\MIDDLE~1\utils\config\10.3\config-launch.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\oracle\MIDDLE~1\W
    LSERV~1.3\server\lib\weblogic.jar;D:\oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.2.0.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\ser
    ver\lib\webservices.jar;D:\oracle\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;D:\oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:
    \oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;D:\oracle\MIDDLE~1\pa
    tch_wls1032\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\oracle\MIDDLE~1\JROCKI~1.5-3\lib\tools.jar;D:\oracle\MIDDLE~1\util
    s\config\10.3\config-launch.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.j
    ar;D:\oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.2.0.jar;D:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;D:\orac
    le\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;D:\oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;.;C:\Program Files\Java\jre6\lib\
    ext\QTJava.zip
    PATH=D:\oracle\MIDDLE~1\patch_wls1032\profiles\default\native;D:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;D:\oracle\MIDDLE~1\WLSERV~1
    .3\server\bin;D:\oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\jre\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\bin;D:\oracl
    e\MIDDLE~1\patch_wls1032\profiles\default\native;D:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;D:\oracle\MIDDLE~1\WLSERV~1.3\server\bin
    ;D:\oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\jre\bin;D:\oracle\MIDDLE~1\JROCKI~1.5-3\bin;D:\app\alsemgpa\produ
    ct\11.2.0\dbhome_2\bin;D:\oracle\product\11.1.0\client_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\Win
    dowsPowerShell\v1.0\;C:\Program Files\Microsoft Application Virtualization Client;C:\Program Files\ThinkPad\ConnectUtilities;C:\Program File
    s\Windows Imaging\;C:\Program Files\IDM Computer Solutions\UltraEdit-32;C:\Program Files\QuickTime\QTSystem\;D:\oracle\MIDDLE~1\WLSERV~1.3\s
    erver\native\win\32\oci920_8;D:\oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    [INFO ][memory ] GC mode: Garbage collection optimized for throughput, initial strategy: Generational Parallel Mark & Sweep
    [INFO ][memory ] heap size: 65536K, maximal heap size: 1048576K, nursery size: 32768K
    [INFO ][memory ] s-end: GC beforeK-after K (heap K), pause ms
    [INFO ][memory ] s/start - start time of collection (seconds since jvm start)
    [INFO ][memory ] end - end time of collection (seconds since jvm start)
    [INFO ][memory ] before - memory used by objects before collection (KB)
    [INFO ][memory ] after - memory used by objects after collection (KB)
    [INFO ][memory ] heap - size of heap after collection (KB)
    [INFO ][memory ] pause - total sum of pauses during collection (milliseconds)
    [INFO ][memory ] run with -Xverbose:gcpause to see individual pauses
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    BEA JRockit(R) (build R27.6.5-32_o-121899-1.6.0_14-20091001-2107-windows-ia32, compiled mode)
    Redirecting output from WLS window to D:\oracle\MIDDLE~1\USER_P~1\domains\DIZZYW~1\servers\AdminServer\logs\garbage.log
    Het proces heeft geen toegang tot het bestand omdat het door een ander
    proces wordt gebruikt.
    D:\oracle\Middleware\user_projects\domains\dizzyworld\bin>
    The last line says in Dutch "The process has no access to the file because it is being used by another process". I don't know if that is relevant.
    Question
    Now when I go back to my admin console, I don't see dizzy1 server RUNNING, it has status SHUTDOWN. Screen refresh doesn't help either.
    Any suggestions ??
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:43 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:44 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:44 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:45 AM
    Edited by: PaulAlsemgeest on Apr 12, 2010 9:45 AM

    user12115898 wrote:
    Try to see if anything is running on that port ( the port you specified for dizzy1) also try to see if anything is running with the name dizzy1 on that box. Because sometime it happens that console doesnt update so if anything is running on that box with the same name or on that port, then kill it and try to restart it again.Hi,
    I did an netstat -na > checkports.log
    The server dizzy1 has been configured with Listen Port 7003 and SSL Listen Port 7004. Both are not in the checkports.log.
    What I did see in my nodemanager.log was:
    Domains file not found: D:\oracle\MIDDLE~1\WLSERV~1.3\common\NODEMA~1\nodemanager.domains, this is strange, because the file is really there.
    And when I try to start server dizzy1, the Console gives the
    Messages
    -  Warning For server dizzy1, the Node Manager associated with machine dizzyMachine1 is not reachable.
    - Warning All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager or you are not authorized to perform the action requested. No action will be performed.
    Any further help greatly appreciated.

  • I am stumped! Can't open library module-  failure message and can't start Ligthroom 5.7 anymore: "[String "unarchived table s"]:6 : attempt to compare nil with boolean. - Nothing is working anymore! Who can help me?

    My system:
    Windows 7
    Lightroom 5.7
    I allready tried to load an older catalog backup, but that does not help.
    The failure message occurs during the starting process while trying to Open the library:
    "[String "unarchived table s"]:6 : attempt to compare nil with boolean.
    Nothing is working anymore! Who can help me?
    Thank you for your help!

    Ask on the Microsoft forums, as it's their software you're having problems with:
    http://answers.microsoft.com/en-us/mac

  • My screen has gone blank on startup and occasionally a grey folder with a question mark appears. I have tried rebooting either by pressing the start up with power or pram.. Neither attempts have worked ! My iMac is 2008. Please help :)

    My screen has gone blank on startup and occasionally a grey folder with a question mark appears. I have tried rebooting either by pressing the start up with power or pram.. Neither attempts have worked ! My iMac is 2008. Please help :)

    Hey Carolinearnold!
    I have an article for you that seems to address this issue and can provide some troubleshooting steps for you:
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/kb/ts2570
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Issue while starting AdminSerever using wlst commands

    Hi, I am facing issue while trying to start the AdminServer and Managed Server via nodemanager using wlst commands. I have installelled WebLogic 11g on windows 2008 R2. Mentioned below are the steps that I followed:
    1) In Nodemanager.properties files I set following parameters to true. I did this, so that nodemanager can start the server in case of crash.
    CrashRecoveryEnabled=true
    StartScriptEnabled=true
    2) started nodemanager and then started AdminServer from the command prompt as follows:
    nmConnect('weblogic','password','10.23.226.58','5556','IMDomain','E:\Oracle\Middleware\user_projects\domains\IMDomain','ssl')
    nmStart('AdminServer')
    I dont see any errors but it seems the AdminServer do Not start properly as in the cmd window I don't see any 'started successfully' message - the message remains as *"Starting AdminServer..."*
    However in the adminServer logs I see that the status is Running (refer logs at the end) and I can also see it as Running in weblogic console.
    I really didnt care if its not giving a success message in cmd window but the problem occurs when I start the managedServer. After starting the managed server in about 10 minutes, there is a stuck thread. (I guess it is 10 mins because Stuck Thread MaxTime value is 600).
    If I set StartScriptEnabled=false, and start by directly running the startweblogic.cmd then it works fine.
    I am struggling with this for last 1 week, appreciate any help.
    LOGS.......
    Starting WLS with line:
    E:\PROGRA~1\Java\JDK16~1.0_2\bin\java -client -Xms256m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=256m -Dweblogic.Name=AdminServer -Djava.security.policy=E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.xml.stream.XMLInputFactory=weblogic.xml.stax.XMLStreamInputFactory -Dweblogic.security.SSL.nojce=true -Xverify:none -da -Dplatform.home=E:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dwli.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\integration -Dweblogic.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=E:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sysext_manifest_classpath;E:\Oracle\MIDDLE~1\patch_ocp360\profiles\default\sysext_manifest_classpath weblogic.Server
    <Mar 14, 2012 3:16:30 PM CDT> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Mar 14, 2012 3:16:30 PM CDT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Mar 14, 2012 3:16:30 PM CDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.2-b06 from Sun Microsystems Inc.>
    <Mar 14, 2012 3:16:31 PM CDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Mar 14, 2012 3:16:32 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Mar 14, 2012 3:16:32 PM CDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Mar 14, 2012 3:16:32 PM CDT> <Notice> <Log Management> <BEA-170019> <The server log file E:\Oracle\Middleware\user_projects\domains\IMDomain\servers\AdminServer\logs\AdminServer.log is opened. All server side log events will be written to this file.>
    <Mar 14, 2012 3:16:36 PM CDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Mar 14, 2012 3:16:37 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Mar 14, 2012 3:16:37 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Mar 14, 2012 3:16:39 PM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/console'
    Mar 14, 2012 3:16:39 PM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Completed initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/console'
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.227.211.13:8001 for protocols iiop, t3, ldap, snmp, http.>
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <WebLogicServer> <BEA-000329> <Started WebLogic Admin Server "AdminServer" for domain "IMDomain" running in Production Mode>
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Mar 14, 2012 3:16:40 PM CDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file E:\PROGRA~1\Java\JDK16~1.0_2\jre\lib\security\cacerts.>
    <Mar 14, 2012 3:20:53 PM CDT> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [
    Version: V3
    Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: Sun RSA public key, 512 bits
    modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753
    public exponent: 65537
    Validity: [From: Thu Mar 21 14:12:27 CST 2002,
                   To: Tue Mar 22 15:12:27 CDT 2022]
    Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
    SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
    Key_CertSign
    Algorithm: [MD5withRSA]
    Signature:
    0000: 9D 26 4C 29 C8 91 C3 A7 06 C3 24 6F AE B4 F8 82 .&L)......$o....
    0010: 80 4D AA CB 7C 79 46 84 81 C4 66 95 F4 1E D8 C4 .M...yF...f.....
    0020: E9 B7 D9 7C E2 23 33 A4 B7 21 E0 AA 54 2B 4A FF .....#3..!..T+J.
    0030: CB 21 20 88 81 21 DB AC 90 54 D8 7D 79 63 23 3C .! ..!...T..yc#<
    ] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 14, 2012 3:20:53 PM CDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Mar 15, 2012 11:41:41 AM CDT> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "650" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@68a3f7ed", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    java.net.SocketInputStream.socketRead0(Native Method)
    java.net.SocketInputStream.read(SocketInputStream.java:129)
    weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:159)
    java.io.InputStream.read(InputStream.java:85)
    com.certicom.tls.record.ReadHandler.readFragment(Unknown Source)
    com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    com.certicom.tls.record.ReadHandler.read(Unknown Source)
    com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
    sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
    sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
    java.io.InputStreamReader.read(InputStreamReader.java:167)
    java.io.BufferedReader.fill(BufferedReader.java:136)
    java.io.BufferedReader.readLine(BufferedReader.java:299)
    java.io.BufferedReader.readLine(BufferedReader.java:362)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:289)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:314)
    weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:102)
    weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
    weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:47)
    weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    <Mar 15, 2012 11:42:41 AM CDT> <Error> <WebLogicServer> <BEA-000337> <[STUCK] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "710" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@68a3f7ed", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    java.net.SocketInputStream.socketRead0(Native Method)
    java.net.SocketInputStream.read(SocketInputStream.java:129)
    weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:159)
    java.io.InputStream.read(InputStream.java:85)
    com.certicom.tls.record.ReadHandler.readFragment(Unknown Source)
    com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    com.certicom.tls.record.ReadHandler.read(Unknown Source)
    com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
    sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
    sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
    java.io.InputStreamReader.read(InputStreamReader.java:167)
    java.io.BufferedReader.fill(BufferedReader.java:136)
    java.io.BufferedReader.readLine(BufferedReader.java:299)
    java.io.BufferedReader.readLine(BufferedReader.java:362)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:289)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:314)
    weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:102)
    weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
    weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:47)
    weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >

    Hi chamila,
        I never tried the example. Exception is not clear. Could you please post more stack trace from log files.
    Thanks,
    Sham

  • Emac tried to start then stopped, finally after 3 attempts it started

    After a hard drive failure i run my emac on an external hard drive through a fire wire.
    That worked OK till yesterday when it tried to start but after a few seconds of the normal fan noise and before the screen lit up, it stopped. I hit the switch again and it did the same thing 3 times but on the 4th attempt it started but a white screen came on and told me to type "mac-boot" and hit return.
    It finally started.
    The external hard drive was still running OK at the time it had stopped, it was internally that it had stopped.
    I took the back off the emac and vacuumed the dust from inside and after that it has since started normally every time though it seems slower to start, but I could be mistaken about that as I can't now remember noticing how long it took to start before.
    Someone said the problem could be the power supply failing.
    Is there any way for me to diagnose what exactly is wrong, since an emac power supply is not same as a PC power supply?
    Could a PC power supply be modified to replace the emac power supply as I have a failed PC with a good power supply I could use if it would work?
    Any help or suggestions would be appreciated.
    Ann

    Hello and thanks for your reply.
    I neglected to mention that at the time of the hard disk failure I put a new hard disk inside too with the intention of using it as a back up to the External Hard Drive but I found it was easier in the end to get another external hard drive and now I use Time Machine to back up on to that 2nd external hard drive every few days.
    I disconnect the 2nd external hard drive when I'm not backing up data on to it.
    Most of the time when I boot up the emac it somehow knows to go straight to the 1st External Hard Drive instead of the Internal Hard Drive but occasionally it will go to the Internal Hard Drive and when it does that I have to go to System Preferences and then to Startup Disk and actually select the External Hard Drive icon and that's what I had to do every time when it was having that weird starting then stopping phase, ie, every time during the starting then stopping phase, when it did start it went to the Internal Hard Drive even after I would go into Startup Disk and select External Hard Drive it would start on the Internal Hard Drive, so in the end I didn't bother trying any more and I just connected to the internet through the Internal Hard Drive until I took the back off and vacuumed the dust out and ever since I did that it's been running normally, ie, it's always selecting the External Hard Drive again and running at what seems to be normal speed for everything too.
    I just don't know why it went into that starting then stopping phase.
    When it was in the starting then stopping phase the internal fan noise would stop but the little white light next to the DVD door would stay lit up so it was definitely getting some power from somewhere but it was failing to go on and boot up because the power to the internal fan had failed ie, I could clearly hear the fan stop only 3 or 4 seconds after hitting the start button.
    I've just had a look at the capacitors that you suggested and they look perfect, like new in fact, they have a shiny metallic top with a + indented in the top and they are flat and they show no sign of a dried up liquid or any bubbling up anywhere.
    Anyway, your reply was helpful since you ruled out the Power Supply and the capacitors, so thank you for those.
    The friend who advised me how to get going again after the initial hard disk failure, ie, via the External Hard Drive connected by fire wire, did warn me not to touch anything in the back that wasn't directly related to changing the hard drive but thanks for the heads up anyway.
    Ann

Maybe you are looking for

  • Access Sequence for Purchase Orders

    Hi, When copying Access Sequence 0001 to my new Access Seq: ZPR1, I am hitting the below error. The field assignment has not yet been made Message no. VK 376 Diagnosis Field assignment has not yet been carried out. System Response When using this acc

  • ActiveDirectory mapping file, doesn't work for login

    The mapping file below works. Logged in as administrator, in the SAP NP administrator web tool, I can see and edit users in the datasource (Active Directory). However, when users in the AD try to login to the portal, they get "User authentication fai

  • Move 10.5 Server HD from one G5 to another?

    Wow, I can't believe I'm posting this, but let's pretend it's 2007 and roll with it. So, I have a legacy FileMaker Server (FileMaker Server v10) running on a dual 2.3Ghz Power Mac G5 with Leopard Server (10.5.8). Aside from FileMaker Server, the only

  • After Client update to 4.7.209.0, ScRegSetValueExW errors on 2008R2

    Hello, I am getting the following error "The ScRegSetValueExW call failed for FailureCommand with the following error: Access is denied." on all 2008r2 boxes that have the System Center Endpoint Protection client update 4.7.209.0. It doesn't seem to

  • Problems to install my new Illustrator CS6

    I bought a new Illustrator CS6 programm in a german shop. TRied to get serial number by internet to get the programm registrated and installed. After I entered by the code on www.adobe.com/go/getserial_de I only got a link for a Creative Cloud Set up