HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Dual host/domain names for multiple Oracle instanc...
Operating System - HP-UX
1833797
Members
4743
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
05-17-2002 01:21 PM
05-17-2002 01:21 PM
Dual host/domain names for multiple Oracle instances
Hi all,
I have a rp7400 server, HP-UX 11.11 installed. I have 2 completely different instances of Oracle Apps and Database, which I would like to have reside on the same server.
The problem is, they need to be setup in different domains, using a different hostname for each.
I have heard talk that it is possible to create an environment whereby the server can support using different hostname/domain name on the same machine.
Does anyone know if this is possible, and possibly info on setting up such an environment?
Thanks Much,
Mike
I have a rp7400 server, HP-UX 11.11 installed. I have 2 completely different instances of Oracle Apps and Database, which I would like to have reside on the same server.
The problem is, they need to be setup in different domains, using a different hostname for each.
I have heard talk that it is possible to create an environment whereby the server can support using different hostname/domain name on the same machine.
Does anyone know if this is possible, and possibly info on setting up such an environment?
Thanks Much,
Mike
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 03:35 PM
05-17-2002 03:35 PM
Re: Dual host/domain names for multiple Oracle instances
Definitely possible. Decide what IP addresses and names you want. Either use multiple NIC cards or multiple IP addresses on the same NIC card.
To use multiple IP addresses on the same NIC card, use names like lan0:1 and lan0:2. lan0:1 and lan0:2 would then be different IP addresses than the default lan0 (aka lan0:0). You can set this up manually with ifconfig or refer to the indexed interface names in /etc/rc.config.d/netconf.
Set up your IP addresses and names in /etc/hosts and DNS.
Use listener.ora to listen on a specific TCP/IP address for each Oracle instance instead of letting it default to any/all configured IP addresses.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 01:45 AM
05-20-2002 01:45 AM
Re: Dual host/domain names for multiple Oracle instances
hi,
Assume You are running two instance of oracle as follows:
prod01 - production people access this.
devel01 - development people access this.
In all the clients of production department
Put ip address of your server and name in
c:\windows\hosts file.
eg:-
192.123.100.30 prodserver
All you want to do is use tnsnames.ora files in the oracle client machines.
eg:-
prod = (DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=prodserver)(PORT=1565))
(CONNECT_DATA=(SID=prod01))
Same way in the development department put the
ip address and server name as develserver in
c:\windows\hosts
192.0.10.10 develserver
In the tnsnames.ora file on the clients of deveopment department.
devel = (DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=develserver)(PORT=1565))
(CONNECT_DATA=(SID=devel01))
Now people from deveopment will connect to devel01 instance.
regards,
U.SivaKumar
Assume You are running two instance of oracle as follows:
prod01 - production people access this.
devel01 - development people access this.
In all the clients of production department
Put ip address of your server and name in
c:\windows\hosts file.
eg:-
192.123.100.30 prodserver
All you want to do is use tnsnames.ora files in the oracle client machines.
eg:-
prod = (DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=prodserver)(PORT=1565))
(CONNECT_DATA=(SID=prod01))
Same way in the development department put the
ip address and server name as develserver in
c:\windows\hosts
192.0.10.10 develserver
In the tnsnames.ora file on the clients of deveopment department.
devel = (DESCRIPTION=
(ADDRESS=(PROTOCOL=tcp)(HOST=develserver)(PORT=1565))
(CONNECT_DATA=(SID=devel01))
Now people from deveopment will connect to devel01 instance.
regards,
U.SivaKumar
Innovations are made when conventions are broken
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2002 12:33 AM
05-21-2002 12:33 AM
Re: Dual host/domain names for multiple Oracle instances
this is a bit special
I suppose you have 2 domain lets call them aps.oracle and db.oracle, you have one server and one lancard with 1 IP , there are several thing you could do , either like proposed you keep everything completely separated by adding trough the ifconfig lanx:x procedure several subinterfaces and get each one of them a separate name ..
or you could simply give the same lancard different aliasses with fully qualified names and run 2 DNS servers which hold the same IP but a different name for this machine , you could even have the same name with a different domain that way , in the /etc/host file of the oracle machine you would have something like
ip server server.aps.oracl server.db.oracle
so you see lots of possibilities , it's up to you to choose how to do this , for more clarity I personally would advise multiple IP with different naming , that just makes averything clearer for maintenance
I suppose you have 2 domain lets call them aps.oracle and db.oracle, you have one server and one lancard with 1 IP , there are several thing you could do , either like proposed you keep everything completely separated by adding trough the ifconfig lanx:x procedure several subinterfaces and get each one of them a separate name ..
or you could simply give the same lancard different aliasses with fully qualified names and run 2 DNS servers which hold the same IP but a different name for this machine , you could even have the same name with a different domain that way , in the /etc/host file of the oracle machine you would have something like
ip server server.aps.oracl server.db.oracle
so you see lots of possibilities , it's up to you to choose how to do this , for more clarity I personally would advise multiple IP with different naming , that just makes averything clearer for maintenance
...knowing one ignores a greath many things is the first step to wisdom...
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP