<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: WebLogic 11g start and stop automation</title>
	<atom:link href="http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weblogic-11g-start-and-stop-automation</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Narayana</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-7070</link>
		<dc:creator>Narayana</dc:creator>
		<pubDate>Tue, 13 Mar 2012 09:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-7070</guid>
		<description><![CDATA[Very useful blog. I too got almost similar script.

Look at my script. May be useful.

Note: The domain should have been enabled with NM including Admin Server.
Domain Start script: StartWlsDomains.py

import sys
import os
import time


def wlsDomainStart(userconfigFile,userkeyFile,adminUrl,nmHost,nmPort,DomainName,DomainDir):
    try:
    	print &#039; ##### Connecting to Nodemanager:: &#039;+ nmHost +&#039;:&#039;+ nmPort+&#039; ####&#039;
    	nmConnect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,host=nmHost,port=nmPort,domainName=DomainName,domainDir=DomainDir,nmType=&#039;ssl&#039;)
    	nmStatus=nm()
    	if (nmStatus == true):
    		serverStatus=nmServerStatus(&#039;AdminServer&#039;)
    		if (serverStatus == &#039;RUNNING&#039;):
    			print &#039; ##### The AdminServer is already running #####&#039;
    		elif (serverStatus == &#039;STARTING&#039;):
    			java.lang.Thread.sleep(20000)
    		else:
    			print &#039; ##### The AdminServer is not running. About to start now. Wait... #####&#039;
    			nmStart(&#039;AdminServer&#039;)
    			
    		serverStatus=nmServerStatus(&#039;AdminServer&#039;)
    		if (serverStatus == &#039;RUNNING&#039;):
    			#print &#039; ##### The AdminServer is up and running now #####&#039;
    			connect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,url=adminUrl)

    		domainConfig()
    		serverNames = cmo.getServers()
    		domainRuntime()
    		for name in serverNames:
    			try:
    				cd(&#039;/&#039;)
    				server=str(name.getName())
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)
    				serverStatus = slrBean.getState()
    				#print &#039;Server State is &#039;+ serverStatus
    				if (server != &#039;AdminServer&#039;):
    					if (serverStatus == &#039;RUNNING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is already running #####&#039;
    					elif (serverStatus == &#039;STARTING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state&#039;
    					else:
    						print &#039; ##### The &#039;+ server + &#039; is about to Start&#039;
    						start(server,&#039;Server&#039;, block=&#039;false&#039;)
    			except:
    				print &quot;Skipping &quot;+server
    				continue

    		print &#039;Please wait for 2 mins to re-check the state of the servers and give a restart if its not started properly in the above step&#039;
    		java.lang.Thread.sleep(200000)
    		
    		for name in serverNames:
    			try:
    				cd(&#039;/&#039;)
    				server=str(name.getName())
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)
    				serverStatus = slrBean.getState()
    				if (server != &#039;AdminServer&#039;):
    					if (serverStatus == &#039;RUNNING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is started properly #####&#039;
    					elif (serverStatus == &#039;STARTING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and Leaving it to come up&#039;
    					elif (serverStatus == &#039;ADMIN&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and about to resume&#039;
    						resume(server, block=&#039;false&#039;)
    					elif (serverStatus == &#039;RESUMING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and aLeaving it to come up&#039;
    					elif (serverStatus == &#039;SHUTDOWN&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and not properly started. Its about to restart&#039;
    						start(server,&#039;Server&#039;, block=&#039;false&#039;)
    					else:
    						print &#039; ##### The &#039;+ server + &#039; is not started properly and about to start again&#039;
    						shutdown(server,&#039;Server&#039;, force=&#039;true&#039;, block=&#039;true&#039;)
    						start(server,&#039;Server&#039;, block=&#039;false&#039;)
    			except:
    				print &quot;Skipping &quot;+server
    				continue
		disconnect() # Disconnect from AdminServer    				
    		nmDisconnect() # Disconnect from NM
    	else:
    		print &#039;  ##### Not Connecting to NodeManager. Please check whether its running at &#039;+ nmHost +&#039;:&#039;+ nmPort+&#039; #####&#039;
    	exit()
    except:
        print &quot;Unexpected error:&quot;, sys.exc_info()[0]
        raise

			

try:
    # Start Weblogic Server Through NM
    # arguments: userconfigfile userkeyfile adminUrl
    wlsDomainStart(sys.argv[1],sys.argv[2],sys.argv[3],sys.argv[4],sys.argv[5],sys.argv[6],sys.argv[7])

except:
    print &quot;Unexpected error: &quot;, sys.exc_info()[0]
    dumpStack()
    raise



Domain stop script: StopWlsDomains.py

import sys
import os
import time

def wlsDomainStop(userconfigFile,userkeyFile,adminUrl,nmHost,nmPort,DomainName,DomainDir):
    try:
    	print &#039; ##### Connecting to Nodemanager:: &#039;+ nmHost +&#039;:&#039;+ nmPort+&#039; ####&#039;
    	nmConnect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,host=nmHost,port=nmPort,domainName=DomainName,domainDir=DomainDir,nmType=&#039;ssl&#039;)
    	nmStatus=nm()
    	if (nmStatus == true):
    		serverStatus=nmServerStatus(&#039;AdminServer&#039;)
    		if (serverStatus == &#039;RUNNING&#039;):
    			print &#039; ##### The AdminServer is already running #####&#039;
    		elif (serverStatus == &#039;STARTING&#039;):
    			java.lang.Thread.sleep(20000)
    		else:
    			print &#039; ##### The AdminServer is not running. About to start now. Wait... #####&#039;
    			nmStart(&#039;AdminServer&#039;)
    			
    		serverStatus=nmServerStatus(&#039;AdminServer&#039;)
    		if (serverStatus == &#039;RUNNING&#039;):
    			#print &#039; ##### The AdminServer is up and running now #####&#039;
    			connect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,url=adminUrl)

    		domainConfig()
    		serverNames = cmo.getServers()
    		domainRuntime()
    		for name in serverNames:
    			try:
    				cd(&#039;/&#039;)
    				server=str(name.getName())
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)
    				serverStatus = slrBean.getState()
    				if (server != &#039;AdminServer&#039;):
    					if (serverStatus == &#039;RUNNING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is about to stop #####&#039;
    						shutdown(server,&#039;Server&#039;, force=&#039;true&#039;, block=&#039;true&#039;)
    					elif (serverStatus == &#039;STARTING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state. anf is about to stop now&#039;
    						shutdown(server,&#039;Server&#039;, force=&#039;true&#039;, block=&#039;true&#039;)
    					else:
    						print &#039; ##### The &#039;+ server + &#039; is not running and its state is &#039;+serverStatus
    			except:
    				print &quot;Skipping &quot;+server
    				continue
    		
    		print &#039; Please wait for 10 seconds to re-check the state of the servers and shutdown if its not shutdown properly above&#039;
    		java.lang.Thread.sleep(10000)
    		
    		for name in serverNames:
    			try:
    				cd(&#039;/&#039;)
    				server=str(name.getName())
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)
    				serverStatus = slrBean.getState()
    				if (server != &#039;AdminServer&#039;):
    					if (serverStatus == &#039;SHUTDOWN&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is stopped properly #####&#039;
    					elif (serverStatus == &#039;SHUTTING_DOWN&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and Leaving it to Shutdown&#039;
    					elif (serverStatus == &#039;FORCE_SUSPENDING&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and Leaving it to Shutdown&#039;
    					elif (serverStatus == &#039;FORCE_SHUTTING_DOWN&#039;):
    						print &#039; ##### The &#039;+ server + &#039; is in &#039;+serverStatus+&#039; state and Leaving it to Shutdown&#039;
    					else:
    						print &#039; ##### The &#039;+ server + &#039; is not stopped properly and about to shutdown again&#039;
    						#nmKill(server)
    						shutdown(server,&#039;Server&#039;, force=&#039;true&#039;, block=&#039;true&#039;)
    			except:
    				print &quot;Skipping &quot;+server
    				continue

		#print &#039; Stopping AdminServer of the domain&#039;
    		shutdown(&#039;AdminServer&#039;)
		disconnect() # Disconnect from AdminServer    		
    		nmDisconnect()
    	else:
    		print &#039;  ##### Not Connecting to NodeManager. Please check whether its running at &#039;+ nmHost +&#039;:&#039;+ nmPort+&#039; #####&#039;
    	exit()
    except:
        print &quot;Unexpected error:&quot;, sys.exc_info()[0]
        raise

			

try:
    # Start Weblogic Server Through NM
    # arguments: userconfigfile userkeyfile adminUrl
    wlsDomainStop(sys.argv[1],sys.argv[2],sys.argv[3],sys.argv[4],sys.argv[5],sys.argv[6],sys.argv[7])

except:
    print &quot;Unexpected error: &quot;, sys.exc_info()[0]
    dumpStack()
    raise


Cheers
Narayana]]></description>
		<content:encoded><![CDATA[<p>Very useful blog. I too got almost similar script.</p>
<p>Look at my script. May be useful.</p>
<p>Note: The domain should have been enabled with NM including Admin Server.<br />
Domain Start script: StartWlsDomains.py</p>
<p>import sys<br />
import os<br />
import time</p>
<p>def wlsDomainStart(userconfigFile,userkeyFile,adminUrl,nmHost,nmPort,DomainName,DomainDir):<br />
    try:<br />
    	print &#8216; ##### Connecting to Nodemanager:: &#8216;+ nmHost +&#8217;:'+ nmPort+&#8217; ####&#8217;<br />
    	nmConnect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,host=nmHost,port=nmPort,domainName=DomainName,domainDir=DomainDir,nmType=&#8217;ssl&#8217;)<br />
    	nmStatus=nm()<br />
    	if (nmStatus == true):<br />
    		serverStatus=nmServerStatus(&#8216;AdminServer&#8217;)<br />
    		if (serverStatus == &#8216;RUNNING&#8217;):<br />
    			print &#8216; ##### The AdminServer is already running #####&#8217;<br />
    		elif (serverStatus == &#8216;STARTING&#8217;):<br />
    			java.lang.Thread.sleep(20000)<br />
    		else:<br />
    			print &#8216; ##### The AdminServer is not running. About to start now. Wait&#8230; #####&#8217;<br />
    			nmStart(&#8216;AdminServer&#8217;)</p>
<p>    		serverStatus=nmServerStatus(&#8216;AdminServer&#8217;)<br />
    		if (serverStatus == &#8216;RUNNING&#8217;):<br />
    			#print &#8216; ##### The AdminServer is up and running now #####&#8217;<br />
    			connect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,url=adminUrl)</p>
<p>    		domainConfig()<br />
    		serverNames = cmo.getServers()<br />
    		domainRuntime()<br />
    		for name in serverNames:<br />
    			try:<br />
    				cd(&#8216;/&#8217;)<br />
    				server=str(name.getName())<br />
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)<br />
    				serverStatus = slrBean.getState()<br />
    				#print &#8216;Server State is &#8216;+ serverStatus<br />
    				if (server != &#8216;AdminServer&#8217;):<br />
    					if (serverStatus == &#8216;RUNNING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is already running #####&#8217;<br />
    					elif (serverStatus == &#8216;STARTING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state&#8217;<br />
    					else:<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is about to Start&#8217;<br />
    						start(server,&#8217;Server&#8217;, block=&#8217;false&#8217;)<br />
    			except:<br />
    				print &#8220;Skipping &#8220;+server<br />
    				continue</p>
<p>    		print &#8216;Please wait for 2 mins to re-check the state of the servers and give a restart if its not started properly in the above step&#8217;<br />
    		java.lang.Thread.sleep(200000)</p>
<p>    		for name in serverNames:<br />
    			try:<br />
    				cd(&#8216;/&#8217;)<br />
    				server=str(name.getName())<br />
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)<br />
    				serverStatus = slrBean.getState()<br />
    				if (server != &#8216;AdminServer&#8217;):<br />
    					if (serverStatus == &#8216;RUNNING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is started properly #####&#8217;<br />
    					elif (serverStatus == &#8216;STARTING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and Leaving it to come up&#8217;<br />
    					elif (serverStatus == &#8216;ADMIN&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and about to resume&#8217;<br />
    						resume(server, block=&#8217;false&#8217;)<br />
    					elif (serverStatus == &#8216;RESUMING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and aLeaving it to come up&#8217;<br />
    					elif (serverStatus == &#8216;SHUTDOWN&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and not properly started. Its about to restart&#8217;<br />
    						start(server,&#8217;Server&#8217;, block=&#8217;false&#8217;)<br />
    					else:<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is not started properly and about to start again&#8217;<br />
    						shutdown(server,&#8217;Server&#8217;, force=&#8217;true&#8217;, block=&#8217;true&#8217;)<br />
    						start(server,&#8217;Server&#8217;, block=&#8217;false&#8217;)<br />
    			except:<br />
    				print &#8220;Skipping &#8220;+server<br />
    				continue<br />
		disconnect() # Disconnect from AdminServer<br />
    		nmDisconnect() # Disconnect from NM<br />
    	else:<br />
    		print &#8216;  ##### Not Connecting to NodeManager. Please check whether its running at &#8216;+ nmHost +&#8217;:'+ nmPort+&#8217; #####&#8217;<br />
    	exit()<br />
    except:<br />
        print &#8220;Unexpected error:&#8221;, sys.exc_info()[0]<br />
        raise</p>
<p>try:<br />
    # Start Weblogic Server Through NM<br />
    # arguments: userconfigfile userkeyfile adminUrl<br />
    wlsDomainStart(sys.argv[1],sys.argv[2],sys.argv[3],sys.argv[4],sys.argv[5],sys.argv[6],sys.argv[7])</p>
<p>except:<br />
    print &#8220;Unexpected error: &#8220;, sys.exc_info()[0]<br />
    dumpStack()<br />
    raise</p>
<p>Domain stop script: StopWlsDomains.py</p>
<p>import sys<br />
import os<br />
import time</p>
<p>def wlsDomainStop(userconfigFile,userkeyFile,adminUrl,nmHost,nmPort,DomainName,DomainDir):<br />
    try:<br />
    	print &#8216; ##### Connecting to Nodemanager:: &#8216;+ nmHost +&#8217;:'+ nmPort+&#8217; ####&#8217;<br />
    	nmConnect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,host=nmHost,port=nmPort,domainName=DomainName,domainDir=DomainDir,nmType=&#8217;ssl&#8217;)<br />
    	nmStatus=nm()<br />
    	if (nmStatus == true):<br />
    		serverStatus=nmServerStatus(&#8216;AdminServer&#8217;)<br />
    		if (serverStatus == &#8216;RUNNING&#8217;):<br />
    			print &#8216; ##### The AdminServer is already running #####&#8217;<br />
    		elif (serverStatus == &#8216;STARTING&#8217;):<br />
    			java.lang.Thread.sleep(20000)<br />
    		else:<br />
    			print &#8216; ##### The AdminServer is not running. About to start now. Wait&#8230; #####&#8217;<br />
    			nmStart(&#8216;AdminServer&#8217;)</p>
<p>    		serverStatus=nmServerStatus(&#8216;AdminServer&#8217;)<br />
    		if (serverStatus == &#8216;RUNNING&#8217;):<br />
    			#print &#8216; ##### The AdminServer is up and running now #####&#8217;<br />
    			connect(userConfigFile=userconfigFile,userKeyFile=userkeyFile,url=adminUrl)</p>
<p>    		domainConfig()<br />
    		serverNames = cmo.getServers()<br />
    		domainRuntime()<br />
    		for name in serverNames:<br />
    			try:<br />
    				cd(&#8216;/&#8217;)<br />
    				server=str(name.getName())<br />
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)<br />
    				serverStatus = slrBean.getState()<br />
    				if (server != &#8216;AdminServer&#8217;):<br />
    					if (serverStatus == &#8216;RUNNING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is about to stop #####&#8217;<br />
    						shutdown(server,&#8217;Server&#8217;, force=&#8217;true&#8217;, block=&#8217;true&#8217;)<br />
    					elif (serverStatus == &#8216;STARTING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state. anf is about to stop now&#8217;<br />
    						shutdown(server,&#8217;Server&#8217;, force=&#8217;true&#8217;, block=&#8217;true&#8217;)<br />
    					else:<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is not running and its state is &#8216;+serverStatus<br />
    			except:<br />
    				print &#8220;Skipping &#8220;+server<br />
    				continue</p>
<p>    		print &#8216; Please wait for 10 seconds to re-check the state of the servers and shutdown if its not shutdown properly above&#8217;<br />
    		java.lang.Thread.sleep(10000)</p>
<p>    		for name in serverNames:<br />
    			try:<br />
    				cd(&#8216;/&#8217;)<br />
    				server=str(name.getName())<br />
    				slrBean = cmo.lookupServerLifeCycleRuntime(server)<br />
    				serverStatus = slrBean.getState()<br />
    				if (server != &#8216;AdminServer&#8217;):<br />
    					if (serverStatus == &#8216;SHUTDOWN&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is stopped properly #####&#8217;<br />
    					elif (serverStatus == &#8216;SHUTTING_DOWN&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and Leaving it to Shutdown&#8217;<br />
    					elif (serverStatus == &#8216;FORCE_SUSPENDING&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and Leaving it to Shutdown&#8217;<br />
    					elif (serverStatus == &#8216;FORCE_SHUTTING_DOWN&#8217;):<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is in &#8216;+serverStatus+&#8217; state and Leaving it to Shutdown&#8217;<br />
    					else:<br />
    						print &#8216; ##### The &#8216;+ server + &#8216; is not stopped properly and about to shutdown again&#8217;<br />
    						#nmKill(server)<br />
    						shutdown(server,&#8217;Server&#8217;, force=&#8217;true&#8217;, block=&#8217;true&#8217;)<br />
    			except:<br />
    				print &#8220;Skipping &#8220;+server<br />
    				continue</p>
<p>		#print &#8216; Stopping AdminServer of the domain&#8217;<br />
    		shutdown(&#8216;AdminServer&#8217;)<br />
		disconnect() # Disconnect from AdminServer<br />
    		nmDisconnect()<br />
    	else:<br />
    		print &#8216;  ##### Not Connecting to NodeManager. Please check whether its running at &#8216;+ nmHost +&#8217;:'+ nmPort+&#8217; #####&#8217;<br />
    	exit()<br />
    except:<br />
        print &#8220;Unexpected error:&#8221;, sys.exc_info()[0]<br />
        raise</p>
<p>try:<br />
    # Start Weblogic Server Through NM<br />
    # arguments: userconfigfile userkeyfile adminUrl<br />
    wlsDomainStop(sys.argv[1],sys.argv[2],sys.argv[3],sys.argv[4],sys.argv[5],sys.argv[6],sys.argv[7])</p>
<p>except:<br />
    print &#8220;Unexpected error: &#8220;, sys.exc_info()[0]<br />
    dumpStack()<br />
    raise</p>
<p>Cheers<br />
Narayana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel Schildmeijer</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6883</link>
		<dc:creator>Michel Schildmeijer</dc:creator>
		<pubDate>Sat, 04 Feb 2012 10:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6883</guid>
		<description><![CDATA[#4
I will provide it soon to you]]></description>
		<content:encoded><![CDATA[<p>#4<br />
I will provide it soon to you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel Schildmeijer</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6882</link>
		<dc:creator>Michel Schildmeijer</dc:creator>
		<pubDate>Sat, 04 Feb 2012 10:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6882</guid>
		<description><![CDATA[#9 see comment #4
pwd should be the current diryou also could make a variable like:scriptdir=&lt;path to your scripts&gt;]]></description>
		<content:encoded><![CDATA[<p>#9 see comment #4<br />
pwd should be the current diryou also could make a variable like:scriptdir=&lt;path to your scripts&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TechUpdates</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6881</link>
		<dc:creator>TechUpdates</dc:creator>
		<pubDate>Thu, 02 Feb 2012 12:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6881</guid>
		<description><![CDATA[Should pwd be the home directory?]]></description>
		<content:encoded><![CDATA[<p>Should pwd be the home directory?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helen</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6880</link>
		<dc:creator>Helen</dc:creator>
		<pubDate>Mon, 30 Jan 2012 18:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6880</guid>
		<description><![CDATA[Can you share the code for chkwlsrvr]]></description>
		<content:encoded><![CDATA[<p>Can you share the code for chkwlsrvr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: balu</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6879</link>
		<dc:creator>balu</dc:creator>
		<pubDate>Wed, 11 Jan 2012 23:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6879</guid>
		<description><![CDATA[Hi i shutdowned managed1, managed2 and normal shutdown of Weblogic 8.1 version, but now i can&#039;t able to login in to server. pls help me how to start server
Â ]]></description>
		<content:encoded><![CDATA[<p>Hi i shutdowned managed1, managed2 and normal shutdown of Weblogic 8.1 version, but now i can&#8217;t able to login in to server. pls help me how to start server<br />
Â </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel Schildmeijer</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6878</link>
		<dc:creator>Michel Schildmeijer</dc:creator>
		<pubDate>Sun, 30 Oct 2011 13:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6878</guid>
		<description><![CDATA[Ismail
Why does one want to workaround the nmConnect?
Furthermore you do a count Â on all the network interfaces; this not a quite the way to detect if a nodemanager is running or not]]></description>
		<content:encoded><![CDATA[<p>Ismail<br />
Why does one want to workaround the nmConnect?<br />
Furthermore you do a count Â on all the network interfaces; this not a quite the way to detect if a nodemanager is running or not</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ismail Lalji</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6877</link>
		<dc:creator>Ismail Lalji</dc:creator>
		<pubDate>Thu, 27 Oct 2011 03:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6877</guid>
		<description><![CDATA[One can &quot;work around&quot; the initial nmConnect Â by using:
if [[ `ifconfig -a &#124;grep $localhost &#124;wc -l ` -eq 0 ]]; then
 echo Node Manager not running
 exit 1
 fi
Alternately substitute the:
java weblogic.WLST $PWD/nodemgrstart
in lieu of the exit 1 - depends on what you want to do.]]></description>
		<content:encoded><![CDATA[<p>One can &#8220;work around&#8221; the initial nmConnect Â by using:<br />
if [[ `ifconfig -a |grep $localhost |wc -l ` -eq 0 ]]; then<br />
 echo Node Manager not running<br />
 exit 1<br />
 fi<br />
Alternately substitute the:<br />
java weblogic.WLST $PWD/nodemgrstart<br />
in lieu of the exit 1 &#8211; depends on what you want to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel Schildmeijer</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6876</link>
		<dc:creator>Michel Schildmeijer</dc:creator>
		<pubDate>Wed, 19 Oct 2011 13:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6876</guid>
		<description><![CDATA[pwd should be the current dir
you also could make a variable like:
scriptdir=&lt;path to your scripts&gt;
Â 
Â ]]></description>
		<content:encoded><![CDATA[<p>pwd should be the current dir<br />
you also could make a variable like:<br />
scriptdir=&lt;path to your scripts&gt;<br />
Â <br />
Â </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loukas</title>
		<link>http://technology.amis.nl/2011/09/27/weblogic-11g-start-and-stop-automation/#comment-6875</link>
		<dc:creator>Loukas</dc:creator>
		<pubDate>Thu, 13 Oct 2011 12:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13423#comment-6875</guid>
		<description><![CDATA[Sorry Michel..forget my comment about the passwd...I have got Â the hint from a colleague to encrypt it. Many thanks in any case.
Loukas]]></description>
		<content:encoded><![CDATA[<p>Sorry Michel..forget my comment about the passwd&#8230;I have got Â the hint from a colleague to encrypt it. Many thanks in any case.<br />
Loukas</p>
]]></content:encoded>
	</item>
</channel>
</rss>
