<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>TechieNote</title>
	
	<link>http://www.techienote.com</link>
	<description />
	<lastBuildDate>Mon, 20 Feb 2012 05:26:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Techienote" /><feedburner:info uri="techienote" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Techienote</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Different ways to take thread dumps in WebLogic Server</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/1uBHLNpbgv0/different-ways-to-take-thread-dumps-in-weblogic-server.html</link>
		<comments>http://www.techienote.com/2012/02/different-ways-to-take-thread-dumps-in-weblogic-server.html#comments</comments>
		<pubDate>Mon, 20 Feb 2012 05:26:39 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Weblogic]]></category>
		<category><![CDATA[analyse]]></category>
		<category><![CDATA[analyze]]></category>
		<category><![CDATA[application server]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[kill -3]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[master note]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[microsoft windows]]></category>
		<category><![CDATA[POSIX]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[taking thread dump using beasvc]]></category>
		<category><![CDATA[thread dump]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[weblogic]]></category>
		<category><![CDATA[WLST]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=3039</guid>
		<description><![CDATA[We can find out the reason behind application slowness by analyzing the Thread Dump in Java world. Thread dumps are also very useful to analyze and troubleshoot performance related issues such as server hang, deadlocks, slow running, idle or stuck applications, slow database interactions etc. The thread dump is a snapshot of exactly what&#8217;s executing [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We can find out the reason behind application slowness by analyzing the Thread Dump in Java world. Thread dumps are also very useful to analyze and troubleshoot performance related issues such as server hang, deadlocks, slow running, idle or stuck applications, slow database interactions etc.</p>
<p>The thread dump is a snapshot of exactly what&#8217;s executing at a moment in time.<span id="more-3039"></span></p>
<p>Following are various method we can try to collect the thread dump in weblogic</p>
<p>WebLogic Server (WLS) and Java offer several ways to generate thread dumps, which are listed below in order of preference. It is always better to obtain the thread dumps by using operating system (OS) commands rather than by using Java classes or the Administration Console, because if the console is hanging, users won&#8217;t be able to connect to it to issue thread dumps.</p>
<p><strong>Method 1</strong>. Use operating system commands to get the thread dumps when WLS starts up from a command-line script:<br />
On Windows OS, thread dumps can be created by</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ctrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>+<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;break<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> in console -- the thread dumps are generated in the server stdout</pre></div></div>

<p>On POSIX-compliant platforms (e.g. Solaris and Linux), first identify the process ID (pid) using</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ps</span> <span style="color: #660033;">-ef</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> java</pre></div></div>

<p>then run</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #660033;">-3</span> <span style="color: #000000; font-weight: bold;">&lt;</span>pid<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span></pre></div></div>

<p>Signal 3 is equivalent to SIGQUIT. Note that in Solaris, the thread dump is generated in the current shell, but in Linux, the thread dump is generated in the shell which started the java process specified by the pid.</p>
<p><strong>Method 2.</strong> Using beasvc:</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">beasvc -dump -svcname:<span style="color: #33cc33;">&lt;</span>service_name<span style="color: #33cc33;">&gt;</span> -log:<span style="color: #33cc33;">&lt;</span>td_pathname<span style="color: #33cc33;">&gt;</span></pre></div></div>

<p>service_name is the Windows service that is running the server instance (e.g.mydomain_myserver)<br />
td_pathname is the full path and the name of the file in which the thread dump will be generated into</p>
<p><strong>Method 3.</strong> Using weblogic.WLST:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">java weblogic.<span style="color: #006633;">WLST</span>
connect<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;username&gt;&quot;</span>,<span style="color: #0000ff;">&quot;&lt;password&gt;&quot;</span>,<span style="color: #0000ff;">&quot;t3://&lt;url&gt;:&lt;port&gt;&quot;</span><span style="color: #009900;">&#41;</span>
threadDump<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>The thread dump will be generated in Thread_Dump_AdminServer.txt.</p>
<p><strong>Method 4.</strong> From a command line or shell, a thread dump can be generated via the following command (deprecated from WLS 9.0):</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">java weblogic.<span style="color: #006633;">Admin</span> <span style="color: #339933;">&lt;</span>url<span style="color: #339933;">&gt;:&lt;</span>port<span style="color: #339933;">&gt;</span> <span style="color: #339933;">-</span>username <span style="color: #339933;">&lt;</span>username<span style="color: #339933;">&gt;</span> <span style="color: #339933;">-</span>password <span style="color: #339933;">&lt;</span>password<span style="color: #339933;">&gt;</span> THREAD_DUMP</pre></div></div>

<p>The thread dump will be generated in the defined server stdout.</p>
<p><strong>Method 5.</strong> From the WLS Administration Console, a thread dump can be created by navigating to<br />
<strong>Server -> <server_name> -> Monitoring -> Dump threads stack</strong>.<br />
This method could lead to truncated or incomplete thread dumps.</p>
<p><strong>Method 6.</strong> From the JRockit command line:</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">jrcmd <span style="color: #33cc33;">&lt;</span>pid<span style="color: #33cc33;">&gt;</span> print_threads</pre></div></div>

<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/06/how-to-install-weblogic-on-ubuntu.html" title="Permanent link to How to Install Weblogic on Ubuntu">How to Install Weblogic on Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2011/07/resetting-lost-password-of-admin-server-in-weblogic.html" title="Permanent link to Resetting lost password of Admin server in Weblogic">Resetting lost password of Admin server in Weblogic</a>  </li>
<li> <a href="http://www.techienote.com/2011/06/start-weblogic-in-production-mode-without-user-name-password.html" title="Permanent link to Start Weblogic in Production mode without user name &#038; password">Start Weblogic in Production mode without user name &#038; password</a>  </li>
<li> <a href="http://www.techienote.com/2011/07/self-signed-certificate-weblogic.html" title="Permanent link to Self Signed Certificate Weblogic">Self Signed Certificate Weblogic</a>  </li>
<li> <a href="http://www.techienote.com/2012/02/weak-ciphers-in-weblogic-application-server.html" title="Permanent link to Weak Ciphers in Weblogic Application Server">Weak Ciphers in Weblogic Application Server</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=1uBHLNpbgv0:dCu82MqoEOA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=1uBHLNpbgv0:dCu82MqoEOA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=1uBHLNpbgv0:dCu82MqoEOA:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=1uBHLNpbgv0:dCu82MqoEOA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=1uBHLNpbgv0:dCu82MqoEOA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/1uBHLNpbgv0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/02/different-ways-to-take-thread-dumps-in-weblogic-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/02/different-ways-to-take-thread-dumps-in-weblogic-server.html</feedburner:origLink></item>
		<item>
		<title>Weak Ciphers in Weblogic Application Server</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/CpQL1FDQCJ0/weak-ciphers-in-weblogic-application-server.html</link>
		<comments>http://www.techienote.com/2012/02/weak-ciphers-in-weblogic-application-server.html#comments</comments>
		<pubDate>Wed, 15 Feb 2012 05:07:00 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Weblogic]]></category>
		<category><![CDATA[application server]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[disabling weak ciphers]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[false positive]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[How to Restrict Key Size Larger that 128 bit on Weblogic Server]]></category>
		<category><![CDATA[security audit]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[SSL configurations]]></category>
		<category><![CDATA[ssl digger download]]></category>
		<category><![CDATA[ssl testing tool]]></category>
		<category><![CDATA[unacceptable versions of SSL]]></category>
		<category><![CDATA[weak cipher]]></category>
		<category><![CDATA[weblogic]]></category>
		<category><![CDATA[weblogic services]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=3028</guid>
		<description><![CDATA[In cryptography, a cipher is an algorithm for performing encryption or decryption i.e a series of well-defined steps that can be followed as a procedure. In SSL cipher suits are responsible for encryption. To configure SSL in Weblogic follow this post In Weblogic Application Server by default following ciphers are supported Cipher Suite : TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In cryptography, a cipher is an algorithm for performing encryption or decryption i.e a series of well-defined steps that can be followed as a procedure. In SSL cipher suits are responsible for encryption.</p>
<p>To configure SSL in Weblogic follow <a href="http://www.techienote.com/2011/07/self-signed-certificate-weblogic.html" title="SSL COnfiguration Weblogic" target="_blank">this post</a></p>
<p>In Weblogic Application Server by default following ciphers are supported</p>
<pre>
Cipher Suite : TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
Symmetric Key Strength (Bits): 168

Cipher Suite : TLS_DHE_RSA_WITH_DES_CBC_SHA
Symmetric Key Strength (Bits): 56

Cipher Suite : TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_DH_anon_WITH_3DES_EDE_CBC_SHA
Symmetric Key Strength (Bits): 168

Cipher Suite : TLS_DH_anon_WITH_RC4_128_MD5
Symmetric Key Strength (Bits): 128

Cipher Suite: TLS_DH_anon_WITH_DES_CBC_SHA
Symmetric Key Strength (Bits): 56

Cipher Suite : TLS_DH_anon_EXPORT_WITH_RC4_40_MD5
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_DHE_RSA_EXPORT_WITH_DES_40_CBC_SHA
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_DH_anon_EXPORT_WITH_DES_40_CBC_SHA
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_RSA_WITH_RC4_128_SHA
Symmetric Key Strength (Bits): 128

Cipher Suite : TLS_RSA_WITH_RC4_128_MD5
Symmetric Key Strength (Bits): 128

Cipher Suite : TLS_RSA_WITH_DES_CBC_SHA
Symmetric Key Strength (Bits): 56

Cipher Suite : TLS_RSA_EXPORT_WITH_RC4_40_MD5
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_RSA_EXPORT_WITH_DES_40_CBC_SHA
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_RSA_EXPORT_WITH_DES40_CBC_SHA
Symmetric Key Strength (Bits): 40

Cipher Suite : TLS_RSA_WITH_3DES_EDE_CBC_SHA
Symmetric Key Strength (Bits): 168

Cipher Suite : TLS_RSA_WITH_NULL_SHA
Symmetric Key Strength (Bits): 0

Cipher Suite : TLS_RSA_WITH_NULL_MD5
Symmetric Key Strength (Bits): 0

Cipher Suite : TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA
Symmetric Key Strength (Bits): 56

Cipher Suite : TLS_RSA_EXPORT1024_WITH_RC4_56_SHA
Symmetric Key Strength (Bits): 56

Cipher Suite : TLS_RSA_WITH_AES_128_CBC_SHA
Symmetric Key Strength (Bits): 128

Cipher Suite : TLS_RSA_WITH_AES_256_CBC_SHA
Symmetric Key Strength (Bits): 256
</pre>
<p>In the above list there are some cipher which are vulnerable. To close this ciphers we have do following:<br />
<strong>Step 1</strong> Stop weblogic Admin / Managed Server</p>
<p><strong>Step 2</strong> Go to Domain Home<br />
For eg<br />
cd /app/Oracle/Middleware/user_projects/domains/vidyadhar/</p>
<p><strong>Step 3</strong> Now we have to modify config file.</p>
<pre lang"bash">
cd /app/Oracle/Middleware/user_projects/domains/vidyadhar/config
</pre>
<p>First we will take a backup of existing config.xml file</p>
<pre lang"bash">
cp config.xml config.xml.orig
</pre>
<p><strong>Step 4</strong> To disable weak ciphers you have to add following under ssl tag in config.xml</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ciphersuite<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>TLS_RSA_WITH_RC4_128_SHA<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ciphersuite<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ciphersuite<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>TLS_RSA_WITH_RC4_128_MD5<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ciphersuite<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>See the screenshot for better understanding<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/02/weblogic_cipher.png"><img src="http://www.techienote.com/wp-content/uploads/2012/02/weblogic_cipher-300x234.png" alt="" title="weblogic_cipher" width="300" height="234" class="alignnone size-medium wp-image-3029" /></a></p>
<p>In my scenario I am having only single Admin Server which is running on https 7002 port. If you have managed server which is running on https port then you have to add above values in the SSL tag of managed server also.</p>
<p><strong>Step 5</strong> Now do the start the weblogic services. </p>
<p>You can test the cipher suites using <a href="http://www.mcafee.com/us/downloads/free-tools/ssldigger.aspx" title="SSL Digger Download" target="_blank">SSLDigger</a></p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/07/resetting-lost-password-of-admin-server-in-weblogic.html" title="Permanent link to Resetting lost password of Admin server in Weblogic">Resetting lost password of Admin server in Weblogic</a>  </li>
<li> <a href="http://www.techienote.com/2011/07/self-signed-certificate-weblogic.html" title="Permanent link to Self Signed Certificate Weblogic">Self Signed Certificate Weblogic</a>  </li>
<li> <a href="http://www.techienote.com/2011/06/start-weblogic-in-production-mode-without-user-name-password.html" title="Permanent link to Start Weblogic in Production mode without user name &#038; password">Start Weblogic in Production mode without user name &#038; password</a>  </li>
<li> <a href="http://www.techienote.com/2011/12/how-to-generate-a-csr-for-ibm-ihs-server.html" title="Permanent link to How to generate a CSR for IBM IHS Server">How to generate a CSR for IBM IHS Server</a>  </li>
<li> <a href="http://www.techienote.com/2011/06/how-to-install-weblogic-on-ubuntu.html" title="Permanent link to How to Install Weblogic on Ubuntu">How to Install Weblogic on Ubuntu</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=CpQL1FDQCJ0:-p56u7crlmo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=CpQL1FDQCJ0:-p56u7crlmo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=CpQL1FDQCJ0:-p56u7crlmo:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=CpQL1FDQCJ0:-p56u7crlmo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=CpQL1FDQCJ0:-p56u7crlmo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/CpQL1FDQCJ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/02/weak-ciphers-in-weblogic-application-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/02/weak-ciphers-in-weblogic-application-server.html</feedburner:origLink></item>
		<item>
		<title>Installing Websphere Application Server 7 on Ubuntu</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/J-b-ZuOu1fM/installing-websphere-application-server-7-on-ubuntu.html</link>
		<comments>http://www.techienote.com/2012/02/installing-websphere-application-server-7-on-ubuntu.html#comments</comments>
		<pubDate>Mon, 06 Feb 2012 10:40:40 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Websphere]]></category>
		<category><![CDATA[agent server]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[software license agreement screen]]></category>
		<category><![CDATA[Step 2 Software]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2983</guid>
		<description><![CDATA[Officially IBM do not support installing Websphere Application Server (WAS) on Ubuntu. There are so many user like me who just want to evaluate the product by installing it on their desktop OS. This is a how-to for installing IBM Websphere Application Server 7 on Ubuntu 11.10 Please Note : I have reduced the screen [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Officially IBM do not support installing Websphere Application Server (WAS) on Ubuntu. There are so many user like me who just want to evaluate the product by installing it on their desktop OS.</p>
<p>This is a how-to for installing IBM Websphere Application Server 7 on Ubuntu 11.10<span id="more-2983"></span></p>
<p><strong>Please Note : I have reduced the screen shots size. For better viewing click on the screenshots.</strong></p>
<p>First download Websphere Application Server Trial binaries for linux from <a href="https://www14.software.ibm.com/webapp/iwm/web/pick.do?S_SRCID=was60&#038;source=was60&#038;S_CMP=web_dw_rt_swd&#038;S_TACT=109J84IW&#038;lang=en_US" target="_blank">here</a> and save it to /tmp/ folder<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/download.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/download-300x190.png" alt="" title="download" width="300" height="190" class="alignnone size-medium wp-image-2984" /></a></p>
<p>Before going ahead we have to run following commands for smooth installation on <a href="http://www.techienote.com/category/linux-2/ubuntu-linux-2" target="_blank">Ubuntu</a> as Ubuntu is not a certified OS to install Websphere Application Server</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #660033;">-i</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>bin
<span style="color: #c20cb9; font-weight: bold;">unlink</span> <span style="color: #c20cb9; font-weight: bold;">sh</span>
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">bash</span> <span style="color: #c20cb9; font-weight: bold;">sh</span></pre></div></div>

<p>I am going to install WAS through <strong>vidyadhar</strong> user and will be installting WAS in <strong>/app/IBM</strong> folder. So first I will create /app/IBM folder</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>IBM
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> vidyadhar:vidyadhar <span style="color: #000000; font-weight: bold;">/</span>app<span style="color: #000000; font-weight: bold;">/</span>IBM</pre></div></div>

<p>Uncompressing the Binary files and starting the installation</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> WAS_INSTALLABLES
<span style="color: #7a0874; font-weight: bold;">cd</span> WAS_INSTALLABLES
<span style="color: #c20cb9; font-weight: bold;">tar</span> zxvf ..<span style="color: #000000; font-weight: bold;">/</span>was.cd.70011.trial.base.opt.linux.ia32.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>WAS_INSTALLABLES<span style="color: #000000; font-weight: bold;">/</span>WAS
.<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p><strong>Step 1</strong> Installation wizard welcome screen<br />
You will be presented with the installation wizard welcome screen as seen below:<br />
Clicking on <strong>Next</strong> will take you to the software license agreement screen.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere1.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere1-300x206.png" alt="" title="websphere1" width="300" height="206" class="alignnone size-medium wp-image-2989" /></a></p>
<p><strong>Step 2</strong> Software license agreement<br />
It is a requirement that you accept the license agreement; Click <strong>Next</strong> to move on to the prerequisites check.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere2.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere2-300x206.png" alt="" title="websphere2" width="300" height="206" class="alignnone size-medium wp-image-2992" /></a></p>
<p><strong>Step 3</strong> System prerequisites check<br />
The installer will check to ensure that your Linux OS meets the required prerequisites. If your OS is not supported, you may see a screen similar to the one below:<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere3.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere3-300x206.png" alt="" title="websphere3" width="300" height="206" class="alignnone size-medium wp-image-2993" /></a></p>
<p><strong>Step 4</strong> Non root user warning<br />
As we are not using root user to install WAS we will see the below warning. Click <strong>Next</strong> to bypass the same.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere4.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere4-300x206.png" alt="" title="websphere4" width="300" height="206" class="alignnone size-medium wp-image-2994" /></a></p>
<p><strong>Step 5</strong> Optional features<br />
In this option we can install Sample Applications, Language Pack. For my installation it is not needed so I am just deselction all the options.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere5.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere5-300x206.png" alt="" title="websphere5" width="300" height="206" class="alignnone size-medium wp-image-2995" /></a></p>
<p><strong>Step 6</strong> Installation directory<br />
We are doing this installation in /app/IBM directory.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere6.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere6-300x206.png" alt="" title="websphere6" width="300" height="206" class="alignnone size-medium wp-image-2996" /></a></p>
<p><strong>Step 7</strong> WebSphere Application Server environments<br />
Depending on which installation scenario you chose, you will now have to select a type of installation. The type of installation chosen will determine whether a profile is created or not.<br />
There are three types of installation options listed by the wizard as shown below:</p>
<p><strong>Management profile</strong><br />
<em>A management profile includes an administrative agent server and services for managing multiple application server environments. An administrative agent manages application servers that are on the same machine.</em></p>
<p><strong>Standalone application server</strong><br />
<em>A standalone application server environment runs your enterprise applications. The application server is managed from its own administrative console and functions independently of all other application servers.</em></p>
<p><strong>Base binaries</strong><br />
<em>WebSphere Application Server version 7.0 requires at least one profile to be functional. Select this option only if one or more profiles will be created after installation completes successfully.</em></p>
<p>In this installation I do not want to create any profile so I am selection <strong>None</strong> option<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere7.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere7-300x206.png" alt="" title="websphere7" width="300" height="206" class="alignnone size-medium wp-image-2999" /></a></p>
<p><strong>Step 8</strong> Profile Warning<br />
As we are selecting NONE profile it will give following error. Click <strong>NEXT</strong><br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere8.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere8-300x61.png" alt="" title="websphere8" width="300" height="61" class="alignnone size-medium wp-image-3000" /></a></p>
<p><strong>Step 9</strong> Verifying Permission<br />
In next screen select <strong>Verify my permission to perform the installation</strong> to avoid installtion errors.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere9.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere9-300x206.png" alt="" title="websphere9" width="300" height="206" class="alignnone size-medium wp-image-3001" /></a></p>
<p><strong>Step 10</strong> Verifying Permission<br />
In this screen you will get Success message for permission, click on <strong>NEXT</strong> to go ahead.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere10.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere10-300x206.png" alt="" title="websphere10" width="300" height="206" class="alignnone size-medium wp-image-3002" /></a></p>
<p><strong>Step 11</strong> Installation Progress Screen<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere11.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere11-300x206.png" alt="" title="websphere11" width="300" height="206" class="alignnone size-medium wp-image-3003" /></a></p>
<p><strong>Step 12</strong> Installation Complete<br />
In case of successfull installation you will see Success message on the screen. I have unchecked Profile Creation Wizard option<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/websphere12.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/websphere12-300x206.png" alt="" title="websphere12" width="300" height="206" class="alignnone size-medium wp-image-3004" /></a></p>
<p>I have also posted the video tutorial on Youtube<br />
<iframe width="425" height="349" src="http://www.youtube.com/embed/YW45bm0gu5A?hl=en&#038;fs=1" frameborder="0" allowfullscreen></iframe></p>
<div class="betterrelated none"><p>No related content found.</p></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=J-b-ZuOu1fM:9xEHDqQvBUg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=J-b-ZuOu1fM:9xEHDqQvBUg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=J-b-ZuOu1fM:9xEHDqQvBUg:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=J-b-ZuOu1fM:9xEHDqQvBUg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=J-b-ZuOu1fM:9xEHDqQvBUg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/J-b-ZuOu1fM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/02/installing-websphere-application-server-7-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/02/installing-websphere-application-server-7-on-ubuntu.html</feedburner:origLink></item>
		<item>
		<title>How to Reset / change ias_admin password</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/6-9AA7gPUrU/how-to-reset-change-ias_admin-password.html</link>
		<comments>http://www.techienote.com/2012/01/how-to-reset-change-ias_admin-password.html#comments</comments>
		<pubDate>Mon, 30 Jan 2012 05:29:57 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Oracle Application Server]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[10gr2]]></category>
		<category><![CDATA[10gr3]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[as control]]></category>
		<category><![CDATA[change password]]></category>
		<category><![CDATA[em console]]></category>
		<category><![CDATA[Enterprise Manager]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How to change the ias_admin password for application server console]]></category>
		<category><![CDATA[How to change the ias_admin password for AS control]]></category>
		<category><![CDATA[How to change the ias_admin password for em console]]></category>
		<category><![CDATA[How to change the ias_admin password for oracle enterprise manager concole]]></category>
		<category><![CDATA[How to reset the ias_admin password for application server console]]></category>
		<category><![CDATA[How to reset the ias_admin password for AS control]]></category>
		<category><![CDATA[How to reset the ias_admin password for em concole]]></category>
		<category><![CDATA[How to reset the ias_admin password for oracle enterprise manager concole]]></category>
		<category><![CDATA[jazn.com oc4jadmin OC4J Administrator OC4J Administrator]]></category>
		<category><![CDATA[Manager for Fusion Middleware Version]]></category>
		<category><![CDATA[middleware]]></category>
		<category><![CDATA[reset ias_admin password]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2977</guid>
		<description><![CDATA[Today one of our client has forgot his Application Server Console password. We have used following method to reset his password. Please Note : This method also work on following Oracle Fusion Middleware Version 9.0.4.0.0 to 10.1.3.5.0 Enterprise Manager Base Platform Version 10.1.0.2 to 10.2.0.5 Enterprise Manager for Fusion Middleware Version 9.0.4.0.0 to 10.1.3.5.0 Step [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Today one of our client has forgot his Application Server Console password. We have used following method to reset his password. </p>
<p><strong>Please Note :</strong> This method also work on following</p>
<ul>
<li>Oracle Fusion Middleware Version 9.0.4.0.0 to 10.1.3.5.0</li>
<li>Enterprise Manager Base Platform Version 10.1.0.2 to 10.2.0.5</li>
<li>Enterprise Manager for Fusion Middleware Version 9.0.4.0.0 to 10.1.3.5.0</li>
</ul>
<p><strong>Step 1</strong> First shutdown the application server control by running emctl command<br />
<strong>For 10.1.2</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$ORACLE_HOME</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>emctl stop iasconsole</pre></div></div>

<p>On <strong>10.1.3</strong> you need to stop the OC4J instances before performing the password change:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$ORACLE_HOME</span><span style="color: #000000; font-weight: bold;">/</span>opmn<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>opmnctl stopproc ias-component=OC4J</pre></div></div>

<p><strong>Step 2</strong> Locate and backup the <strong>jazn-data.xml (10.1.2)</strong> or <strong>system-jazn-data.xml (10.1.3)</strong> file:<br />
On <strong>10.1.2</strong> File Location would be</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$ORACLE_HOME</span><span style="color: #000000; font-weight: bold;">/</span>sysman<span style="color: #000000; font-weight: bold;">/</span>j2ee<span style="color: #000000; font-weight: bold;">/</span>config<span style="color: #000000; font-weight: bold;">/</span>jazn-data.xml</pre></div></div>

<p>On <strong>10.1.3</strong> File Location would be</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$ORACLE_HOME</span><span style="color: #000000; font-weight: bold;">/</span>j2ee<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>config<span style="color: #000000; font-weight: bold;">/</span>system-jazn-data.xml</pre></div></div>

<p><strong>Step 3</strong> Edit the jazn-data.xml / system-jazn-data.xml file depending on the Application Server version in a text editor and locate the line that defines the credentials property for the ias_admin user:</p>
<p>On <strong>10.1.2</strong><br />
The following example shows the section of jazn-data.xml with the encrypted credentials entry in boldface type:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;realm<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>enterprise-manager<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;users<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
       <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>ias_admin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
         <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;credentials<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>rJqp85BkhFwAyw9ddl0PnFlUBVaWzbfT<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/credentials<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
       <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>On <strong>10.1.3</strong><br />
The following example shows the section of system-jazn-data.xml with the encrypted credentials entry in boldface type:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;realm<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>jazn.com<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;users<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>oc4jadmin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;display-name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>OC4J Administrator<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/display-name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>OC4J Administrator<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
       <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;credentials<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>{903}4L50lHJWIFGwLgHXTub7eYK9e0AnWLUH<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/credentials<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p><strong>Step 4</strong> Replace the existing encrypted password with the new password<br />
Be sure to prefix the password with an exclamation point (!). For example:<br />
<credentials>!mynewpassword123</credentials></p>
<p><strong>Step 5</strong> Start the Application Server Console:<br />
For <strong>10.1.2</strong> do following</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$ORACLE_HOME</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>emctl start iasconsole</pre></div></div>

<p>After the restart, the Application Server Control will be using your new Administrator (ias_admin) password, which will be stored in encrypted format within the jazn-data.xml file.</p>
<p>For <strong>10.1.3</strong> do following</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$ORACLE_HOME</span><span style="color: #000000; font-weight: bold;">/</span>opmn<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>opmnctl startproc ias-component=OC4J</pre></div></div>

<p>After the restart, the Application Server Control will be using your new Administrator (oc4jadmin) password, which will be stored in encrypted format within the system-jazn-data.xml file.</p>
<p><strong>Step 6</strong> Login to the Application Server Console and authenticate with the ias_admin user (10.1.2) or the oc4jadmin user (10.1.3) and the new password.</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2012/01/how-to-install-oracle-application-server-10g-release-3-on-windows.html" title="Permanent link to How to install Oracle Application Server 10g Release 3 on Windows">How to install Oracle Application Server 10g Release 3 on Windows</a>  </li>
<li> <a href="http://www.techienote.com/2011/07/resetting-lost-password-of-admin-server-in-weblogic.html" title="Permanent link to Resetting lost password of Admin server in Weblogic">Resetting lost password of Admin server in Weblogic</a>  </li>
<li> <a href="http://www.techienote.com/2011/09/self-signed-certificate-for-oracle-application-server-internet-application-server.html" title="Permanent link to Self Signed Certificate for Oracle Application Server, Internet Application Server">Self Signed Certificate for Oracle Application Server, Internet Application Server</a>  </li>
<li> <a href="http://www.techienote.com/2011/07/installing-oracle-application-server-on-centos.html" title="Permanent link to Installing Oracle Application Server on CentOS">Installing Oracle Application Server on CentOS</a>  </li>
<li> <a href="http://www.techienote.com/2011/06/start-weblogic-in-production-mode-without-user-name-password.html" title="Permanent link to Start Weblogic in Production mode without user name &#038; password">Start Weblogic in Production mode without user name &#038; password</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=6-9AA7gPUrU:0mq_4kRDvyU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=6-9AA7gPUrU:0mq_4kRDvyU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=6-9AA7gPUrU:0mq_4kRDvyU:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=6-9AA7gPUrU:0mq_4kRDvyU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=6-9AA7gPUrU:0mq_4kRDvyU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/6-9AA7gPUrU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/how-to-reset-change-ias_admin-password.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/how-to-reset-change-ias_admin-password.html</feedburner:origLink></item>
		<item>
		<title>How to Install LibreOffice 3.5 RC 1 on Ubuntu</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/riyNiyVmkXo/how-to-install-libreoffice-3-5-rc-1-on-ubuntu.html</link>
		<comments>http://www.techienote.com/2012/01/how-to-install-libreoffice-3-5-rc-1-on-ubuntu.html#comments</comments>
		<pubDate>Tue, 24 Jan 2012 04:58:14 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[data processing needs]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[feature-rich applications]]></category>
		<category><![CDATA[free microsoft office]]></category>
		<category><![CDATA[free office]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[libreoffice]]></category>
		<category><![CDATA[libreoffice 3.5 RC1]]></category>
		<category><![CDATA[libreoffice guide]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[microsoft windows]]></category>
		<category><![CDATA[office suite]]></category>
		<category><![CDATA[RC]]></category>
		<category><![CDATA[The Document Foundation]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 11.10]]></category>
		<category><![CDATA[ubuntu guide]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2973</guid>
		<description><![CDATA[LibreOffice is the free power-packed Open Source personal productivity suite for Windows, Mac and Linux, that gives you six feature-rich applications for all your document production and data processing needs: Writer, Calc, Impress, Draw, Math and Base. Support and documentation is free from our large, dedicated community of users, contributors and developers. Recently LibreOffice team [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>LibreOffice is the free power-packed Open Source personal productivity suite for Windows, Mac and Linux, that gives you six feature-rich applications for all your document production and data processing needs: Writer, Calc, Impress, Draw, Math and Base. Support and documentation is free from our large, dedicated community of users, contributors and developers.</p>
<p>Recently LibreOffice team has released LibreOffice 3.5 RC 1. In this tutorial we will see how to install LibreOffice 3.5 RC 1 on <a href="http://www.techienote.com/category/linux-2/ubuntu-linux-2" target="_blank">Ubuntu</a><span id="more-2973"></span></p>
<p><strong>Step 1</strong> Go to LibreOffice <a href="http://www.libreoffice.org/" target="_blank">official website</a> and download the LibreOffice 3.5 RC 1 archive for Ubuntu</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>vidyadhar
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>download.documentfoundation.org<span style="color: #000000; font-weight: bold;">/</span>libreoffice<span style="color: #000000; font-weight: bold;">/</span>testing<span style="color: #000000; font-weight: bold;">/</span>3.5.0-rc1<span style="color: #000000; font-weight: bold;">/</span>deb<span style="color: #000000; font-weight: bold;">/</span>x86<span style="color: #000000; font-weight: bold;">/</span>LibO_3.5.0rc1_Linux_x86_install-deb_en-US.tar.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> zxvf LibO_3.5.0rc1_Linux_x86_install-deb_en-US.tar.gz</pre></div></div>

<p><strong>Step 2</strong> To install LibreOffice 3.5 RC 1 you have to run dpkg command</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>vidyadhar<span style="color: #000000; font-weight: bold;">/</span>LibO_3.5.0rc1_Linux_x86_install-deb_en-US<span style="color: #000000; font-weight: bold;">/</span>DEBS
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> <span style="color: #000000; font-weight: bold;">*</span>.deb
<span style="color: #7a0874; font-weight: bold;">cd</span> desktop-integration
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> <span style="color: #000000; font-weight: bold;">*</span>.deb</pre></div></div>

<p>That&#8217;s it. Enjoy your LibreOffice 3.5</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/01/install-libreoffice-in-ubuntu.html" title="Permanent link to Install LibreOffice in Ubuntu">Install LibreOffice in Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2011/02/libreoffice-3-3-1-final.html" title="Permanent link to LibreOffice 3.3.1 Final">LibreOffice 3.3.1 Final</a>  </li>
<li> <a href="http://www.techienote.com/2010/12/package-installation-and-updates-in-ubuntu.html" title="Permanent link to Package Installation and Updates in Ubuntu">Package Installation and Updates in Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2011/08/install-kernel-2-6-39-rc4-on-ubuntu-11-04.html" title="Permanent link to Install Kernel 2.6.39 RC4 on Ubuntu 11.04">Install Kernel 2.6.39 RC4 on Ubuntu 11.04</a>  </li>
<li> <a href="http://www.techienote.com/2011/01/installing-unity-2d-on-ubuntu.html" title="Permanent link to Installing Unity 2D on Ubuntu">Installing Unity 2D on Ubuntu</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=riyNiyVmkXo:9aQ9UTBzZIs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=riyNiyVmkXo:9aQ9UTBzZIs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=riyNiyVmkXo:9aQ9UTBzZIs:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=riyNiyVmkXo:9aQ9UTBzZIs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=riyNiyVmkXo:9aQ9UTBzZIs:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/riyNiyVmkXo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/how-to-install-libreoffice-3-5-rc-1-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/how-to-install-libreoffice-3-5-rc-1-on-ubuntu.html</feedburner:origLink></item>
		<item>
		<title>Install / Upgrade Kernel 3.2 in Ubuntu</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/MFYWomykX9Y/install-upgrade-kernel-3-2-in-ubuntu.html</link>
		<comments>http://www.techienote.com/2012/01/install-upgrade-kernel-3-2-in-ubuntu.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 05:30:15 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[kernal]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 3.2]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 11.10]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2966</guid>
		<description><![CDATA[In this guide we will upgrade the Ubuntu kernel version. By default Ubuntu 11.10 ships with 3.0 Kernel version. We will install the new kernel 3.2 over existing 3.0 Step 1 First we will see the current kernel version. To do so run following uname -r Output will be something like below Step 2 Now [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In this guide we will upgrade the Ubuntu kernel version. By default <a href="http://www.techienote.com/category/linux-2/ubuntu-linux-2" target="_blank">Ubuntu</a> 11.10 ships with 3.0 Kernel version. We will install the new kernel 3.2 over existing 3.0<span id="more-2966"></span></p>
<p><strong>Step 1</strong> First we will see the current kernel version. To do so run following</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">uname</span> <span style="color: #660033;">-r</span></pre></div></div>

<p>Output will be something like below<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/kernel-upgrade1.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/kernel-upgrade1-300x186.png" alt="" title="kernel-upgrade1" width="300" height="186" class="alignnone size-medium wp-image-2967" /></a></p>
<p><strong>Step 2</strong> Now we will add kernel ppa. Open a command propmt and run following commands</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:francisbrwn9<span style="color: #000000; font-weight: bold;">/</span>kernels
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> dist-upgrade</pre></div></div>

<p><strong>Step 3</strong> Once finish, you have to reboot your machine to use the newest kernel. After reboot run uname -r to see the kernel version</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">uname</span> <span style="color: #660033;">-r</span></pre></div></div>

<p>Output will be something like below<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/kernel-upgrade2.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/kernel-upgrade2-300x186.png" alt="" title="kernel-upgrade2" width="300" height="186" class="alignnone size-medium wp-image-2968" /></a></p>
<p>Enjoy your new Kernel</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/08/install-kernel-2-6-39-rc4-on-ubuntu-11-04.html" title="Permanent link to Install Kernel 2.6.39 RC4 on Ubuntu 11.04">Install Kernel 2.6.39 RC4 on Ubuntu 11.04</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/disable-gui-boot-in-ubuntu-11-10.html" title="Permanent link to Disable GUI Boot in Ubuntu 11.10">Disable GUI Boot in Ubuntu 11.10</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/install-firefox-9-on-ubuntu.html" title="Permanent link to Install Firefox 9 on Ubuntu">Install Firefox 9 on Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2011/08/changing-default-boot-os-in-ubuntu-11-04.html" title="Permanent link to Changing Default Boot OS in Ubuntu 11.04">Changing Default Boot OS in Ubuntu 11.04</a>  </li>
<li> <a href="http://www.techienote.com/2010/12/package-installation-and-updates-in-ubuntu.html" title="Permanent link to Package Installation and Updates in Ubuntu">Package Installation and Updates in Ubuntu</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=MFYWomykX9Y:1NVve0Ju_NE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=MFYWomykX9Y:1NVve0Ju_NE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=MFYWomykX9Y:1NVve0Ju_NE:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=MFYWomykX9Y:1NVve0Ju_NE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=MFYWomykX9Y:1NVve0Ju_NE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/MFYWomykX9Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/install-upgrade-kernel-3-2-in-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/install-upgrade-kernel-3-2-in-ubuntu.html</feedburner:origLink></item>
		<item>
		<title>How to install Oracle Application Server 10g Release 3 on Windows</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/2X2IkIsmyq8/how-to-install-oracle-application-server-10g-release-3-on-windows.html</link>
		<comments>http://www.techienote.com/2012/01/how-to-install-oracle-application-server-10g-release-3-on-windows.html#comments</comments>
		<pubDate>Wed, 18 Jan 2012 06:20:12 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Oracle Application Server]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[.1.3]]></category>
		<category><![CDATA[10.1.3]]></category>
		<category><![CDATA[application server]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[EM console url]]></category>
		<category><![CDATA[EM64T processors]]></category>
		<category><![CDATA[finding EM console URL]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[J2EE application server]]></category>
		<category><![CDATA[Manager Application Server Control]]></category>
		<category><![CDATA[OHS]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle application server 10g r3]]></category>
		<category><![CDATA[oracle application server 10g release 3]]></category>
		<category><![CDATA[Oracle Enterprise Manager Application Server Control]]></category>
		<category><![CDATA[Oracle HTTP Server]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2946</guid>
		<description><![CDATA[Oracle Application Server is no longer available. The reason is because once &#8220;Oracle SOA Suite 10g (10.1.3.1.0)&#8221; was released, it contains the same product features and functionality, including some features which are not obtainable without the 10.1.3.1 media. In this tutorial we will see how to install Oracle Application Server 10g R 3(10.1.3.X) on Windows. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Oracle Application Server is no longer available. The reason is because once &#8220;Oracle SOA Suite 10g (10.1.3.1.0)&#8221; was released, it contains the same product features and functionality, including some features which are not obtainable without the 10.1.3.1 media.  In this tutorial we will see how to install Oracle Application Server 10g R 3(10.1.3.X) on Windows.</p>
<p><strong>Requirements</strong><br />
Windows OS<br />
Oracle Application Server 10.1.3.X</p>
<p><strong>Step 1</strong> Downloading Oracle Application Server 10.1.3.X<br />
Oracle provides 32-bit and 64-bit versions of Oracle Application Server for Windows. The 32-bit version runs on Intel x86, AMD64, and Intel EM64T processors. For additional information, visit <a href="http://metalink.oracle.com" target="_blank">OracleMetaLink</a> at <a href="http://metalink.oracle.com" target="_blank">http://metalink.oracle.com</a></p>
<p>I have downloaded the installer files at <strong>C:\Downloads\INSTALLABLES\Oracle</strong> For 32 bit installer file name would be <strong>soa_windows_x86_101310_disk1.zip</strong></p>
<p>I have extracted the same to  <strong>C:\Downloads\INSTALLABLES\Oracle</strong><br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/0.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/0-300x275.png" alt="" title="0" width="300" height="275" class="alignnone size-medium wp-image-2947" /></a></p>
<p><strong>Step 2</strong> Starting the installation<br />
Go to extracted folder. In our case it is <strong>C:\Downloads\INSTALLABLES\Oracle\soa_windows_x86_101310_disk1\soa_windows_x86_101310_disk1</strong> and double click on <strong>setup.exe</strong> It will start the Oracle Application Server Universal installer<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/11.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/11-300x88.png" alt="" title="1" width="300" height="88" class="alignnone size-medium wp-image-2948" /></a><br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/2.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/2-300x238.png" alt="" title="2" width="300" height="238" class="alignnone size-medium wp-image-2949" /></a></p>
<p><strong>Step 3</strong> Oracle Application Server 10g 10.1.3.X screen<br />
Enter the installation directory where you want to install Oracle Application Server. In our case I choose <strong>D:\product\10.1.3.1\OracleAS_1</strong> Also select <strong>Advance Installation mode</strong>.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/3.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/3-300x233.png" alt="" title="3" width="300" height="233" class="alignnone size-medium wp-image-2951" /></a></p>
<p>For the Warning please click on yes<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/4.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/4-300x138.png" alt="" title="4" width="300" height="138" class="alignnone size-medium wp-image-2952" /></a></p>
<p><strong>Step 4</strong> Select Installation Type screen<br />
In this section choose J2EE server and Web server, as we are going to use only oc4j containers for J2EE and HTTP Server<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/5.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/5-300x237.png" alt="" title="5" width="300" height="237" class="alignnone size-medium wp-image-2953" /></a></p>
<p><strong>Step 5</strong> Specify Port Configuration Options screen<br />
In Specify Port Configuration Options screen Select <strong>Automatic</strong> and click Next<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/6.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/6-300x238.png" alt="" title="6" width="300" height="238" class="alignnone size-medium wp-image-2954" /></a></p>
<p><strong>Step 6</strong> Administration Instance Settings screen<br />
In AS administrator settings enter following values:<br />
<strong>AS instance Name :</strong> techienote<br />
<strong>AS Administrator Password :</strong> admin_123<br />
<strong>OC4J Instance Name :</strong> home<br />
Select <strong>Configure this as an Administration OC4J instance</strong>. This will start EM console as soon as you start the oracle service via OPMN.<br />
Click Next.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/8.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/8-300x237.png" alt="" title="8" width="300" height="237" class="alignnone size-medium wp-image-2955" /></a></p>
<p><strong>Step 7</strong> Cluster Topology Configuration screen</p>
<p>Deselect <strong>Configure this instance to be part of an Oracle Application Server cluster topology</strong> as this is a simple installation and click on Next<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/9.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/9-300x236.png" alt="" title="9" width="300" height="236" class="alignnone size-medium wp-image-2956" /></a></p>
<p><strong>Step 8</strong> Now it will start the installation process<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/10.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/10-300x237.png" alt="" title="10" width="300" height="237" class="alignnone size-medium wp-image-2957" /></a><br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/111.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/111-300x236.png" alt="" title="11" width="300" height="236" class="alignnone size-medium wp-image-2958" /></a></p>
<p><strong>Step 9.</strong> Configuration Assistant<br />
At this level installer will configure various service. In case of any failure please see installation logs which are located at <strong>C:\Program Files\Oracle\Inventory\logs</strong> folder<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/12.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/12-300x237.png" alt="" title="12" width="300" height="237" class="alignnone size-medium wp-image-2959" /></a></p>
<p><strong>Step 10</strong> End of Installation<br />
On this screen you will get Oracle Application server EM console URL<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/13.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/13-300x237.png" alt="" title="13" width="300" height="237" class="alignnone size-medium wp-image-2960" /></a></p>
<p>Step 11. Access the Oracle Application Server Welcome page to verify that the installation was successful. The URL for the Welcome page is:</p>
<p>http://hostname.domainname:http_port</p>
<p><a href="http://www.techienote.com/wp-content/uploads/2012/01/14.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/14-300x225.png" alt="" title="14" width="300" height="225" class="alignnone size-medium wp-image-2961" /></a></p>
<p>You can locate the URL for accessing the Welcome Page on the End of Installation Screen text, which is stored in the following file:<br />
ORACLE_HOME\install\readme.txt</p>
<p>The Welcome page provides links to these useful pages:<br />
New features in Oracle Application Server 10g Release 3 (10.1.3)</p>
<ul>
<li>Oracle Enterprise Manager Application Server Control (&#8220;Application Server Control&#8221;), which is a browser-based administrative tool</li>
<li>Release Notes</li>
<li>Quick Start</li>
<li>Demos</li>
</ul>
<p>That&#8217;s it. You are ready with the application server installation. In next section we will see how to deploy sample application in Oracle Application Server.</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/07/installing-oracle-application-server-on-centos.html" title="Permanent link to Installing Oracle Application Server on CentOS">Installing Oracle Application Server on CentOS</a>  </li>
<li> <a href="http://www.techienote.com/2011/06/how-to-install-weblogic-on-ubuntu.html" title="Permanent link to How to Install Weblogic on Ubuntu">How to Install Weblogic on Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/installing-os-on-dead-blackberry.html" title="Permanent link to Installing OS on Dead Blackberry">Installing OS on Dead Blackberry</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/disable-gui-boot-in-ubuntu-11-10.html" title="Permanent link to Disable GUI Boot in Ubuntu 11.10">Disable GUI Boot in Ubuntu 11.10</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/how-to-install-bejeweled-on-ubuntu.html" title="Permanent link to How to Install Bejeweled on Ubuntu">How to Install Bejeweled on Ubuntu</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=2X2IkIsmyq8:cEqvN9a92-4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=2X2IkIsmyq8:cEqvN9a92-4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=2X2IkIsmyq8:cEqvN9a92-4:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=2X2IkIsmyq8:cEqvN9a92-4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=2X2IkIsmyq8:cEqvN9a92-4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/2X2IkIsmyq8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/how-to-install-oracle-application-server-10g-release-3-on-windows.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/how-to-install-oracle-application-server-10g-release-3-on-windows.html</feedburner:origLink></item>
		<item>
		<title>How to Install Bejeweled on Ubuntu</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/yAtW_kMmM_U/how-to-install-bejeweled-on-ubuntu.html</link>
		<comments>http://www.techienote.com/2012/01/how-to-install-bejeweled-on-ubuntu.html#comments</comments>
		<pubDate>Tue, 17 Jan 2012 05:30:06 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Bejeweled]]></category>
		<category><![CDATA[bejeweled clone gjeweled]]></category>
		<category><![CDATA[Bejeweled port]]></category>
		<category><![CDATA[board game]]></category>
		<category><![CDATA[Diamond]]></category>
		<category><![CDATA[Diamond Mine]]></category>
		<category><![CDATA[Diamond Mine port]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[gweled]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux games]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu bejeweled]]></category>
		<category><![CDATA[ubuntu games]]></category>
		<category><![CDATA[ubuntu gweled]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2936</guid>
		<description><![CDATA[Bejeweled is very popular game for PalmOS / Windows / Java based phone. Now you can also play the same game on your Ubuntu desktop by installing Gweled. Gweled is a GNOME version of Bejeweled or Diamond Mine. The aim of the game is to make alignment of 3 or more gems, both vertically or [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Bejeweled</strong> is very popular game for PalmOS / Windows / Java based phone. Now you can also play the same game on your Ubuntu desktop by installing <strong>Gweled</strong>. <strong>Gweled</strong> is a GNOME version of <strong>Bejeweled</strong> or <strong>Diamond Mine</strong>.</p>
<p>The aim of the game is to make alignment of 3 or more gems, both vertically or horizontally by swapping adjacent gems. The game ends when there are no possible moves left.</p>
<p>Here’s how to install and play <strong>Gweled</strong> on <a href="http://www.techienote.com/category/linux-2/ubuntu-linux-2" target="_blank">Ubuntu</a>:</p>
<p><strong>Step 1</strong> Issue the following command at the terminal</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gweled</pre></div></div>

<p><strong>Step 2</strong> After the installation is complete, go to <strong>Menu > Games > Gweled</strong> to start the game. Else type <strong>gweled</strong> in console.</p>
<p><a href="http://www.techienote.com/wp-content/uploads/2012/01/gweled1.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/gweled1-248x300.png" alt="" title="gweled1" width="248" height="300" class="aligncenter size-medium wp-image-2937" /></a><br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/gweled2.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/gweled2-243x300.png" alt="" title="gweled2" width="243" height="300" class="aligncenter size-medium wp-image-2938" /></a></p>
<p>That&#8217;s it. Enjoy your game.</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/12/install-mario-on-ubuntu.html" title="Permanent link to Install Mario On Ubuntu">Install Mario On Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2011/06/angry-birds-on-ubuntu.html" title="Permanent link to Angry Birds on Ubuntu">Angry Birds on Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/disable-gui-boot-in-ubuntu-11-10.html" title="Permanent link to Disable GUI Boot in Ubuntu 11.10">Disable GUI Boot in Ubuntu 11.10</a>  </li>
<li> <a href="http://www.techienote.com/2011/12/create-hotspot-in-ubuntu-11-10.html" title="Permanent link to Create hotspot in Ubuntu 11.10">Create hotspot in Ubuntu 11.10</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/install-firefox-9-on-ubuntu.html" title="Permanent link to Install Firefox 9 on Ubuntu">Install Firefox 9 on Ubuntu</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=yAtW_kMmM_U:9-WXs_LIwus:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=yAtW_kMmM_U:9-WXs_LIwus:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=yAtW_kMmM_U:9-WXs_LIwus:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=yAtW_kMmM_U:9-WXs_LIwus:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=yAtW_kMmM_U:9-WXs_LIwus:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/yAtW_kMmM_U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/how-to-install-bejeweled-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/how-to-install-bejeweled-on-ubuntu.html</feedburner:origLink></item>
		<item>
		<title>How to Make Slower Android Smartphone Faster</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/ppYEt6PMMHQ/how-to-make-slower-android-smartphone-faster.html</link>
		<comments>http://www.techienote.com/2012/01/how-to-make-slower-android-smartphone-faster.html#comments</comments>
		<pubDate>Mon, 16 Jan 2012 05:38:03 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Cellphones]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[alpha]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[android apps]]></category>
		<category><![CDATA[android forum]]></category>
		<category><![CDATA[android forums]]></category>
		<category><![CDATA[android launchers]]></category>
		<category><![CDATA[android phone]]></category>
		<category><![CDATA[android phones]]></category>
		<category><![CDATA[android rooting]]></category>
		<category><![CDATA[android tips]]></category>
		<category><![CDATA[anroid]]></category>
		<category><![CDATA[become]]></category>
		<category><![CDATA[causes]]></category>
		<category><![CDATA[cellphones]]></category>
		<category><![CDATA[Content Provider Group]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free up ram]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[improve]]></category>
		<category><![CDATA[make your phone fast]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[memory consumption andriod]]></category>
		<category><![CDATA[memory management andriod]]></category>
		<category><![CDATA[motorola]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[slower smartphone]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[t-mobile]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tweaks]]></category>
		<category><![CDATA[understand]]></category>
		<category><![CDATA[What]]></category>
		<category><![CDATA[What causes the DROID to become slow?]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2917</guid>
		<description><![CDATA[In the smartphone market android os is the best OS I have used till now. Android was listed as the best-selling smartphone platform worldwide in Q4 2010 by Canalys. Android is capable of wide variety of functions due to its openness, but a lot of the problems comes from a lack of understanding of the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In the smartphone market android os is the best OS I have used till now. Android was listed as the best-selling smartphone platform worldwide in <a href="http://www.canalys.com/newsroom/google%E2%80%99s-android-becomes-world%E2%80%99s-leading-smart-phone-platform" target="_blank">Q4 2010 by Canalys</a>. Android is capable of wide variety of functions due to its openness, but a lot of the problems comes from a lack of understanding of the OS.<span id="more-2917"></span></p>
<p>Because of the way memory is managed in the Android OS, and the way Android apps are structured, the more apps you load, the less memory is available to actually run the apps. The less memory is available, the slower the phone will run, as the phone must spend more time swapping apps in and out of the little working memory available. This affects both battery life and performance.</p>
<p>The problem shows itself in at least three ways:</p>
<p><strong>Symptom 1:</strong> You download an updated app and the download stops for apparently no reason</p>
<p><em>Diagnosis:</em> The &#8220;downloading service&#8221; was shuffled out by the system, killing the download.</p>
<p>Go the the &#8220;services screen&#8221;. (see below) Does the &#8220;download service&#8221; says &#8220;restarting&#8221; to the right? That means It was indeed stopped by the system to give the memory to some other apps.<br />
<a href="http://www.techienote.com/wp-content/uploads/2012/01/android1.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/android1-168x300.png" alt="" title="android1" width="168" height="300" class="aligncenter size-medium wp-image-2922" /></a></p>
<div align="center">Press &#8220;menu&#8221; key to bring up the menu, and pick Settings</div>
<p><a href="http://www.techienote.com/wp-content/uploads/2012/01/android2.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/android2-168x300.png" alt="" title="android2" width="168" height="300" class="aligncenter size-medium wp-image-2923" /></a></p>
<div align="center">Once in Settings, pick &#8220;Applications&#8221;</div>
<p><a href="http://www.techienote.com/wp-content/uploads/2012/01/android3.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/android3-168x300.png" alt="" title="android3" width="168" height="300" class="aligncenter size-medium wp-image-2924" /></a></p>
<div align="center">Once in Applications, pick &#8220;Running Services&#8221;</div>
<p><a href="http://www.techienote.com/wp-content/uploads/2012/01/android4.png"><img src="http://www.techienote.com/wp-content/uploads/2012/01/android4-168x300.png" alt="" title="android4" width="168" height="300" class="aligncenter size-medium wp-image-2925" /></a></p>
<div align="center">And this is the &#8220;Services&#8221; screen. If any of the services says &#8216;restarting&#8217; instead of an actual time, that service was pushed out of active memory.</div>
<p><strong>Symptom 2:</strong> Apps used to load from the launcher instantly now takes several seconds. Screens transitions are slow as heck. Loading a new supposedly &#8220;fast&#8221; launcher did not help.</p>
<p><em>Diagnosis:</em> System is busy shuffling various activities and services in and out of memory.</p>
<p>Does lot of different services show &#8220;restarting&#8221;? Do the some of the services shows very short &#8220;active life&#8221;?</p>
<p><strong>Symptom 3:</strong> Your phone used to last most of a day but now it won&#8217;t last past lunch without a charge</p>
<p><em>Diagnosis:</em> You have all sorts of services in the background using battery power here and there</p>
<p>If you go into the battery usage screen (settings > About Phone > Battery Usage) and you see a very long list of apps all taking a few bits and pieces of power, you have too many apps loaded, and they are all sucking up a little power, and all those bits and pieces add up.</p>
<p>All these problems can be traced back to a single cause: too many apps in too little memory. However, as the memory in Android phones are not expandable, you can only deal with the problem by remove apps to make more memory available. But first, let us dig into the Android OS and learn how Android OS manages memory.</p>
<p><strong>So How Android OS Really Manages Memory?</strong></p>
<p>The Android OS memory management is a complicated subject, and is quite technical.<br />
Android OS roughly groups all apps into 6 groups, with priority from highest to lowest:<br />
<strong>Foreground app:</strong> you see this app on screen, currently running, but also includes the system itself and &#8220;phone&#8221;</p>
<p><strong>Visible app:</strong> the app is running and visible, but due to multi-tasking or such is not currently &#8220;on top&#8221;</p>
<p><strong>Secondary server:</strong> services that stay in background and apps such as Launcher (or other home replacements). Most services go here, like music player, clock updater, background sync, and so on, that&#8217;s not built into the OS.</p>
<p><strong>Hidden Application:</strong> apps not visible, but still running in the background</p>
<p><strong>Content Provider:</strong> process that provides content to the foreground, such as &#8220;contacts content provider&#8221;, &#8220;calendar content provider&#8221;, and so on. May also known as &#8220;storage&#8221;.</p>
<p><strong>Empty App:</strong> the app is in standby, not being used, but is still in memory</p>
<p>Within each &#8216;group&#8217; the system assigns a &#8220;priority&#8221; number based on how recently the app was accessed, with assumption that a most recently access program should be kept, and the oldest will be out of luck.</p>
<p>When Android OS runs out of free memory and needs to load a new app, it starts killing apps in Empty App group, oldest first. if that&#8217;s not enough, it then starts killing apps in the Content Provider Group, and it keeps going up groups until it has finally freed up enough memory to load the app and all related processes (such as services).</p>
<p><strong>NOTE:</strong> Having a constant &#8220;notification&#8221; in the notification area makes the program &#8220;visible app&#8221; instead of &#8220;hidden app&#8221;, thus making it less likely to be killed by the system to make room for other apps.<br />
Most of the problems occur when the system tries to make room by killing &#8220;secondary server&#8221; processes that are needed.</p>
<p><strong>Never Enough Memory</strong></p>
<p>Android OS has THREE main pools of memory: RAM (for running programs), app storage (for storing programs that will be ran) and finally, SD card (for storing data like music, photos, and secondary storage). (NOTE: Some phones have &#8220;internal&#8221; SD card and external SD card, and they are known as /sdcard and /sdcard-ext respectively.)</p>
<p>RAM management is very complicated because Android OS is based on a Linux kernel (read: heart) and even seasoned Linux developer will tell you it is virtually incomprehensible. After extensive experimentation, it is found that the hardware itself (i.e. the PHONE) will take 32MB or so even before the Android OS loads. Then the fixed components like &#8220;system&#8221; (acore, phone, gapps, system&#8230;) will take up about 65-80MB. That&#8217;s about 100-128 MB gone, without a single actual app being loaded.</p>
<p>Then you load the launcher itself, which uses anywhere like 8-30 MB.</p>
<p>Now the individual apps load, except it&#8217;s not that simple. Many apps have several components, the frontend (user interface) called &#8220;process&#8221;, and the backend (&#8220;services&#8221;). Due to the way the apps work under the Android OS they usually take up at least 3 MB of RAM even though the app itself appears to be only a few hundred KB in size. Some can use a lot more RAM.</p>
<p>Check the Services screen. You will see each service takes up 2-5 (or more) MB, some may take 15 or more. That does not leave much for the apps, esp. when the &#8220;services&#8221; are often loaded automatically. The more apps you load (or start automatically), the less is available to the system.</p>
<p>Every widget you place on the screen is backed up by a service. If you have 5 widgets on screen, that&#8217;s another 20 MB or so gone. Subtract another 10-20 for live wallpaper (depending on complexity), and your consumed RAM is up to 160+ MB, and that&#8217;s BEFORE you actually run any programs!</p>
<p>The early Android phones are extremely RAM deficient. Original Google phone, the T-Mobile G1 has only 192MB internal storage, and original Motorola Droid has only 256MB. With 16)+ MB used up before any apps, this leaves almost NOTHING for the actual apps. The later Android phones like Samsung Galaxy S series expanded that to 512MB, and some of the latest phones are up to 768MB or even 1 GB in RAM. So keeping more internal memory free is easier on those phones.</p>
<p>So you&#8217;re probably wondering, if there&#8217;s only like 80-90MB of RAM available, how can you load like 100-200 MB of apps? What happens is the phone try to fit in more apps than the memory would allow, so it kills off &#8220;lower priority&#8221; apps and services in order to make room for other apps. However, those apps may request the system to load itself back into memory, so you have a CPU trying to fit X+Y programs into space that can only fit X, by time-sharing&#8230; Load apps to do something, then swap those out of memory and swap some others back in. This constant swap process is handled all in the background.</p>
<p><strong>NOTE:</strong> The way system decides what to kill and what to load is rather complicated, so see the sidebar.</p>
<p>So the lesson learned is simple: load LESS stuff into RAM. And how do you load less stuff into RAM? Load less apps. Really, it is that simple.</p>
<p>Your App storage is important, but not as important as RAM. My phone shows I&#8217;ve used up 176MB of my 256MB of app storage just for apps and their cache and data. Each app you load also needs some space to store working data. So a small app of only a few hundred KB can be using several megabytes of data, both working data and cache. Web browser apps are notorious for keeping cache of several megabytes when it is only a few hundred KB in size.</p>
<p>To see how much app storage you got left, go to menu / Settings / Sd Card and Phone Storage. At the very bottom, under &#8220;internal Phone stroage&#8221;, it&#8217;ll tell you how much it has left.</p>
<p>So what can we do about this? Here are 6 normal tips and 4 advance tips.</p>
<p><strong>Tip 1:</strong> Uninstall the apps you rarely use</p>
<p>It is obvious, but it&#8217;s still true: the less program you load, the more responsive the phone will be, because there are a LOT of free memory available. More memory will be available to the phone to actually RUN the programs.</p>
<p>If you want to save the app, use something like AppManager, AppMonster, or Titanium Backup to archive the apps you want to keep around to SD card. Or just redownload them when you need them.</p>
<p>Figure out which apps are taking up the most space by going to menu / Settings / Applications / Manage Applications / menu / sort by size (default is sort by alpha A-Z)</p>
<p>(You can also sort by size in AppBrain, but that&#8217;s the &#8220;total size&#8221;, not the &#8220;internal storage size&#8221;, which is not that useful)</p>
<p>Also see Tip #6: Do NOT use a Task Killer.</p>
<p><strong>Tip 2:</strong> Move apps back from SD Card&#8230; if possible</p>
<p>(Yes, I know I used to recommend the exact opposite)</p>
<p>Apps are really meant to be run from internal storage. Move2SD is a neat feature, but SD card is still not as fast as internal storage (unless you have a Class 10 or faster). For the apps you use often, move them BACK INTO phone. They&#8217;ll actually run faster.</p>
<p><strong>Tip 3:</strong> Use only the bare minimum number of widgets</p>
<p>Each widget loads a &#8220;service&#8221; or two to keep itself updated, and each service is 2-4 MB of space used, even if the widget itself is only like 50KB in size.</p>
<p>Look at the Services Screen yourself: How much is that pretty clock widget taking up? Probably 2-4 MB. Add another one for the music player, another one for the podcast player, another one for this, another one for that&#8230; They all add up.</p>
<p><strong>Tip 4:</strong> Use a Static Wallpaper</p>
<p>Even a simple Live Wallpaper will take 2 MB or so of memory. Complicated ones may take up to 20MB. And that thing is running ALL THE TIME. It even sucks up CPU power (and battery). Thus, just use a static wallpaper.</p>
<p><strong>Tip 5:</strong> Occasionally, Manually Kill Unnecessary Services</p>
<p>Seems every app nowadays comes with a service&#8230; and uses several MB of internal memory, even when they are NOT running.</p>
<p>Google Maps have a &#8220;Places&#8221; service that sometimes loads even when Maps is NOT loaded. Youtube sometimes loads a &#8220;widget service&#8221; even when it&#8217;s not running and have no widgets on screen. When you exit an app, the associated services are not always stopped with it.</p>
<p>Kill them manually (see &#8220;Running Services&#8221; sidebar above), tap any service to kill it. Make their space available to other apps. In fact, if you rarely use that app, uninstall it altogether. (See Tip #1)</p>
<p><strong>Tip 6:</strong> Do NOT Use Task Killers on Automatic or Schedule</p>
<p>Advanced Task Killer and similar apps may interfere with the built-in memory management. The memory they free up is only temporary and may include running apps, which will be reloaded by the system in moments.</p>
<p>The best way NOT to overburden the system is to load less apps in the first place</p>
<p>You can have one loaded, but turn off any auto-kill or schedule-kill functions. Advanced Task Killer for Froyo by ReChild is what I use, but only very occasionally, and you can just go into services and kill individual services.</p>
<p>For more information on why NOT to use Task Killers, see my other hub: Android OS Task Killers.</p>
<p><strong>Advanced Tips for Rooted Phones</strong></p>
<p>The following advanced tips all require rooting the phone, which means you gain &#8220;superuser&#8221; status that allows you to read/write all portions of the phone, even the &#8220;system&#8221; sections, which normal users don&#8217;t have access to. Not all phones can be rooted, and rooting your phone MAY void your warranty. You do so at your own risk, and there are guides out there on how to root your phone. If the 6 tips above are somehow not enough to help you, try the four tips below.</p>
<p><strong>Advanced Tip 1:</strong> Use AutoStarts or Autorun Manager to disable automatic startup of programs</p>
<p><em>REQUIRES ROOT!</em></p>
<p>The good apps can be set to NOT run at startup. The not-so-good ones just start without giving you a choice.</p>
<p>Use AutoStarts (paid app) or Autorun manager (free) and disable the startups of certain apps. Not all apps need to stay on all the time. AutoStarts can also prevent apps from being started by certain system events, such as &#8220;bluetooth on&#8221;. For example, if you have an app that&#8217;s supposed to be triggered by the camera button, but isn&#8217;t, the only way you&#8217;ll diagnose it is run AutoStarts and see which app is hooked into that event and disable it.</p>
<p>There are a lot of programs that claims to stop &#8220;autorun&#8221; or &#8220;autostart&#8221;, but this is the original, and it really does work. The ones that don&#8217;t require root only works about half of the time.</p>
<p><strong>Advanced Tip 2:</strong> Use Auto Memory Manager or AutoKiller to tweak settings</p>
<p><em>REQUIRES ROOT!</em></p>
<p>Use Auto Memory Manager or AutoKiller to tweak the built-in memory manager to be more aggressive or just somewhat more active (i.e. &#8220;mild&#8221;) than the default setting, which is VERY conservative.</p>
<p>This means you don&#8217;t need to mess with a task killer at all (except for certain instances). I have mine set on &#8220;mild&#8221;.</p>
<p><strong>Advanced Tip 3:</strong> Load an Overclocked Kernel</p>
<p><em>REQUIRES ROOT!</em></p>
<p>Load an overclocking kernel so you can overclock the CPU in your Android phone. The OMAP CPU in the original Moto Droid is designed for 600 MHz, but is clocked at only 550 MHz for better battery life. However, it can be easily overclocked to 800 MHz without modification, and perhaps even 1.2 or 1.25 GHz (depending on how lucky you are) by loading a new kernel.</p>
<p>Keep in mind there are dozens of different alternate kernels out there and they are written for a specific phone model and specific clock speed. You will need to know how to boot into &#8220;recovery mode&#8221; in case your kernel experimentation did not work out.</p>
<p>I have mine set to 1.1 GHz and it never had any problems.</p>
<p><strong>Advanced Tip 4:</strong> Load a new Custom ROM altogether</p>
<p><em>REQUIRES ROOT!</em></p>
<p>People love Customs ROMs, and many are noticeably faster (though a lot of it is from completely wiping out all the apps). Still, it is a valid way to &#8220;start over&#8221; with your phone.<br />
For almost every model of Android phone (at least the popular ones) there are custom ROM developers making custom ROMs for it. The original Motorola Droid, i.e. OG Droid, had a dozen or more custom ROMs, the best known of which: Cyanogen Mod (which gradually expanded to support over a dozen different phones). However, there&#8217;s also Liquid, Alfonso, MIUI, and many more.</p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/01/installing-meego-1-1-on-nexus-s.html" title="Permanent link to Installing MeeGo 1.1 on Nexus S">Installing MeeGo 1.1 on Nexus S</a>  </li>
<li> <a href="http://www.techienote.com/2011/01/ubuntu-on-nexus-s.html" title="Permanent link to Ubuntu on Nexus S">Ubuntu on Nexus S</a>  </li>
<li> <a href="http://www.techienote.com/2012/01/free-tool-to-monitor-mobile-internet-usage-in-android.html" title="Permanent link to Free Tool to Monitor Mobile Internet Usage in Android">Free Tool to Monitor Mobile Internet Usage in Android</a>  </li>
<li> <a href="http://www.techienote.com/2011/12/create-hotspot-in-ubuntu-11-10.html" title="Permanent link to Create hotspot in Ubuntu 11.10">Create hotspot in Ubuntu 11.10</a>  </li>
<li> <a href="http://www.techienote.com/2011/01/dual-boot-htc-hd2-leo.html" title="Permanent link to Dual Boot HTC HD2 LEO">Dual Boot HTC HD2 LEO</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=ppYEt6PMMHQ:Sk36sWlxXPs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=ppYEt6PMMHQ:Sk36sWlxXPs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=ppYEt6PMMHQ:Sk36sWlxXPs:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=ppYEt6PMMHQ:Sk36sWlxXPs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=ppYEt6PMMHQ:Sk36sWlxXPs:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/ppYEt6PMMHQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/how-to-make-slower-android-smartphone-faster.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/how-to-make-slower-android-smartphone-faster.html</feedburner:origLink></item>
		<item>
		<title>How to PXE boot Oracle VM Server</title>
		<link>http://feedproxy.google.com/~r/Techienote/~3/TnCSdoj8myY/how-to-pxe-boot-oracle-vm-server.html</link>
		<comments>http://www.techienote.com/2012/01/how-to-pxe-boot-oracle-vm-server.html#comments</comments>
		<pubDate>Sun, 15 Jan 2012 10:08:11 +0000</pubDate>
		<dc:creator>Vidyadhar</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PXE]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[Mount OracleVM-Server.iso]]></category>
		<category><![CDATA[oracle vm using pxe]]></category>

		<guid isPermaLink="false">http://www.techienote.com/?p=2932</guid>
		<description><![CDATA[Following is the tutorial for installing Oracle VM server through PXE. Requirement PXE Server Oracle VM Server 3.0.2 Step 1 Download &#038; Mount OracleVM-Server.iso mount -o loop /storage/os/OracleVM-Server-3.0.2.iso cd/ Step 2 Create folder to store oracle vm files. mkdir -p /tftpboot/images/oraclevm/ Step 3 Copy required files to oraclevm folder under pxe. cp cd/isolinux/mboot.c32 /tftpboot/images/oraclevm/ cp [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Following is the tutorial for installing Oracle VM server through PXE.</p>
<p><strong>Requirement</strong><br />
<a href="http://www.techienote.com/2010/11/pxe-boot-server-on-ubuntu.html" target="_blank">PXE Server</a><br />
Oracle VM Server 3.0.2</p>
<p><strong>Step 1</strong> Download &#038; Mount OracleVM-Server.iso</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-o</span> loop <span style="color: #000000; font-weight: bold;">/</span>storage<span style="color: #000000; font-weight: bold;">/</span>os<span style="color: #000000; font-weight: bold;">/</span>OracleVM-Server-3.0.2.iso cd<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>Step 2</strong> Create folder to store oracle vm files.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>tftpboot<span style="color: #000000; font-weight: bold;">/</span>images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>Step 3</strong> Copy required files to oraclevm folder under <a href="www.techienote.com/category/pxe-2" target="_blank">pxe</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cp</span> cd<span style="color: #000000; font-weight: bold;">/</span>isolinux<span style="color: #000000; font-weight: bold;">/</span>mboot.c32 <span style="color: #000000; font-weight: bold;">/</span>tftpboot<span style="color: #000000; font-weight: bold;">/</span>images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> cd<span style="color: #000000; font-weight: bold;">/</span>isolinux<span style="color: #000000; font-weight: bold;">/</span>initrd.img <span style="color: #000000; font-weight: bold;">/</span>tftpboot<span style="color: #000000; font-weight: bold;">/</span>images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> cd<span style="color: #000000; font-weight: bold;">/</span>isolinux<span style="color: #000000; font-weight: bold;">/</span>vmlinuz <span style="color: #000000; font-weight: bold;">/</span>tftpboot<span style="color: #000000; font-weight: bold;">/</span>images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> cd<span style="color: #000000; font-weight: bold;">/</span>isolinux<span style="color: #000000; font-weight: bold;">/</span>xen.gz <span style="color: #000000; font-weight: bold;">/</span>tftpboot<span style="color: #000000; font-weight: bold;">/</span>images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>Step 4</strong> append following lines in /tftpboot/pxelinux.cfg/default</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">LABEL ovs3
kernel images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>mboot.c32
append images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>xen.gz <span style="color: #660033;">---</span> images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>vmlinuz <span style="color: #660033;">---</span> images<span style="color: #000000; font-weight: bold;">/</span>oraclevm<span style="color: #000000; font-weight: bold;">/</span>initrd.img</pre></div></div>

<p>Thats all, now with pxe boot you’ll find option to boot using ovs. Once you boot from ovs pxe, you need to either give path of iso image using nfs store OR give http path where content of cd is copied / cd mounted.</p>
<p>Source <a href="http://www.linuxreaders.com/2012/01/10/install-oracle-vm-server-using-pxe/" target="_blank">@LINUXREADERS</a></p>
<div class="betterrelated"><p><strong>Related content:</strong></p>
<ol><li> <a href="http://www.techienote.com/2011/12/how-to-pxeboot-clonezilla.html" title="Permanent link to How to PXEBoot Clonezilla">How to PXEBoot Clonezilla</a>  </li>
<li> <a href="http://www.techienote.com/2010/11/pxe-boot-server-on-ubuntu.html" title="Permanent link to PXE Boot Server on Ubuntu">PXE Boot Server on Ubuntu</a>  </li>
<li> <a href="http://www.techienote.com/2010/06/pxe-booting-lucid-lynx-ubuntu-10-04.html" title="Permanent link to PXE booting Lucid Lynx Ubuntu -10.04">PXE booting Lucid Lynx Ubuntu -10.04</a>  </li>
<li> <a href="http://www.techienote.com/2010/06/pxe-boot-server-on-centos.html" title="Permanent link to PXE Boot server on CentOS">PXE Boot server on CentOS</a>  </li>
<li> <a href="http://www.techienote.com/2010/06/pxe-booting-windows-xp-installation.html" title="Permanent link to PXE booting Windows XP Installation">PXE booting Windows XP Installation</a>  </li>
</ol></div><p></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Techienote?i=TnCSdoj8myY:KCbgeOqd0aI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techienote?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Techienote?i=TnCSdoj8myY:KCbgeOqd0aI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techienote?i=TnCSdoj8myY:KCbgeOqd0aI:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Techienote?i=TnCSdoj8myY:KCbgeOqd0aI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techienote?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Techienote?a=TnCSdoj8myY:KCbgeOqd0aI:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techienote?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Techienote/~4/TnCSdoj8myY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.techienote.com/2012/01/how-to-pxe-boot-oracle-vm-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.techienote.com/2012/01/how-to-pxe-boot-oracle-vm-server.html</feedburner:origLink></item>
	</channel>
</rss>

