<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Reconfigure Oracle EM</title>
	<atom:link href="http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mclaughlinsoftware.com</link>
	<description>Michael McLaughlin's Technical Blog</description>
	<lastBuildDate>Fri, 12 Mar 2010 07:01:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: maclochlainn</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-15237</link>
		<dc:creator>maclochlainn</dc:creator>
		<pubDate>Fri, 22 Jan 2010 16:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-15237</guid>
		<description>Marcela, What&#039;s the exact error message that you get?</description>
		<content:encoded><![CDATA[<p>Marcela, What&#8217;s the exact error message that you get?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dto</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-15231</link>
		<dc:creator>dto</dc:creator>
		<pubDate>Fri, 22 Jan 2010 15:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-15231</guid>
		<description>Thank you, thank you, thank you.</description>
		<content:encoded><![CDATA[<p>Thank you, thank you, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saif</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-15039</link>
		<dc:creator>saif</dc:creator>
		<pubDate>Sun, 17 Jan 2010 05:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-15039</guid>
		<description>Thanks you too much sir its really help full, long live DBA</description>
		<content:encoded><![CDATA[<p>Thanks you too much sir its really help full, long live DBA</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcela</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-14766</link>
		<dc:creator>Marcela</dc:creator>
		<pubDate>Sun, 10 Jan 2010 23:36:32 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-14766</guid>
		<description>I have a problem about reconfiguration of ports
When I execute emca -config dbcontrol db, the password of SYS is accepted.
When I execute emca -reconfig ports -...... the password of SYS (the same as before of course) is rejected.
Could you help me with this issue? I&#039;m installing Oracle 11g on Windows 7 (32bit).
Thanks a lot.</description>
		<content:encoded><![CDATA[<p>I have a problem about reconfiguration of ports<br />
When I execute emca -config dbcontrol db, the password of SYS is accepted.<br />
When I execute emca -reconfig ports -&#8230;&#8230; the password of SYS (the same as before of course) is rejected.<br />
Could you help me with this issue? I&#8217;m installing Oracle 11g on Windows 7 (32bit).<br />
Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yapkang</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-14618</link>
		<dc:creator>yapkang</dc:creator>
		<pubDate>Fri, 08 Jan 2010 03:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-14618</guid>
		<description>The public synonym for &lt;code&gt;SYSMAN&lt;/code&gt; objects will not be dropped although the user is drooped by using the command:

&lt;pre lang=&quot;SQL&quot;&gt;
DROP USER sysman CASCADE;
&lt;/pre&gt;

After user is dropped, all the public synonyms that tie to it hv to be dropped manually.

&lt;pre lang=&quot;SQL&quot;&gt;
select &#039;drop public synonym &#039; &#124;&#124; a.object_name &#124;&#124; &#039;;&#039;
from all_objects a
where a.object_type=&#039;SYNONYM&#039;
and a.owner = &#039;PUBLIC&#039;
and a.status = &#039;INVALID&#039;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>The public synonym for <code>SYSMAN</code> objects will not be dropped although the user is drooped by using the command:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">DROP</span> USER sysman CASCADE;</pre></div></div>

<p>After user is dropped, all the public synonyms that tie to it hv to be dropped manually.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #ff0000;">'drop public synonym '</span> <span style="color: #66cc66;">||</span> a<span style="color: #66cc66;">.</span>object_name <span style="color: #66cc66;">||</span> <span style="color: #ff0000;">';'</span>
<span style="color: #993333; font-weight: bold;">FROM</span> all_objects a
<span style="color: #993333; font-weight: bold;">WHERE</span> a<span style="color: #66cc66;">.</span>object_type<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'SYNONYM'</span>
<span style="color: #993333; font-weight: bold;">AND</span> a<span style="color: #66cc66;">.</span>owner <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'PUBLIC'</span>
<span style="color: #993333; font-weight: bold;">AND</span> a<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">STATUS</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'INVALID'</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Patricia</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-10504</link>
		<dc:creator>Patricia</dc:creator>
		<pubDate>Wed, 21 Oct 2009 14:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-10504</guid>
		<description>thanks for your help!
but i have another error after the reconfiguration of em: Unable to determine local host from URL REPOSITORY_URL=http://ORACLE-LAPTOP:%EM_UPLOAD_PORT%/em/upload/
could you help me again please!!!!!!</description>
		<content:encoded><![CDATA[<p>thanks for your help!<br />
but i have another error after the reconfiguration of em: Unable to determine local host from URL REPOSITORY_URL=http://ORACLE-LAPTOP:%EM_UPLOAD_PORT%/em/upload/<br />
could you help me again please!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerd</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-9770</link>
		<dc:creator>Gerd</dc:creator>
		<pubDate>Mon, 28 Sep 2009 07:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-9770</guid>
		<description>Thanks !!!
I didn&#039;t see see the forest for the trees.
ETC/host is the solution for my challenges with the console.
This article is short and to the point 
great</description>
		<content:encoded><![CDATA[<p>Thanks !!!<br />
I didn&#8217;t see see the forest for the trees.<br />
ETC/host is the solution for my challenges with the console.<br />
This article is short and to the point<br />
great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakesh Vyas</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-9325</link>
		<dc:creator>Rakesh Vyas</dc:creator>
		<pubDate>Tue, 22 Sep 2009 07:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-9325</guid>
		<description>This was a neat and clear help. thanks a lot.</description>
		<content:encoded><![CDATA[<p>This was a neat and clear help. thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maruti Bhanot</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-7996</link>
		<dc:creator>Maruti Bhanot</dc:creator>
		<pubDate>Fri, 14 Aug 2009 10:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-7996</guid>
		<description>Hello,

I posted a while ago about EM on Windows enviroment which wasn&#039;t working for me, I switched to CentOS 5.3 running my R12 and the following steps worked for me:

Configure OEM Database Control on R12

Source enviroment the of the database tier. Env. file location is in my case /ERP/db/tech_st/11.1.0/

&lt;pre lang=&quot;BASH&quot;&gt;
[oracle@localhost 11.1.0]$ . VIS_localhost.env

[oracle@localhost bin]$ ./emca -config dbcontrol db -repos recreate -SID VIS -PORT 1521 -DBCONTROL_HTTP_PORT 5500

STARTED EMCA at Aug 13, 2009 1:57:51 PM
EM Configuration Assistant, Version 11.1.0.7.0 Production
Copyright (c) 2003, 2005, Oracle.  All rights reserved.

Enter the following information:
Password for SYSMAN user: Email address for notifications (optional): 
Outgoing Mail (SMTP) server for notifications (optional): 
-----------------------------------------------------------------

You have specified the following settings

Database ORACLE_HOME ................ /ERP/db/tech_st/11.1.0

Local hostname ................ localhost.localdomain
Listener port number ................ 1521
Database SID ................ VIS
Email address for notifications ............... 
Outgoing Mail (SMTP) server for notifications ............... 
-----------------------------------------------------------------
Do you wish to continue? [yes(Y)/no(N)]: Y
Aug 13, 2009 2:01:03 PM oracle.sysman.emcp.EMConfig perform
INFO: This operation is being logged at /ERP/db/tech_st/11.1.0/cfgtoollogs/emca/VIS/emca_2009_08_13_13_57_51.log.
Aug 13, 2009 2:01:14 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Dropping the EM repository (this may take a while) ...
Aug 13, 2009 2:18:41 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully dropped
Aug 13, 2009 2:18:42 PM oracle.sysman.emcp.EMReposConfig createRepository
INFO: Creating the EM repository (this may take a while) ...
Aug 13, 2009 2:51:16 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully created
Aug 13, 2009 2:51:48 PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
INFO: Uploading configuration data to EM repository (this may take a while) ...
Aug 13, 2009 2:55:52 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Uploaded configuration data successfully
Aug 13, 2009 2:56:11 PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
INFO: Software library configured successfully.
Aug 13, 2009 2:56:11 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
INFO: Deploying Provisioning archives ...
Aug 13, 2009 2:56:54 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
INFO: Provisioning archives deployed successfully.
Aug 13, 2009 2:56:54 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
INFO: Securing Database Control (this may take a while) ...
Aug 13, 2009 2:57:43 PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
INFO: Database Control secured successfully.
Aug 13, 2009 2:57:43 PM oracle.sysman.emcp.util.DBControlUtil startOMS
INFO: Starting Database Control (this may take a while) ...
Aug 13, 2009 3:02:16 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
INFO: Database Control started successfully
Aug 13, 2009 3:02:17 PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
INFO: &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; The Database Control URL is https://localhost.localdomain:5500/em &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;
Aug 13, 2009 3:02:53 PM oracle.sysman.emcp.EMDBPostConfig invoke
WARNING: 
************************  WARNING  ************************

Management Repository has been placed in secure mode wherein Enterprise Manager data will be encrypted.  The encryption key has been placed in the file: /ERP/db/tech_st/11.1.0/localhost.localdomain_VIS/sysman/config/emkey.ora.   Please ensure this file is backed up as the encrypted data will become unusable if this file is lost. 

***********************************************************
Enterprise Manager configuration completed successfully
FINISHED EMCA at Aug 13, 2009 3:02:53 PM
&lt;/pre&gt;

Afterwards, open a browser and enter:

&lt;pre lang=&quot;php&quot;&gt;
https://&lt;localhost&gt;.&lt;localdomain&gt;:5500/em/console/
&lt;/pre&gt;

Accept te certificate and there you go....

I got the main info of this site:

http://orafin.blogspot.com/2008/09/enable-database-enterprise-manager.html

So it is working now fine for me, perhaps on a Windows enviroment if you use de Windows commands it should perhaps work, not tried still...

Regards,

Maruti</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I posted a while ago about EM on Windows enviroment which wasn&#8217;t working for me, I switched to CentOS 5.3 running my R12 and the following steps worked for me:</p>
<p>Configure OEM Database Control on R12</p>
<p>Source enviroment the of the database tier. Env. file location is in my case /ERP/db/tech_st/11.1.0/</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>oracle<span style="color: #000000; font-weight: bold;">@</span>localhost 11.1.0<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ . VIS_localhost.env
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#91;</span>oracle<span style="color: #000000; font-weight: bold;">@</span>localhost bin<span style="color: #7a0874; font-weight: bold;">&#93;</span>$ .<span style="color: #000000; font-weight: bold;">/</span>emca <span style="color: #660033;">-config</span> dbcontrol db <span style="color: #660033;">-repos</span> recreate <span style="color: #660033;">-SID</span> VIS <span style="color: #660033;">-PORT</span> <span style="color: #000000;">1521</span> -DBCONTROL_HTTP_PORT <span style="color: #000000;">5500</span>
&nbsp;
STARTED EMCA at Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">1</span>:<span style="color: #000000;">57</span>:<span style="color: #000000;">51</span> PM
EM Configuration Assistant, Version 11.1.0.7.0 Production
Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2003</span>, <span style="color: #000000;">2005</span>, Oracle.  All rights reserved.
&nbsp;
Enter the following information:
Password <span style="color: #000000; font-weight: bold;">for</span> SYSMAN user: Email address <span style="color: #000000; font-weight: bold;">for</span> notifications <span style="color: #7a0874; font-weight: bold;">&#40;</span>optional<span style="color: #7a0874; font-weight: bold;">&#41;</span>: 
Outgoing Mail <span style="color: #7a0874; font-weight: bold;">&#40;</span>SMTP<span style="color: #7a0874; font-weight: bold;">&#41;</span> server <span style="color: #000000; font-weight: bold;">for</span> notifications <span style="color: #7a0874; font-weight: bold;">&#40;</span>optional<span style="color: #7a0874; font-weight: bold;">&#41;</span>: 
<span style="color: #660033;">-----------------------------------------------------------------</span>
&nbsp;
You have specified the following settings
&nbsp;
Database ORACLE_HOME ................ <span style="color: #000000; font-weight: bold;">/</span>ERP<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>tech_st<span style="color: #000000; font-weight: bold;">/</span>11.1.0
&nbsp;
Local <span style="color: #c20cb9; font-weight: bold;">hostname</span> ................ localhost.localdomain
Listener port number ................ <span style="color: #000000;">1521</span>
Database SID ................ VIS
Email address <span style="color: #000000; font-weight: bold;">for</span> notifications ............... 
Outgoing Mail <span style="color: #7a0874; font-weight: bold;">&#40;</span>SMTP<span style="color: #7a0874; font-weight: bold;">&#41;</span> server <span style="color: #000000; font-weight: bold;">for</span> notifications ............... 
<span style="color: #660033;">-----------------------------------------------------------------</span>
Do you wish to <span style="color: #7a0874; font-weight: bold;">continue</span>? <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #c20cb9; font-weight: bold;">yes</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>Y<span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #000000; font-weight: bold;">/</span>no<span style="color: #7a0874; font-weight: bold;">&#40;</span>N<span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: Y
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:01:03 PM oracle.sysman.emcp.EMConfig perform
INFO: This operation is being logged at <span style="color: #000000; font-weight: bold;">/</span>ERP<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>tech_st<span style="color: #000000; font-weight: bold;">/</span>11.1.0<span style="color: #000000; font-weight: bold;">/</span>cfgtoollogs<span style="color: #000000; font-weight: bold;">/</span>emca<span style="color: #000000; font-weight: bold;">/</span>VIS<span style="color: #000000; font-weight: bold;">/</span>emca_2009_08_13_13_57_51.log.
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:01:<span style="color: #000000;">14</span> PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Dropping the EM repository <span style="color: #7a0874; font-weight: bold;">&#40;</span>this may take a <span style="color: #000000; font-weight: bold;">while</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> ...
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">18</span>:<span style="color: #000000;">41</span> PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully dropped
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">18</span>:<span style="color: #000000;">42</span> PM oracle.sysman.emcp.EMReposConfig createRepository
INFO: Creating the EM repository <span style="color: #7a0874; font-weight: bold;">&#40;</span>this may take a <span style="color: #000000; font-weight: bold;">while</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> ...
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">51</span>:<span style="color: #000000;">16</span> PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully created
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">51</span>:<span style="color: #000000;">48</span> PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
INFO: Uploading configuration data to EM repository <span style="color: #7a0874; font-weight: bold;">&#40;</span>this may take a <span style="color: #000000; font-weight: bold;">while</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> ...
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">55</span>:<span style="color: #000000;">52</span> PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Uploaded configuration data successfully
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">56</span>:<span style="color: #000000;">11</span> PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
INFO: Software library configured successfully.
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">56</span>:<span style="color: #000000;">11</span> PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
INFO: Deploying Provisioning archives ...
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">56</span>:<span style="color: #000000;">54</span> PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
INFO: Provisioning archives deployed successfully.
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">56</span>:<span style="color: #000000;">54</span> PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
INFO: Securing Database Control <span style="color: #7a0874; font-weight: bold;">&#40;</span>this may take a <span style="color: #000000; font-weight: bold;">while</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> ...
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">57</span>:<span style="color: #000000;">43</span> PM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
INFO: Database Control secured successfully.
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">2</span>:<span style="color: #000000;">57</span>:<span style="color: #000000;">43</span> PM oracle.sysman.emcp.util.DBControlUtil startOMS
INFO: Starting Database Control <span style="color: #7a0874; font-weight: bold;">&#40;</span>this may take a <span style="color: #000000; font-weight: bold;">while</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> ...
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">3</span>:02:<span style="color: #000000;">16</span> PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
INFO: Database Control started successfully
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">3</span>:02:<span style="color: #000000;">17</span> PM oracle.sysman.emcp.EMDBPostConfig performConfiguration
INFO: <span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt;<span style="color: #000000; font-weight: bold;">&amp;</span>gt; The Database Control URL is https:<span style="color: #000000; font-weight: bold;">//</span>localhost.localdomain:<span style="color: #000000;">5500</span><span style="color: #000000; font-weight: bold;">/</span>em <span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">&amp;</span>lt;
Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">3</span>:02:<span style="color: #000000;">53</span> PM oracle.sysman.emcp.EMDBPostConfig invoke
WARNING: 
<span style="color: #000000; font-weight: bold;">************************</span>  WARNING  <span style="color: #000000; font-weight: bold;">************************</span>
&nbsp;
Management Repository has been placed <span style="color: #000000; font-weight: bold;">in</span> secure mode wherein Enterprise Manager data will be encrypted.  The encryption key has been placed <span style="color: #000000; font-weight: bold;">in</span> the <span style="color: #c20cb9; font-weight: bold;">file</span>: <span style="color: #000000; font-weight: bold;">/</span>ERP<span style="color: #000000; font-weight: bold;">/</span>db<span style="color: #000000; font-weight: bold;">/</span>tech_st<span style="color: #000000; font-weight: bold;">/</span>11.1.0<span style="color: #000000; font-weight: bold;">/</span>localhost.localdomain_VIS<span style="color: #000000; font-weight: bold;">/</span>sysman<span style="color: #000000; font-weight: bold;">/</span>config<span style="color: #000000; font-weight: bold;">/</span>emkey.ora.   Please ensure this <span style="color: #c20cb9; font-weight: bold;">file</span> is backed up <span style="color: #c20cb9; font-weight: bold;">as</span> the encrypted data will become unusable <span style="color: #000000; font-weight: bold;">if</span> this <span style="color: #c20cb9; font-weight: bold;">file</span> is lost. 
&nbsp;
<span style="color: #000000; font-weight: bold;">***********************************************************</span>
Enterprise Manager configuration completed successfully
FINISHED EMCA at Aug <span style="color: #000000;">13</span>, <span style="color: #000000;">2009</span> <span style="color: #000000;">3</span>:02:<span style="color: #000000;">53</span> PM</pre></div></div>

<p>Afterwards, open a browser and enter:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">https<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//&lt;localhost&gt;.&lt;localdomain&gt;:5500/em/console/</span></pre></div></div>

<p>Accept te certificate and there you go&#8230;.</p>
<p>I got the main info of this site:</p>
<p><a href="http://orafin.blogspot.com/2008/09/enable-database-enterprise-manager.html" rel="nofollow">http://orafin.blogspot.com/2008/09/enable-database-enterprise-manager.html</a></p>
<p>So it is working now fine for me, perhaps on a Windows enviroment if you use de Windows commands it should perhaps work, not tried still&#8230;</p>
<p>Regards,</p>
<p>Maruti</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maclochlainn</title>
		<link>http://blog.mclaughlinsoftware.com/oracle-architecture-configuration/changing-windows-hostname-and-oracle-enterprise-manager/comment-page-1/#comment-6790</link>
		<dc:creator>maclochlainn</dc:creator>
		<pubDate>Fri, 10 Jul 2009 00:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://maclochlainn.wordpress.com/?page_id=84#comment-6790</guid>
		<description>Have you tried Firefox? What&#039;s your URL that;s failing?</description>
		<content:encoded><![CDATA[<p>Have you tried Firefox? What&#8217;s your URL that;s failing?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
