HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle problems
Operating System - HP-UX
1834130
Members
2896
Online
110064
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
04-08-2002 04:47 PM
04-08-2002 04:47 PM
Oracle problems
Hello there.
After installing an oracle on HP-UX 11.00 platform running in a 64B mode, starting svrmgrl to create a db i am getting a such error:
$ svrmgrl
Oracle Server Manager Release 3.1.7.0.0 - Production
Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
sh: /oracle/bin/oracle: Execute permission denied.
sh: /oracle/bin/oracle: Execute permission denied.
ORA-12547: TNS:lost contact
SVRMGR>
Trying to start oracle by hands, i am getting:
$ /oracle/bin/oracle
/oracle/bin/oracle: Exec format error. Binary file not executable.
while
> file /oracle/bin/oracle
/oracle/bin/oracle: ELF-64 executable object file - PA-RISC 2.0 (LP64)
and kernel is
> file /stand/vmunix
/stand/vmunix: ELF-64 executable object file - PA-RISC 2.0 (LP64)
What is wrong and witch steps i have to do to start an oracle?
After installing an oracle on HP-UX 11.00 platform running in a 64B mode, starting svrmgrl to create a db i am getting a such error:
$ svrmgrl
Oracle Server Manager Release 3.1.7.0.0 - Production
Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
sh: /oracle/bin/oracle: Execute permission denied.
sh: /oracle/bin/oracle: Execute permission denied.
ORA-12547: TNS:lost contact
SVRMGR>
Trying to start oracle by hands, i am getting:
$ /oracle/bin/oracle
/oracle/bin/oracle: Exec format error. Binary file not executable.
while
> file /oracle/bin/oracle
/oracle/bin/oracle: ELF-64 executable object file - PA-RISC 2.0 (LP64)
and kernel is
> file /stand/vmunix
/stand/vmunix: ELF-64 executable object file - PA-RISC 2.0 (LP64)
What is wrong and witch steps i have to do to start an oracle?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 05:08 PM
04-08-2002 05:08 PM
Re: Oracle problems
Hi,
Did you relink Oracle by running root.sh at the end of the installation?
Hope this helps. Regards.
Steven Sim Kok Leong
Did you relink Oracle by running root.sh at the end of the installation?
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 05:36 PM
04-08-2002 05:36 PM
Re: Oracle problems
Hi,
This error normally comes after fresh install due to lot of reasons. A possible try as described in the Oracle metalink support:
Install HP-UX linker tools cumulative patch PHSS_22514 or later.
After you install this patch, all of the Oracle executables need to be relinked:
For Oracle8i:
1) Change to the "bin" directory:
% cd $ORACLE_HOME/bin
2) Use the "relink" utility with the "all" argument:
% relink all
3) Use the "relink" utility with the "utilities" argument:
% relink utilities
4) Change to the "sqlplus/lib" directory:
% cd $ORACLE_HOME/sqlplus/lib
5) Use the "make" command to relink "sqlplus":
% make -f ins_sqlplus.mk install
For Oracle8:
1) Change to the "rdbms/lib" directory:
% cd $ORACLE_HOME/rdbms/lib
2) Use the "make" command to relink the RDBMS:
% make -f ins_rdbms.mk install
3) Change to the "sqlplus/lib" directory:
% cd $ORACLE_HOME/sqlplus/lib
4) Use the "make" command to relink sqlplus:
% make -f ins_sqlplus.mk install
5) Change to the "network/lib" directory:
% cd $ORACLE_HOME/network/lib
6) Use the "make" command to relink the Intelligent Agent:
% make -f ins_agent.mk install
7) Use the "make" command to relink Net8:
% make -f ins_network.mk install
HTH,
Shiju
This error normally comes after fresh install due to lot of reasons. A possible try as described in the Oracle metalink support:
Install HP-UX linker tools cumulative patch PHSS_22514 or later.
After you install this patch, all of the Oracle executables need to be relinked:
For Oracle8i:
1) Change to the "bin" directory:
% cd $ORACLE_HOME/bin
2) Use the "relink" utility with the "all" argument:
% relink all
3) Use the "relink" utility with the "utilities" argument:
% relink utilities
4) Change to the "sqlplus/lib" directory:
% cd $ORACLE_HOME/sqlplus/lib
5) Use the "make" command to relink "sqlplus":
% make -f ins_sqlplus.mk install
For Oracle8:
1) Change to the "rdbms/lib" directory:
% cd $ORACLE_HOME/rdbms/lib
2) Use the "make" command to relink the RDBMS:
% make -f ins_rdbms.mk install
3) Change to the "sqlplus/lib" directory:
% cd $ORACLE_HOME/sqlplus/lib
4) Use the "make" command to relink sqlplus:
% make -f ins_sqlplus.mk install
5) Change to the "network/lib" directory:
% cd $ORACLE_HOME/network/lib
6) Use the "make" command to relink the Intelligent Agent:
% make -f ins_agent.mk install
7) Use the "make" command to relink Net8:
% make -f ins_network.mk install
HTH,
Shiju
Life is a promise, fulfill it!
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