User/group management in AIX


 
Thread Tools Search this Thread
Operating Systems AIX User/group management in AIX
# 1  
Old 07-22-2013
IBM User/group management in AIX

We have an environment of around 50 AIX LPARs. We use scripts for user and group account management but it is starting to get unwieldy to document and manage the accounts. It would be doable with scripts but before we dedicate resources to that, I was wondering if there is any product that you guys use/can recommend that can be used to remotely manage AIX user/group accounts or some sort of directory that the lpars can authenticate against. Just wondering what standard practice is out there. Thanks for any comments.
# 2  
Old 07-22-2013
dsh - distributed shell, plain ssh can be use to solve the issue as well, all it requires it that you setup the proper security access.

---------- Post updated at 04:07 PM ---------- Previous update was at 04:04 PM ----------

oh, I didn't read carefully. You could consider ldap or nis for authentication of users. Perhaps implement nfs for user directories.
# 3  
Old 07-23-2013
I agree with blackrageous - set up a LDAP server (maybe openLDAP) and have the LPARs authenticate against it using the AIX for LDAP packages, that come with the OS.
This Redbook helped me a great deal for the understanding and implementation of AIX authentication via LDAP.

If you already have a directory in your environment that supports LDAP, maybe you can just connect your LPARs to it.

Last edited by zaxxon; 07-23-2013 at 04:14 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

AIX Administrator - User Profile Management

Good afternoon all, Was un-sure on where to post this so I thought I would use this topic... I was wondering what best practice people use for the deletion of user profiles on AIX systems? At the moment, I currently don't delete any user profiles, they are just disabled as they... (1 Reply)
Discussion started by: SteveCPayne
1 Replies

2. UNIX for Advanced & Expert Users

AD Group Policy Management and Kerberos / LDAP

Has anyone attempted to define GPO / HBAC policies in Windows Server 2012 that could be respected by Kerberos/LDAP on AIX? I'm looking to associate servers to groups so that when a user part of a group tries to login to a host not associated with that group, it would be denied. This would allow... (3 Replies)
Discussion started by: Devyn
3 Replies

3. AIX

AIX user administration - queue management

Dear All Please how can I create a user which would be only able to manage queue printer like creating, release, hold etc a printer queue. He would for example be able to enter commands like : - lpstat -pprintqueue where printqueue is an existing queue on the server - enable printqueue... (0 Replies)
Discussion started by: sobnc
0 Replies

4. AIX

Printer Admin/Management Group

Hi Everyone, I wanted to know if there is a printer management or administration group in AIX 6.1 by default or if one needed to be created. I've searched online and I can't seem to find a solid answer. My goal is to allow two users the ability to add, delete, change printers without having... (2 Replies)
Discussion started by: syren33
2 Replies

5. Red Hat

User is a Part of a Group But Group Details Do Not Show the User

Hi, In the following output you can see the the user "richard" is a member on the team/group "developers": # id richard uid=10247(richard) gid=100361(developers) groups=100361(developers),10053(testers) but in the following details of the said group (developers), the said user... (3 Replies)
Discussion started by: indiansoil
3 Replies

6. Ubuntu

Create New User with the same group nd privileges of the other user

Hi, Anyone can help me on how to duplicate privileges and group for useroradb01 to userrootdb01. I have currently using "useroradb01" and create a newly user "userrootdb01". I want both in the sames privileges and group. Please see the existing users list below; drwxr-xr-x 53 useroradb01... (0 Replies)
Discussion started by: fspalero
0 Replies

7. AIX

AIX San management

Hi All, I'm looking for documents and books about SAN management in AIX5.3. Any suggestions are greatly appreciated. Greetings, Peter (1 Reply)
Discussion started by: petervg
1 Replies

8. UNIX for Dummies Questions & Answers

AIX user ID and group ID change

Hello AIX gurus, I have a requirement where I have to change user ID of user "myuser" from 100 to 200 and also the group ID of "mygroup" from 2 to 3. Please note that "myuser" has "mygroup" as it's primary group. What steps do I need to follow for this and in what order? Also can you please... (2 Replies)
Discussion started by: sacguy08
2 Replies

9. UNIX for Dummies Questions & Answers

Aix ftp user and group

Hi, I'm new in this AIX Version 4.3 system,can anywone help? 1 - I need to create a group (ftp) and give permissions 2 - I need to create a user (ftp) 3 - I need to stop the user from go out is home directory (cd ..) (0 Replies)
Discussion started by: marques_rmc
0 Replies

10. Shell Programming and Scripting

Find all files with group read OR group write OR user write permission

I need to find all the files that have group Read or Write permission or files that have user write permission. This is what I have so far: find . -exec ls -l {} \; | awk '/-...rw..w./ {print $1 " " $3 " " $4 " " $9}' It shows me all files where group read = true, group write = true... (5 Replies)
Discussion started by: shunter63
5 Replies
Login or Register to Ask a Question