- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unable to connect to oracle as root user
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
01-11-2007 05:50 PM
01-11-2007 05:50 PM
We have migrated our systems from alpha (running tru64 unix) to itanium(hp-ux 11i)
Earlier we could do sqlplus being a root user but now on our new system we are unable to do so.
Example:
$ sqlplus system/manager
ERROR:
ORA-01034: ORACLE not available
ORA-27121: unable to determine size of shared memory segment
HPUX-ia64 Error: 13: Permission denied
When i connect is as "sqlplus system/manager@
it also works fine if i try to connect as oracle user.
I am not sure what setting have been done by system administrators neither am familiar with much of system admin knowledge
I need some pointer/reference as to know more about this error so that i can try to get into the root cause and can fix it.
Thanks in advance
Sangeeta
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 06:26 PM
01-11-2007 06:26 PM
Solutionhttp://www.dbforums.com/printthread.php?t=499807
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 06:28 PM
01-11-2007 06:28 PM
Re: unable to connect to oracle as root user
$ORACLE_HOME
$ORACLE_BASE
$ORACLE_SID
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 08:46 PM
01-11-2007 08:46 PM
Re: unable to connect to oracle as root user
these are the typical entries that are kept in the .profile of the users who will be running Oracle tools.
export DISPLAY=mysrver.domain.mu:0.0
export ORACLE_SID=mydb
export JAVA_HOME=/opt/java1.4
export PERL5LIB=/opt/perl/lib
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/10.2.0
export PATH=/opt/perl/bin:$PATH:/sbin:/usr/sbin:/etc:/usr/ccs/bin:/usr/bin:$ORAC
LE_HOME/bin:$JAVA_HOME/jre
CLASSPATH=/u01/app/oracle/product/10.2.0/jre:/u01/app/oracle/product/10.2.0/jlib
:.
export TMP=/var/tmp
export TMPDIR=/var/tmp
export TMP_DIR=/var/tmp
export TEMP=/var/tmp
can you try something similar and let us know?
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2007 10:54 PM
01-11-2007 10:54 PM
Re: unable to connect to oracle as root user
My problem is solved by doing following as suggested in the link referred by Wouter :
cd $ORACLE_HOME/bin
chmod 6751 oracle.
Regards,
Sangeeta