- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Group ownership/creation
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
12-11-2006 06:30 AM
12-11-2006 06:30 AM
between the two systems on the oracle login, the oracle dba found that the groups on files in the oracle accounts were different. I created a file 'andre' on both and confirmed his findings.
Original system:
-rw-rw-r-- 1 oracle dba 0 Dec 11 12:43 andre
new system:
-rw-rw-r-- 1 oracle 500 0 Dec 11 12:36 andre
This is what I get when I type id on the original system while logged on as oracle:
/home/oracle:BASE > id
uid=500(oracle) gid=500(dba) groups=107(dev),104(oinstall),105(omnidex)
and this is what I get while signed on as oracle on the newly converted system:
/u07/home/oracle:BASE > id
uid=500(oracle) gid=500() groups=107(),104(),105()
notice that for the gid, groups, 104 and 105 that nothing is contain between the parenthesis and they are on the original system.
Any ideas what may be going on and how to correct it?
Andre'
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 06:38 AM
12-11-2006 06:38 AM
Re: Group ownership/creation
It would appear that your '/etc/group' doesn't contain mappings for 'gid' 500, 104, 105 nor 107.
If so, verify that '/etc/group' is readable by everyone.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 06:41 AM
12-11-2006 06:41 AM
Re: Group ownership/creation
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 06:52 AM
12-11-2006 06:52 AM
Re: Group ownership/creation
current system:
nogroup:*:-2:
smbnull::101:
mysql::102:
hpsmh::79:
sshd::103:
dba::500:
dev::107:oracle,hpmprda,hpmprdd,hpmprdo
oinstall::104:oracle
omnidex::105:oracle
unispool::108:
new system:
nogroup:*:-2:
smbnull::101:
mysql::102:
hpsmh::79:
sshd::103:
dba::500:
dev::107:oracle,hpmprda,hpmprdd,hpmprdo
oinstall::104:oracle
omnidex::105:oracle
unispool::108:
To get all of the files over they were just restored from tape using Data Protector.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 07:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 07:15 AM
12-11-2006 07:15 AM
Re: Group ownership/creation
Here is the listing before I make any changes to it...
Original system:
# ll /etc/group
-r--r--r-- 1 bin bin 6697 Dec 11 12:27
/etc/group
new system
# ll /etc/group
-rw-r-----1 root sys 6665 Dec 11 12:24
/etc/group
Should the root sys be changed to bin bin also?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 07:23 AM
12-11-2006 07:23 AM
Re: Group ownership/creation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 08:01 AM
12-11-2006 08:01 AM
Re: Group ownership/creation
Andre'