- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Db problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 06:43 PM
08-12-2004 06:43 PM
Db problem
I want to add another listener w/o affecting the other listener that i have created.
How will I add a new listener?
thanks
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 07:58 PM
08-12-2004 07:58 PM
Re: Db problem
Listeners will already be there (oracle will tuned to this). just make sure listerner are up and running
$lsnrctl
lsnrctl> status
will show the listener status.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 08:30 PM
08-12-2004 08:30 PM
Re: Db problem
If you want to create another listener for another instance, go to $ORACLE_HOME/network/admin, open the tnsnames.ora and listener.ora and add what's necessary.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 08:31 PM
08-12-2004 08:31 PM
Re: Db problem
If you like you can add another listener into your $ORACLE_HOME/network/admin/listener.ora. This can then be started and stopped independently. e.g. lsnrctl start
Hope This Helps
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 09:14 PM
08-12-2004 09:14 PM
Re: Db problem
I 've already add the new instance in the listener.ora and configdured evrything in the tnsnames.ora. When i tried starting the default listener by the command - lsnrctl start, listener started properly, but when i tried to start the new listener for the new instance, it states that " Listener using listener name LISTENER has already been started"
how can i start 2 different listener in one server. By the way i'have added the new listener value in the listener.ora file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 09:23 PM
08-12-2004 09:23 PM
Re: Db problem
In tnsnames.ora:
(ADDRESS=(PROTOCOL=tcp)(HOST=
(CONNECT_DATA=(SID=
)
(ADDRESS=(PROTOCOL=tcp)(HOST=
(CONNECT_DATA=(SID=
)
In listener.ora:
(ADDRESS_LIST =
(ADDRESS= (PROTOCOL= IPC)(KEY=
(ADDRESS= (PROTOCOL= TCP)(Host= hp440)(Port= 1531))
)
SID_LIST_
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME= hp440)
(ORACLE_HOME= /.../product/805) -- My RDBMS is 8.0.5
(SID_NAME =
)
(SID_DESC =
(SID_NAME = extproc)
(ORACLE_HOME = /.../product/805)
(PROGRAM = extproc)
)
(SID_DESC =
(ORACLE_HOME= /disc2/app/oracle/product/805)
(SID_NAME =
)
)
STARTUP_WAIT_TIME_
CONNECT_TIMEOUT_
TRACE_LEVEL_
LOG_DIRECTORY_
LOG_FILE_
TRACE_DIRECTORY_
TRACE_FILE_
Hope this'll help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 09:39 PM
08-12-2004 09:39 PM
Re: Db problem
When you added the new listener value, did you put it as a separate listener or as another SID in the default listener section. See the following listener.ora example for adding a new listener call newdb:
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = db01))
(ADDRESS = (PROTOCOL = IPC)(KEY = db02))
(ADDRESS = (PROTOCOL = IPC)(KEY = db03))
(ADDRESS = (PROTOCOL = IPC)(KEY = db04))
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
(ADDRESS = (PROTOCOL = TCP)(HOST = ????)(PORT = 1222))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /oracle/product/8.1.7)
(PROGRAM = extproc)
)
(SID_DESC =
(SID_NAME = ????)
(ORACLE_HOME = /oracle/product/8.1.7)
)
)
NEWDB =
(ADDRESS_LIST =
(ADDRESS=
(PROTOCOL=ipc)
(KEY=????) )
(ADDRESS=
(HOST = ????)
(PROTOCOL = TCP)
(PORT = 1234)
)
)
The new listener can then be started separately using lsnrctl start newdb
N.B. Ensure that your new listener is using a different port number.
Hope This Helps
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 10:22 PM
08-12-2004 10:22 PM
Re: Db problem
Let us know how you get on with this.
Regards
Michael