Create new user account and password in shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Create new user account and password in shell script
# 1  
Old 01-18-2010
Create new user account and password in shell script

I am trying to create a shell script that will:
  1. check if a specific user already exists
  2. if not, create a specific group and create the user in that group
  3. assign a password to that user, where the password is passed in as a parameter to the script
The problem that I need help with is 3 on Solaris and AIX.

I can do 1 (using the id command) and 2 (using mkgroup or groupadd and useradd commands), but setting the password is where I am having problems. I have got it to work on Linux by redirecting input to the passwd command but I can not find how to get the same functionality to work on AIX and Solaris. This is what I have so far:


Code:
 
PLATFORM=`uname`
id $NEW_USER_ID > /dev/null 2>&1
if [ "$?" != "0" ]
then
   echo "$NEW_USER_ID user does not exist. Attempting to create user and group"
 
   if [ "$PLATFORM" = "AIX" ]
   then
      mkgroup $NEW_GROUP
   else
      groupadd $NEW_GROUP
   fi
   if [ "$?" != "0" ]
   then
      echo "Failed to create group"
   fi
 
   useradd -g $NEW_GROUP -s /usr/bin/ksh $NEW_USER_ID 
   if [ "$?" != "0" ]
   then
      echo "Failed to create $NEW_USER_ID user"
   fi
 
   if [ "$PLATFORM" = "Linux" ]
   then
      passwd --stdin $NEW_USER_ID <<EOF
$NEW_PASSWD
$NEW_PASSWD
EOF
 
      if [ "$?" != "0" ]
      then
         echo "Failed to set $NEW_USER_ID password"
      fi
   fi
fi

I've searched the forums and found some similar postings but nothing seems to answer exactly what I'm looking for.


Some additional information that might preempt some questions:
  • the script will only be run by the root user
  • there is not an issue with storing the password unencrypted in a flat file because it will be entered by the user as a parameter at run-time
  • the script has to be executable on Linux X86, Linux s390x, Solaris 10, and AIX 6
  • the script can not use any command, utility, or any other software that is not installed on the OS by default, so an answer along the lines of "download and install this..." is no good to me.
  • I can not use an answer that involves using perl
  • I can not use an answer that involves using the expect command
If it can't be done, because of something like OS security restrictions and limitations, then please let me know and I'll stop trying to script it!

Thanks in advance for any help or pointers that anyone can provide.
# 2  
Old 01-19-2010
What was done in case of Solaris what were the errors ?
# 3  
Old 01-19-2010
On Solaris I have tried:

1) redirecting the input as follows:

Code:
passwd $NEW_USER_ID <<EOF
> $NEW_PASSWD
> $NEW_PASSWD
> EOF

but I get prompted to enter the password interactively:
New Password:
2) putting the passwords into a file

Code:
echo $NEW_PASSWD >> tempfile
echo $NEW_PASSWD >> tempfile

then tried to redirect the contents of that file into the passwd command:

Code:
passwd $NEW_USER_ID < `cat tempfile`

from which I get the error:
ksh: $NEW_PASSWD^J$NEW_PASSWD: cannot open
(the error actually shows the real password not the environment variable)

or:

Code:
passwd $NEW_USER_ID < tempfile

but again I get prompted to enter the password interactively:
New Password:
3) write a mini shell script:

Code:
sleep 1
echo $NEW_PASSWD
sleep 1
echo $NEW_PASSWD

then tried to execute that script and pipe the output to the passwd command:

Code:
./script | passwd $NEW_USER_ID

but again I get prompted to enter the password interactively:
New Password:
So, it looks to me like my attempts to redirect stdin to the passwd command are failing but I don't know any other way to do it.
# 4  
Old 01-19-2010
Hi.

There is no way to do what you want on Solaris using the passwd command. You could download and compile a tool like chpasswd, but you don't want to do that.

One option is to change the password on one server, and then use information in the shadow file to update the other servers.

For AIX, the tool chpasswd should already be available. It's easy enough to use - check the man page.
# 5  
Old 01-20-2010
Thanks scottn. Appreciate the answer. I'll use chpasswd on AIX and think up an alternative solution on Solaris.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Create a shell script to gather user account information and displays the result to administrator

I want to create a shell script to gather user account information and displays the result to administrator. I have created a script but its showing all the information when i search for username like: amit@mx:~$ ./uinfo.sh amit Username : amit User Info ... (2 Replies)
Discussion started by: amit1986
2 Replies

2. Shell Programming and Scripting

Shell script for user account Creation

Hi Folks, I had a request to create the user request. Between, I just write a script a create, Update Geos, and update the password. My script as below: The error message, what I am getting is all the users are updated with the same Goes value.. #!/bin/bash for i in `cat users.txt`;do... (2 Replies)
Discussion started by: gsiva
2 Replies

3. Solaris

Help me create new user account

I want create user. That user should be login to any server without asking password. How? tell me in detail. :wall: (3 Replies)
Discussion started by: Navkreddy
3 Replies

4. UNIX for Dummies Questions & Answers

block user account after failed password

hi guys I have Centos 5.4 The idea is lock the user account for 3 minutes after he has entered his password incorrectly 3 times. I've modified /etc/pam.d/system-auth auth required pam_tally.so onerr=fail per_user deny=3 account required pam_tally.so resetbesides... (3 Replies)
Discussion started by: kopper
3 Replies

5. Shell Programming and Scripting

Passing password when changing the user account

Hi All, I have one requirment.. I need to change my id to some sudo account in a server.. Actually our username/passwd will be stored in one gip file like below... $cat .a.gz #It's hidden file username passwd $ So I tried the below script to pass the password when i sudo to... (7 Replies)
Discussion started by: raghu.iv85
7 Replies

6. Debian

password less login to root from a user account

hello friends, one user is created named "user1" I login as "user1" . Now when i do "su -" to be root user I have to give password for root . Is there any way through which we can skip giving the password to root. i.e. user1@work:~$ su - Password: xxxxxx work:~$ I don't want that... (1 Reply)
Discussion started by: pradeepreddy
1 Replies

7. Filesystems, Disks and Memory

script to create multiple instances of a user account across LPAR's

My company has about 40 databases with each database in a different logical partition. Presently the SysAdmin person says it is necessary to create a user profile (login and password for each instance of databases on each LPAR. 1. Is it necessary that the user must be created in each LPAR? 2.... (1 Reply)
Discussion started by: kcampbell
1 Replies

8. Solaris

How to create a new ftp user account with limited access..?

Hi All, I'm using solaris 2.8, and I want create a new ftp user account with the following restrictions: - Have only ftp access, no telnet or rlogin - Have restricted access to its home directory example /export/home/newuser - Deny access to any other directory. Thanks for your help, ... (6 Replies)
Discussion started by: Jeremy3
6 Replies

9. Solaris

how can I change user name and password , of account ?

passwd only changes the password but i need to change the user name tnx (5 Replies)
Discussion started by: umen
5 Replies

10. UNIX for Dummies Questions & Answers

create or modify user account to have same access as root

Is there a way to create or better yet modify a user account so it has the same privs as root? (6 Replies)
Discussion started by: xadamz23
6 Replies
Login or Register to Ask a Question