- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Problem with setting up Oracle Account on RHEL...
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
05-29-2009 02:06 PM
05-29-2009 02:06 PM
Problem with setting up Oracle Account on RHEL 5.3
ssh -l oracle linux1
oracle@linux1's passwd:
Connection to linux1 closed.
Also as root:
[root@linux1 ~]# su - oracle
could not open session
Other accounts however are fine.
[root@linux1 ~]# id oracle
uid=509(oracle) gid=509(oinstall) groups=509(oinstall),510(dba) context=root:system_r:unconfined_t:SystemLow-SystemHigh
/etc/passwd:
oracle:x:509:509::/users/oracle:/bin/bash
HomeDir:
[root@linux1 ~]# ls -ld /users/oracle
drwx------ 3 oracle oinstall 4096 May 29 14:53 /users/oracle
UNAME:
Linux linux1 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
(Oracle Enterprise linux)
Anything I need to check.?
Any help will be appreciated.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2009 11:56 PM
05-29-2009 11:56 PM
Re: Problem with setting up Oracle Account on RHEL 5.3
i m a novice. but still want to try this.
if this is a test system you are working on,
can you remove the groups oinstall, dba and the user oracle and start over with adding the two groups and oracle user and then try again?
there seems to be some problem here
[root@linux1 ~]# id oracle
uid=509(oracle) gid=509(oinstall) groups=509(oinstall),510(dba) context=root:system_r:unconfined_t:SystemLow-SystemHigh
can a uid and gid of a use be the same even though it is mapped to another group? i m not sure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2009 06:46 AM
05-30-2009 06:46 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
Check for messages in /var/log/messages and /var/log/secure.
Modules to check:
pam_limits
pam_listfile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2009 02:15 AM
05-31-2009 02:15 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
I think the problem is that the permissions on the /etc/passwd file are not set correctly.
If you experience this problem and you do a check on the file you will most likely see something similar as in this example:
[root@linux1 ~]# ls -rtl /etc/passwd
passwd -rw------- 1 root root 1871 May 31 16:35 passwd
[root@linux1 ~]#
The correct permission on the file should be:
-rw-r--r-- 1 root root 1871 May 31 16:35 passwd
To correct this you should invoke the chmod command to change the permissions on the file.
[root@linux1 ~]## chmod 644 passwd
This will solve the problem and will enable you to su to an other user.
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2009 08:33 AM
05-31-2009 08:33 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
I was following essentially the Oracle Installation instructions to the letter.
All other accounts I set up work fine -- as long as the login name is not oracle.
I am testing Oracle Enterprise Linux. So we do not have a subscription yet to ULN.
Could this be it? That Oracle Linux can't be installed with Oracle software IF one has no ULN (Unbreakable Linux Network) support subscription?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2009 09:24 AM
05-31-2009 09:24 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
http://forums.oracle.com/forums/forum.jspa?forumID=64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2009 09:26 AM
05-31-2009 09:26 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2009 10:24 AM
05-31-2009 10:24 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2009 05:36 PM
05-31-2009 05:36 PM
Re: Problem with setting up Oracle Account on RHEL 5.3
Thanks.
I followed the attached:
http://download.oracle.com/docs/html/B14402_01/qig_master.htm#sthref6
And from said docu:
To increase the shell limits:
Add the following lines to /etc/security/limits.conf file:
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
Add the following line to the /etc/pam.d/login file, if it does not already exist:
session required /lib/security/pam_limits.so
You think this is what's causing my issue sir?
Many thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2009 02:39 AM
06-01-2009 02:39 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
session required pam_limits.so
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2009 07:53 AM
08-12-2009 07:53 AM
Re: Problem with setting up Oracle Account on RHEL 5.3
Still scrtaching myhead though.