<?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: Installing APEX 4.0 and 3.2 on Oracle 10gR2 on Mac OS X Leopard (Intel)</title>
	<atom:link href="http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/</link>
	<description>News and views from Pythian DBAs</description>
	<lastBuildDate>Fri, 10 Feb 2012 13:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Alex Gorbachev</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-466981</link>
		<dc:creator>Alex Gorbachev</dc:creator>
		<pubDate>Mon, 18 Oct 2010 19:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-466981</guid>
		<description>Paul, if you can clarify exactly what do you mean by &quot;http://localhost:8080/apex does not work&quot; then it might be easier to help. Does anything bind to port 8080?</description>
		<content:encoded><![CDATA[<p>Paul, if you can clarify exactly what do you mean by &#8220;http://localhost:8080/apex does not work&#8221; then it might be easier to help. Does anything bind to port 8080?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-466365</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 17 Oct 2010 17:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-466365</guid>
		<description>Everything installed fine but http://localhost:8080/apex does not work and I followed the instructions to the letter without any errors?

Can anyone shed any light on this?</description>
		<content:encoded><![CDATA[<p>Everything installed fine but <a href="http://localhost:8080/apex" rel="nofollow">http://localhost:8080/apex</a> does not work and I followed the instructions to the letter without any errors?</p>
<p>Can anyone shed any light on this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nock</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-449693</link>
		<dc:creator>nock</dc:creator>
		<pubDate>Thu, 05 Aug 2010 06:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-449693</guid>
		<description>Alex thank you for your post.
As I encountered a number of issues I have some comments.

STEP 2.

I also created an APEX tablespace but I initially created it with only barely enough space of 200MB.
In addition this install created a lot of pressure on SYSTEM and SYSAUX table spaces:
	So to do this properly before you start:

	SELECT DFS.TABLESPACE_NAME
	, ddf.file_name
	, ROUND(SUM(DFS.BYTES)/1000000,3) FREE_MB
	, ddf.TOTAL_MB - ROUND(SUM(DFS.BYTES)/1000000,3) USED_MB
	, ddf.TOTAL_MB 
	FROM DBA_FREE_SPACE DFS, 
	(SELECT FILE_NAME, TABLESPACE_NAME,ROUND(SUM(BYTES)/1000000, 3) TOTAL_MB 
	FROM DBA_DATA_FILES GROUP BY FILE_NAME, TABLESPACE_NAME) DDF
	WHERE DFS.TABLESPACE_NAME = DDF.TABLESPACE_NAME
	GROUP BY DFS.TABLESPACE_NAME, ddf.file_name, ddf.TOTAL_MB, ddf.TOTAL_MB;

        You need at least 100MB of free space on SYSTEM and SYSAUX tables spaces. If you do not have enough then run the following replacing the file_name and the RESIZE TOTAL_MB.
        ALTER DATABASE DATAFILE &#039;&#039; RESIZE 650M;

You also need to create an APEX tablespace with a datafile of at least 250 MB (but I eventually took 350 MB) to hold the APEX schemas:
CREATE TABLESPACE APEX datafile ‘’
SIZE 350M
EXTENT MANAGEMENT LOCAL
SEGMENT SPACE MANAGEMENT AUTO;

STEP 6.


At this point everything can go pear shaped (it certainly did for me and a number of others) because when we are setting up the HTTP port for the Embedded PL/SQL Gateway (EPG), the procedure is supposed to write to tnsnames.ora and listener.ora but this did not happen for me (I cannot understand why but I did edit both those files manually in the database setup).

That meant I had to mess around with init.ora, tnsnames.ora and listener.ora to get the connect to http://localhost:8080/apex.
I decided to set up an ftp port as well to match some posts that had already done so (see http://www.liberidu.com/blog/?p=122 and http://forums.oracle.com/forums/thread.jspa?threadID=1106543&amp;tstart=0&amp;messageID=4464127). I used the command:

EXEC DBMS_XDB.SETFTPport(2100);

Then I tried to match the listener output of a successful install and get something like the following with the command lsnrctl status:
When I eventually got it right the listener output looked like:

LSNRCTL for MacOS X Server: Version 10.2.0.4.0 - Production on 05-AUG-2010 07:47:20

Copyright (c) 1991, 2007, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for MacOS X Server: Version 10.2.0.4.0 - Production
Start Date                04-AUG-2010 20:01:47
Uptime                    0 days 11 hr. 45 min. 32 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /Users/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File         /Users/oracle/oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=2100))(Presentation=FTP)(Session=RAW))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
Services Summary...
Service &quot;PLSExtProc&quot; has 1 instance(s).
  Instance &quot;PLSExtProc&quot;, status UNKNOWN, has 1 handler(s) for this service...
Service &quot;orcl&quot; has 2 instance(s).
  Instance &quot;orcl&quot;, status UNKNOWN, has 1 handler(s) for this service...
  Instance &quot;orcl&quot;, status READY, has 1 handler(s) for this service...
Service &quot;orclXDB&quot; has 1 instance(s).
  Instance &quot;orcl&quot;, status READY, has 1 handler(s) for this service...
Service &quot;orcl_XPT&quot; has 1 instance(s).
  Instance &quot;orcl&quot;, status READY, has 1 handler(s) for this service...
The command completed successfully

Note that under &quot;Listening Endpoints Summary…&quot; we have three listeners: one for HTTP, one for FTP and the last one for the database.
Note also that we have a Service &quot;orcl&quot; where &quot;orcl&quot; is the SID of the Oracle database.
Finally we have a Service called orclXBD which is the EPG HTTP server and we have a Service orcl_XPT (which I assume is the FTP server).

To get there I had to make the following adjustments to listener.ora (shown in full - but I add all the &quot;LISTENER =&quot; details manually).
Note that I had to specify three protocols-hosts-ports, one each for HTTP, FTP and the database



# listener.ora Network Configuration File: /Users/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora
# Generated by Oracle configuration tools.

SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = /Users/oracle/oracle/product/10.2.0/db_1)
      (PROGRAM = extproc)
    )
    (SID_DESC =
      (SID_NAME = orcl)
      (ORACLE_HOME = /Users/oracle/oracle/product/10.2.0/db_1)
    )
  )

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION=
       (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=8080))(Presentation=HTTP)(Session=RAW)
    )
    (DESCRIPTION=
       (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=2100))(Presentation=FTP)(Session=RAW)
    )
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    )
  )

                                                                                   
~                                                                                     
&quot;listener.ora&quot; 29L, 803C


and I had to add the following lines to init.ora to define the HTTP service as orclXDB (i.e. XDB) and enable the local_listener (which I named MY_LISTENER) for multiple ports to be decoded:

dispatchers=&quot;(PROTOCOL=TCP)(SERVICE=orclXDB)&quot;
local_listener=MY_LISTENER


and add the following MY_LISTENER details to pint to ports ion tnsnames.ora 

MY_LISTENER =
    (DESCRIPTION=
      (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=8080))(Presentation=HTTP)(Session=RAW)
      (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=2100))(Presentation=FTP)(Session=RAW)
       (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    )

The final blocking factor was that the browser got so used to failing on http://localhost:8080/apex that it failed (using its cache) even when things were correct.
It was therefore better to use Finder and Go=&gt;Connect to Server to test this link.</description>
		<content:encoded><![CDATA[<p>Alex thank you for your post.<br />
As I encountered a number of issues I have some comments.</p>
<p>STEP 2.</p>
<p>I also created an APEX tablespace but I initially created it with only barely enough space of 200MB.<br />
In addition this install created a lot of pressure on SYSTEM and SYSAUX table spaces:<br />
	So to do this properly before you start:</p>
<p>	SELECT DFS.TABLESPACE_NAME<br />
	, ddf.file_name<br />
	, ROUND(SUM(DFS.BYTES)/1000000,3) FREE_MB<br />
	, ddf.TOTAL_MB &#8211; ROUND(SUM(DFS.BYTES)/1000000,3) USED_MB<br />
	, ddf.TOTAL_MB<br />
	FROM DBA_FREE_SPACE DFS,<br />
	(SELECT FILE_NAME, TABLESPACE_NAME,ROUND(SUM(BYTES)/1000000, 3) TOTAL_MB<br />
	FROM DBA_DATA_FILES GROUP BY FILE_NAME, TABLESPACE_NAME) DDF<br />
	WHERE DFS.TABLESPACE_NAME = DDF.TABLESPACE_NAME<br />
	GROUP BY DFS.TABLESPACE_NAME, ddf.file_name, ddf.TOTAL_MB, ddf.TOTAL_MB;</p>
<p>        You need at least 100MB of free space on SYSTEM and SYSAUX tables spaces. If you do not have enough then run the following replacing the file_name and the RESIZE TOTAL_MB.<br />
        ALTER DATABASE DATAFILE &#8221; RESIZE 650M;</p>
<p>You also need to create an APEX tablespace with a datafile of at least 250 MB (but I eventually took 350 MB) to hold the APEX schemas:<br />
CREATE TABLESPACE APEX datafile ‘’<br />
SIZE 350M<br />
EXTENT MANAGEMENT LOCAL<br />
SEGMENT SPACE MANAGEMENT AUTO;</p>
<p>STEP 6.</p>
<p>At this point everything can go pear shaped (it certainly did for me and a number of others) because when we are setting up the HTTP port for the Embedded PL/SQL Gateway (EPG), the procedure is supposed to write to tnsnames.ora and listener.ora but this did not happen for me (I cannot understand why but I did edit both those files manually in the database setup).</p>
<p>That meant I had to mess around with init.ora, tnsnames.ora and listener.ora to get the connect to <a href="http://localhost:8080/apex" rel="nofollow">http://localhost:8080/apex</a>.<br />
I decided to set up an ftp port as well to match some posts that had already done so (see <a href="http://www.liberidu.com/blog/?p=122" rel="nofollow">http://www.liberidu.com/blog/?p=122</a> and <a href="http://forums.oracle.com/forums/thread.jspa?threadID=1106543&#038;tstart=0&#038;messageID=4464127)" rel="nofollow">http://forums.oracle.com/forums/thread.jspa?threadID=1106543&#038;tstart=0&#038;messageID=4464127)</a>. I used the command:</p>
<p>EXEC DBMS_XDB.SETFTPport(2100);</p>
<p>Then I tried to match the listener output of a successful install and get something like the following with the command lsnrctl status:<br />
When I eventually got it right the listener output looked like:</p>
<p>LSNRCTL for MacOS X Server: Version 10.2.0.4.0 &#8211; Production on 05-AUG-2010 07:47:20</p>
<p>Copyright (c) 1991, 2007, Oracle.  All rights reserved.</p>
<p>Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))<br />
STATUS of the LISTENER<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Alias                     LISTENER<br />
Version                   TNSLSNR for MacOS X Server: Version 10.2.0.4.0 &#8211; Production<br />
Start Date                04-AUG-2010 20:01:47<br />
Uptime                    0 days 11 hr. 45 min. 32 sec<br />
Trace Level               off<br />
Security                  ON: Local OS Authentication<br />
SNMP                      OFF<br />
Listener Parameter File   /Users/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora<br />
Listener Log File         /Users/oracle/oracle/product/10.2.0/db_1/network/log/listener.log<br />
Listening Endpoints Summary&#8230;<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=HTTP)(Session=RAW))<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=2100))(Presentation=FTP)(Session=RAW))<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))<br />
Services Summary&#8230;<br />
Service &#8220;PLSExtProc&#8221; has 1 instance(s).<br />
  Instance &#8220;PLSExtProc&#8221;, status UNKNOWN, has 1 handler(s) for this service&#8230;<br />
Service &#8220;orcl&#8221; has 2 instance(s).<br />
  Instance &#8220;orcl&#8221;, status UNKNOWN, has 1 handler(s) for this service&#8230;<br />
  Instance &#8220;orcl&#8221;, status READY, has 1 handler(s) for this service&#8230;<br />
Service &#8220;orclXDB&#8221; has 1 instance(s).<br />
  Instance &#8220;orcl&#8221;, status READY, has 1 handler(s) for this service&#8230;<br />
Service &#8220;orcl_XPT&#8221; has 1 instance(s).<br />
  Instance &#8220;orcl&#8221;, status READY, has 1 handler(s) for this service&#8230;<br />
The command completed successfully</p>
<p>Note that under &#8220;Listening Endpoints Summary…&#8221; we have three listeners: one for HTTP, one for FTP and the last one for the database.<br />
Note also that we have a Service &#8220;orcl&#8221; where &#8220;orcl&#8221; is the SID of the Oracle database.<br />
Finally we have a Service called orclXBD which is the EPG HTTP server and we have a Service orcl_XPT (which I assume is the FTP server).</p>
<p>To get there I had to make the following adjustments to listener.ora (shown in full &#8211; but I add all the &#8220;LISTENER =&#8221; details manually).<br />
Note that I had to specify three protocols-hosts-ports, one each for HTTP, FTP and the database</p>
<p># listener.ora Network Configuration File: /Users/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora<br />
# Generated by Oracle configuration tools.</p>
<p>SID_LIST_LISTENER =<br />
  (SID_LIST =<br />
    (SID_DESC =<br />
      (SID_NAME = PLSExtProc)<br />
      (ORACLE_HOME = /Users/oracle/oracle/product/10.2.0/db_1)<br />
      (PROGRAM = extproc)<br />
    )<br />
    (SID_DESC =<br />
      (SID_NAME = orcl)<br />
      (ORACLE_HOME = /Users/oracle/oracle/product/10.2.0/db_1)<br />
    )<br />
  )</p>
<p>LISTENER =<br />
  (DESCRIPTION_LIST =<br />
    (DESCRIPTION=<br />
       (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=8080))(Presentation=HTTP)(Session=RAW)<br />
    )<br />
    (DESCRIPTION=<br />
       (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=2100))(Presentation=FTP)(Session=RAW)<br />
    )<br />
    (DESCRIPTION =<br />
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))<br />
    )<br />
  )</p>
<p>~<br />
&#8220;listener.ora&#8221; 29L, 803C</p>
<p>and I had to add the following lines to init.ora to define the HTTP service as orclXDB (i.e. XDB) and enable the local_listener (which I named MY_LISTENER) for multiple ports to be decoded:</p>
<p>dispatchers=&#8221;(PROTOCOL=TCP)(SERVICE=orclXDB)&#8221;<br />
local_listener=MY_LISTENER</p>
<p>and add the following MY_LISTENER details to pint to ports ion tnsnames.ora </p>
<p>MY_LISTENER =<br />
    (DESCRIPTION=<br />
      (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=8080))(Presentation=HTTP)(Session=RAW)<br />
      (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=2100))(Presentation=FTP)(Session=RAW)<br />
       (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))<br />
    )</p>
<p>The final blocking factor was that the browser got so used to failing on <a href="http://localhost:8080/apex" rel="nofollow">http://localhost:8080/apex</a> that it failed (using its cache) even when things were correct.<br />
It was therefore better to use Finder and Go=&gt;Connect to Server to test this link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cristi</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-445663</link>
		<dc:creator>Cristi</dc:creator>
		<pubDate>Thu, 22 Jul 2010 07:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-445663</guid>
		<description>Good post!
Thanks</description>
		<content:encoded><![CDATA[<p>Good post!<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Gorbachev</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-437711</link>
		<dc:creator>Alex Gorbachev</dc:creator>
		<pubDate>Thu, 24 Jun 2010 13:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-437711</guid>
		<description>Thanks Peter - just updated the post to reflect this.

Since APEX Listener requires Tomcat, you would need to install that.</description>
		<content:encoded><![CDATA[<p>Thanks Peter &#8211; just updated the post to reflect this.</p>
<p>Since APEX Listener requires Tomcat, you would need to install that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter de Vaal</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-437669</link>
		<dc:creator>Peter de Vaal</dc:creator>
		<pubDate>Thu, 24 Jun 2010 08:01:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-437669</guid>
		<description>I just downloaded and installed APEX 4.0 on the 10.2.0.4 rdbms on my MacBookPro, following your instructions for APEX 3. It works without modifications!

An alternative for the embedded pl/sql gateway is now to install the apex listener application on a local servletcontainer, e.g. tomcat. I have not tried this yet on MacOS, but on Linux it works great.</description>
		<content:encoded><![CDATA[<p>I just downloaded and installed APEX 4.0 on the 10.2.0.4 rdbms on my MacBookPro, following your instructions for APEX 3. It works without modifications!</p>
<p>An alternative for the embedded pl/sql gateway is now to install the apex listener application on a local servletcontainer, e.g. tomcat. I have not tried this yet on MacOS, but on Linux it works great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: name</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-428037</link>
		<dc:creator>name</dc:creator>
		<pubDate>Tue, 04 May 2010 16:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-428037</guid>
		<description>Nice,</description>
		<content:encoded><![CDATA[<p>Nice,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jojo</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-416669</link>
		<dc:creator>Jojo</dc:creator>
		<pubDate>Wed, 24 Mar 2010 06:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-416669</guid>
		<description>Hi Cory,

I tried this but didn&#039;t work for me. Am I missing something?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Cory,</p>
<p>I tried this but didn&#8217;t work for me. Am I missing something?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jojo</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-416667</link>
		<dc:creator>Jojo</dc:creator>
		<pubDate>Wed, 24 Mar 2010 06:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-416667</guid>
		<description>Hi Hari,

have you found any solution to above problem?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Hari,</p>
<p>have you found any solution to above problem?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jojo</title>
		<link>http://www.pythian.com/news/2014/installing-apex-on-oracle-10gr2-on-mac-os-x-leopard-intel/#comment-416665</link>
		<dc:creator>Jojo</dc:creator>
		<pubDate>Wed, 24 Mar 2010 06:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/news/?p=2014#comment-416665</guid>
		<description>Hi,

Service was not added to listener..

LSNRCTL for MacOS X Server: Version 10.2.0.4.0 - Production on 23-MAR-2010 22:43:01

Copyright (c) 1991, 2007, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for MacOS X Server: Version 10.2.0.4.0 - Production
Start Date                23-MAR-2010 22:27:41
Uptime                    0 days 0 hr. 15 min. 20 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /Users/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File         /Users/oracle/oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
Services Summary...
Service &quot;PLSExtProc&quot; has 1 instance(s).
  Instance &quot;PLSExtProc&quot;, status UNKNOWN, has 1 handler(s) for this service...
Service &quot;orcl&quot; has 1 instance(s).
  Instance &quot;orcl&quot;, status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Service was not added to listener..</p>
<p>LSNRCTL for MacOS X Server: Version 10.2.0.4.0 &#8211; Production on 23-MAR-2010 22:43:01</p>
<p>Copyright (c) 1991, 2007, Oracle.  All rights reserved.</p>
<p>Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))<br />
STATUS of the LISTENER<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Alias                     LISTENER<br />
Version                   TNSLSNR for MacOS X Server: Version 10.2.0.4.0 &#8211; Production<br />
Start Date                23-MAR-2010 22:27:41<br />
Uptime                    0 days 0 hr. 15 min. 20 sec<br />
Trace Level               off<br />
Security                  ON: Local OS Authentication<br />
SNMP                      OFF<br />
Listener Parameter File   /Users/oracle/oracle/product/10.2.0/db_1/network/admin/listener.ora<br />
Listener Log File         /Users/oracle/oracle/product/10.2.0/db_1/network/log/listener.log<br />
Listening Endpoints Summary&#8230;<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))<br />
Services Summary&#8230;<br />
Service &#8220;PLSExtProc&#8221; has 1 instance(s).<br />
  Instance &#8220;PLSExtProc&#8221;, status UNKNOWN, has 1 handler(s) for this service&#8230;<br />
Service &#8220;orcl&#8221; has 1 instance(s).<br />
  Instance &#8220;orcl&#8221;, status UNKNOWN, has 1 handler(s) for this service&#8230;<br />
The command completed successfully</p>
]]></content:encoded>
	</item>
</channel>
</rss>

