- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: not able to login as oracle on a server !!
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
10-03-2007 04:37 AM
10-03-2007 04:37 AM
not able to login as oracle on a server !!
Regards
Amit Manna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 04:45 AM
10-03-2007 04:45 AM
Re: not able to login as oracle on a server !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 05:08 AM
10-03-2007 05:08 AM
Re: not able to login as oracle on a server !!
When i login as root and do su to oracle it hangs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 05:11 AM
10-03-2007 05:11 AM
Re: not able to login as oracle on a server !!
Take a look too to the number of process for the user:
ps -fu oracle|wc -l
And compare it with the kernel parameter:
maxuprc (maximum number of simultaneous processes available to each user on the system)
Regards;
J. Bravo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 07:23 AM
10-03-2007 07:23 AM
Re: not able to login as oracle on a server !!
Move .profile, .kshrc ( .cshrc .login ) files and try to use su oracle.
Try to use su for another user in order to understand whether the problem is for oracle user only or the problem is more common.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 01:43 AM
10-04-2007 01:43 AM
Re: not able to login as oracle on a server !!
only oracle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 03:19 AM
10-04-2007 03:19 AM
Re: not able to login as oracle on a server !!
inetd -l
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 03:22 AM
10-04-2007 03:22 AM
Re: not able to login as oracle on a server !!
"su - oracle" hangs
"su oracle" hangs
"su - otheruser" works properly
there are no full disks
are there NFS mounted file systems, and are they all mounted / accessible?
is oracle's home directory on an NFS mount?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 06:09 AM
10-04-2007 06:09 AM
Re: not able to login as oracle on a server !!
Its netapps storage . and storage team says there is no issue with netapps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 07:26 AM
10-04-2007 07:26 AM
Re: not able to login as oracle on a server !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 07:58 AM
10-04-2007 07:58 AM
Re: not able to login as oracle on a server !!
Here is how to isolate your problem: On the local machine, create a home directory for oracle (e.g. /tmp/home/oracle) and make sure that it is owned and accessible by user oracle. Copy his .profile or .cshrc to this directory. Finally, change his home directory in /etc/passwd to /tmp/home/oracle. Now try to login as oracle. If that works, you know where the problem lies.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 08:02 AM
10-04-2007 08:02 AM
Re: not able to login as oracle on a server !!
Don't try and store keyboard history on NFS. .sh_history or whatever, that causes an automatic hang when the user comes up. Don't set the variable HISTFILE to NFS.
as root.
cd to the home directory of oracle
add a set -x
To the .profile of the oracle user.
su - oracle
look for diagnostics.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 04:59 PM
10-04-2007 04:59 PM
Re: not able to login as oracle on a server !!
The only problem is I depend on a common history stack. So years ago before we got all of the proper patches, I had lots of hangs, or I had to have separate history files for "bad" machines.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2007 07:39 PM
10-04-2007 07:39 PM
Re: not able to login as oracle on a server !!
I refer to some Oracle reference, Is the permission correct ?
First, on each node, create the Oracle group. Example:
# groupadd dba -g 501
Next, make the Oracle user's home directory. Example:
# mkdir -p /u01/home/oracle
# useradd -c "Oracle Software Owner" -G dba -u 101 -m -d /u01/home/oracle -s /bin/csh oracle
On each node, Create a mount point for the Oracle software installation (at least 2.5 GB, typically /u01). The oracle user should own this mount point and all of the directories below the mount point. Example:
# mkdir /u01
# chown -R oracle.dba /u01
# chmod -R ug=rwx,o=rx /u01
Once this is done, test the permissions on each node to ensure that the oracle user can write to the new mount points. Example:
# su - oracle
WK