<?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 for Weblogic Server</title>
	<atom:link href="http://www.weblogic-tips.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weblogic-tips.com</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 23:16:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
	<item>
		<title>Comment on How to resolve : Authentication denied: Boot identity not valid by weblogictips</title>
		<link>http://www.weblogic-tips.com/2010/05/12/20100512how-to-resolve-authentication-denied-boot-identity-not-valid/#comment-876</link>
		<dc:creator>weblogictips</dc:creator>
		<pubDate>Tue, 18 Jun 2013 23:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://weblogictips.wordpress.com/?p=117#comment-876</guid>
		<description><![CDATA[Hi Mohtashim,

Please let me know : 
if the issue with the Admin Server or Managed Server ?
Are you starting the server through StartScript , or WLST or Admin Console .

If the server is started through the start script and removing the ldap dir and boot.properties does not resolve the issue then 
you may have to reset the Admin Password . 
you can follow the below link :  
http://shivabizint.wordpress.com/2012/10/15/how-to-reset-the-lost-weblogic-admin-user-password/

But before that you should make sure that the authentication provider for the domain is default authentication provider and not the external authentication provider .

If the authentication provider is external then you may need to reset the password from external ldap .
Also move the ldap dir and boot.properties files if locally present .

Only difference in case the server is started through the Admin Console / WLST is that you have to move the nodemanager dir also present is the 
doamin_home/servers/ms1/data/nodemanager 

thanks,
sandeep]]></description>
		<content:encoded><![CDATA[<p>Hi Mohtashim,</p>
<p>Please let me know :<br />
if the issue with the Admin Server or Managed Server ?<br />
Are you starting the server through StartScript , or WLST or Admin Console .</p>
<p>If the server is started through the start script and removing the ldap dir and boot.properties does not resolve the issue then<br />
you may have to reset the Admin Password .<br />
you can follow the below link :<br />
<a href="http://shivabizint.wordpress.com/2012/10/15/how-to-reset-the-lost-weblogic-admin-user-password/" rel="nofollow">http://shivabizint.wordpress.com/2012/10/15/how-to-reset-the-lost-weblogic-admin-user-password/</a></p>
<p>But before that you should make sure that the authentication provider for the domain is default authentication provider and not the external authentication provider .</p>
<p>If the authentication provider is external then you may need to reset the password from external ldap .<br />
Also move the ldap dir and boot.properties files if locally present .</p>
<p>Only difference in case the server is started through the Admin Console / WLST is that you have to move the nodemanager dir also present is the<br />
doamin_home/servers/ms1/data/nodemanager </p>
<p>thanks,<br />
sandeep</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to resolve : Authentication denied: Boot identity not valid by Mohtashim</title>
		<link>http://www.weblogic-tips.com/2010/05/12/20100512how-to-resolve-authentication-denied-boot-identity-not-valid/#comment-874</link>
		<dc:creator>Mohtashim</dc:creator>
		<pubDate>Tue, 18 Jun 2013 12:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://weblogictips.wordpress.com/?p=117#comment-874</guid>
		<description><![CDATA[We are getting this weird exception and your suggestion do not help. 

Kindly suggest ...

    
    
    
    &lt;A&gt;
    ]]></description>
		<content:encoded><![CDATA[<p>We are getting this weird exception and your suggestion do not help. </p>
<p>Kindly suggest &#8230;</p>
<p>    <a><br />
    </a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change default JAVA of linux to lastet version by Doug P.</title>
		<link>http://www.weblogic-tips.com/2011/07/31/how-to-change-default-java-of-linux-to-lastet-version/#comment-860</link>
		<dc:creator>Doug P.</dc:creator>
		<pubDate>Thu, 16 May 2013 23:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://weblogictips.wordpress.com/?p=142#comment-860</guid>
		<description><![CDATA[Very nicely done, I did edit what you posted and saved it in a txt file if I ever need it again. Here&#039;s what I have (newbie version).

# if the below directory doesn&#039;t exist, execute command below
mkdir ~/.mozilla/plugins

# firefox plugin folder *FOR ALL USERS*: /usr/lib/mozilla/plugins

# Download the latest (&quot;Oracle&quot;, preferably) Java JRE .tar.gz file.
# *NOTE*: Replace ALL &quot;X&quot; with the most current Java version you download.
# Move &quot;jre-XuXX-linux-x64.tar.gz&quot; to &quot;/usr/lib/jvm&quot;.
cd /usr/lib/jvm
tar -xf jre-XuXX-linux-x64.tar.gz

# only run below command if you don&#039;t have a &quot;javaX.X&quot; file in &quot;/usr/bin&quot;
sudo mkdir /usr/bin/javaX.X

sudo mv /usr/bin/java /usr/bin/javaX.X
sudo mv /usr/bin/javaws /usr/bin/javaX.X
sudo ln -s /usr/lib/jvm/jreX.X.X/bin/java /usr/bin/java
sudo ln -s /usr/lib/jvm/jreX.X.X/bin/javaws /usr/bin/javaws

# Now, check if you did everything correctly by inputting commands below.
cd /usr/bin
ls -l &#124;grep ja
java -version

#To upgrade to new version of Java, repeat the same steps.]]></description>
		<content:encoded><![CDATA[<p>Very nicely done, I did edit what you posted and saved it in a txt file if I ever need it again. Here&#8217;s what I have (newbie version).</p>
<p># if the below directory doesn&#8217;t exist, execute command below<br />
mkdir ~/.mozilla/plugins</p>
<p># firefox plugin folder *FOR ALL USERS*: /usr/lib/mozilla/plugins</p>
<p># Download the latest (&#8220;Oracle&#8221;, preferably) Java JRE .tar.gz file.<br />
# *NOTE*: Replace ALL &#8220;X&#8221; with the most current Java version you download.<br />
# Move &#8220;jre-XuXX-linux-x64.tar.gz&#8221; to &#8220;/usr/lib/jvm&#8221;.<br />
cd /usr/lib/jvm<br />
tar -xf jre-XuXX-linux-x64.tar.gz</p>
<p># only run below command if you don&#8217;t have a &#8220;javaX.X&#8221; file in &#8220;/usr/bin&#8221;<br />
sudo mkdir /usr/bin/javaX.X</p>
<p>sudo mv /usr/bin/java /usr/bin/javaX.X<br />
sudo mv /usr/bin/javaws /usr/bin/javaX.X<br />
sudo ln -s /usr/lib/jvm/jreX.X.X/bin/java /usr/bin/java<br />
sudo ln -s /usr/lib/jvm/jreX.X.X/bin/javaws /usr/bin/javaws</p>
<p># Now, check if you did everything correctly by inputting commands below.<br />
cd /usr/bin<br />
ls -l |grep ja<br />
java -version</p>
<p>#To upgrade to new version of Java, repeat the same steps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploy application on weblogic server by Weblogic: starting and stopping servers</title>
		<link>http://www.weblogic-tips.com/2012/01/25/deploy-application-on-weblogic-server/#comment-857</link>
		<dc:creator>Weblogic: starting and stopping servers</dc:creator>
		<pubDate>Tue, 14 May 2013 12:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=581#comment-857</guid>
		<description><![CDATA[[...] Hi jags,  http://docs.oracle.com/cd/E15523_01/...8/overview.htm http://help.adobe.com/en_US/enterpri...07e7-7c8f.html http://www.jinfonet.com/kbase/server...dply_wblgc.htm http://www.weblogic-tips.com/2012/01...blogic-server/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Hi jags,  <a href="http://docs.oracle.com/cd/E15523_01/" rel="nofollow">http://docs.oracle.com/cd/E15523_01/</a>&#8230;8/overview.htm <a href="http://help.adobe.com/en_US/enterpri" rel="nofollow">http://help.adobe.com/en_US/enterpri</a>&#8230;07e7-7c8f.html <a href="http://www.jinfonet.com/kbase/server" rel="nofollow">http://www.jinfonet.com/kbase/server</a>&#8230;dply_wblgc.htm <a href="http://www.weblogic-tips.com/2012/01" rel="nofollow">http://www.weblogic-tips.com/2012/01</a>&#8230;blogic-server/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting the Administration Server Using Node Manager and WLST by weblogictips</title>
		<link>http://www.weblogic-tips.com/2012/02/17/starting-the-administration-server-using-node-manager-and-wlst-2/#comment-856</link>
		<dc:creator>weblogictips</dc:creator>
		<pubDate>Mon, 13 May 2013 11:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=684#comment-856</guid>
		<description><![CDATA[Hi Venkat,

This seems to be an issue with the classpath . 
Can you check the classpath variable of the prompt from where you are executing command : nmStrart(&#039;AdminServer&#039;)
The issue seems to be with the &quot;c:/program files &quot; dir placed in the either classpath or path variable.
As there is a space between the file name , the issue is there .

Try to use double quotes (&quot;) . 

please paste the values of the variables : CLASSPATH and PATH of the command prompt from where you are executing the nmStart() .

Thanks,
Sandeep]]></description>
		<content:encoded><![CDATA[<p>Hi Venkat,</p>
<p>This seems to be an issue with the classpath .<br />
Can you check the classpath variable of the prompt from where you are executing command : nmStrart(&#8216;AdminServer&#8217;)<br />
The issue seems to be with the &#8220;c:/program files &#8221; dir placed in the either classpath or path variable.<br />
As there is a space between the file name , the issue is there .</p>
<p>Try to use double quotes (&#8220;) . </p>
<p>please paste the values of the variables : CLASSPATH and PATH of the command prompt from where you are executing the nmStart() .</p>
<p>Thanks,<br />
Sandeep</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting the Administration Server Using Node Manager and WLST by Mr Rao</title>
		<link>http://www.weblogic-tips.com/2012/02/17/starting-the-administration-server-using-node-manager-and-wlst-2/#comment-855</link>
		<dc:creator>Mr Rao</dc:creator>
		<pubDate>Mon, 13 May 2013 09:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=684#comment-855</guid>
		<description><![CDATA[nmStart(‘AdminServer’)..is giving error in command prompt like this:
Error Starting server AdminServer: weblogic.nodemanager.NMException: Exception while starting server &#039;AdminServer&#039;.

if we view the adminServer.out it is showing like this:
   
java.lang.NoClassDefFoundError: Files\Java\jdk1/6/0_33\jre\bin;C:\Program
Caused by: java.lang.ClassNotFoundException: Files\Java\jdk1.6.0_33\jre\bin;C:\Program
	at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
Could not find the main class: Files\Java\jdk1.6.0_33\jre\bin;C:\Program.  Program will exit.
Exception in thread &quot;main&quot; 
   
   
   ]]></description>
		<content:encoded><![CDATA[<p>nmStart(‘AdminServer’)..is giving error in command prompt like this:<br />
Error Starting server AdminServer: weblogic.nodemanager.NMException: Exception while starting server &#8216;AdminServer&#8217;.</p>
<p>if we view the adminServer.out it is showing like this:</p>
<p>java.lang.NoClassDefFoundError: Files\Java\jdk1/6/0_33\jre\bin;C:\Program<br />
Caused by: java.lang.ClassNotFoundException: Files\Java\jdk1.6.0_33\jre\bin;C:\Program<br />
	at java.net.URLClassLoader$1.run(URLClassLoader.java:202)<br />
	at java.security.AccessController.doPrivileged(Native Method)<br />
	at java.net.URLClassLoader.findClass(URLClassLoader.java:190)<br />
	at java.lang.ClassLoader.loadClass(ClassLoader.java:306)<br />
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)<br />
	at java.lang.ClassLoader.loadClass(ClassLoader.java:247)<br />
Could not find the main class: Files\Java\jdk1.6.0_33\jre\bin;C:\Program.  Program will exit.<br />
Exception in thread &#8220;main&#8221; </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Issue with NodeManager and Weblogic Server by weblogictips</title>
		<link>http://www.weblogic-tips.com/2012/01/30/issue-with-nodemanager-and-weblogic-server/#comment-850</link>
		<dc:creator>weblogictips</dc:creator>
		<pubDate>Mon, 22 Apr 2013 07:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=622#comment-850</guid>
		<description><![CDATA[Hi Nadir,

can you share the error message while node manager is trying to start the Managed Server in such secnarios.
As per my understanding there will be a lck file getting creating in : servers/MS1/tmp/MS1.lck which is preventing the server startup.
so try to add a command : rm -rf servers/MS1/tmp/MS1.lck in your script and then node manager should be able to start the Managed Server .

In any case please share the error logs for better understanding of the issue .

Thanks,
Sandeep]]></description>
		<content:encoded><![CDATA[<p>Hi Nadir,</p>
<p>can you share the error message while node manager is trying to start the Managed Server in such secnarios.<br />
As per my understanding there will be a lck file getting creating in : servers/MS1/tmp/MS1.lck which is preventing the server startup.<br />
so try to add a command : rm -rf servers/MS1/tmp/MS1.lck in your script and then node manager should be able to start the Managed Server .</p>
<p>In any case please share the error logs for better understanding of the issue .</p>
<p>Thanks,<br />
Sandeep</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Issue with NodeManager and Weblogic Server by Milan</title>
		<link>http://www.weblogic-tips.com/2012/01/30/issue-with-nodemanager-and-weblogic-server/#comment-849</link>
		<dc:creator>Milan</dc:creator>
		<pubDate>Mon, 22 Apr 2013 06:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=622#comment-849</guid>
		<description><![CDATA[Hi,
I got the issue  java.io.IOException: Invalid State File Format which was resolved easily by following the simple steps mentioned...

Thanks a ton for saving my day :)

God Bless U.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I got the issue  java.io.IOException: Invalid State File Format which was resolved easily by following the simple steps mentioned&#8230;</p>
<p>Thanks a ton for saving my day :)</p>
<p>God Bless U.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting the Administration Server Using Node Manager and WLST by weblogictips</title>
		<link>http://www.weblogic-tips.com/2012/02/17/starting-the-administration-server-using-node-manager-and-wlst-2/#comment-848</link>
		<dc:creator>weblogictips</dc:creator>
		<pubDate>Sat, 20 Apr 2013 00:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=684#comment-848</guid>
		<description><![CDATA[try using full connect command : connect(&#039;weblogic&#039;,&#039;weblogic&#039;,&#039;t3://localhost:8001&#039;)]]></description>
		<content:encoded><![CDATA[<p>try using full connect command : connect(&#8216;weblogic&#8217;,'weblogic&#8217;,'t3://localhost:8001&#8242;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Issue with NodeManager and Weblogic Server by nadir</title>
		<link>http://www.weblogic-tips.com/2012/01/30/issue-with-nodemanager-and-weblogic-server/#comment-847</link>
		<dc:creator>nadir</dc:creator>
		<pubDate>Wed, 17 Apr 2013 01:50:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblogic-tips.com/?p=622#comment-847</guid>
		<description><![CDATA[I am using a shared domain`s directory to be able to failover the administration server from one node to another. I also configured node manager to restart all servers after crash or reboot. The Problem is that when I abruptely reboot the admin server node, sometimes lock files of managed servers strangely disappear and then managed servers are not automatically restarted by NM. I have no problem with admin server. Thanks for help.]]></description>
		<content:encoded><![CDATA[<p>I am using a shared domain`s directory to be able to failover the administration server from one node to another. I also configured node manager to restart all servers after crash or reboot. The Problem is that when I abruptely reboot the admin server node, sometimes lock files of managed servers strangely disappear and then managed servers are not automatically restarted by NM. I have no problem with admin server. Thanks for help.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
