Password script


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Password script
# 8  
Old 11-17-2003
If you are using AIX, you really don't need a script. You can grant limited user access to smit for specified operations and keep them from resetting root's password. Just dig a little more into smit.

Cheers,
Keith

Last edited by kduffin; 11-17-2003 at 10:31 PM..
# 9  
Old 11-18-2003
I was going thru the 'security and users' portion of smit, and set a particular user's role to 'manage all users' and 'manage all user passwords'. This does not seem to help.

Thanks,
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Password sent via reset password email is 'weak' and won't allow me to change my password

I was unable to login and so used the "Forgotten Password' process. I was sent a NEWLY-PROVIDED password and a link through which my password could be changed. The NEWLY-PROVIDED password allowed me to login. Following the provided link I attempted to update my password to one of my own... (1 Reply)
Discussion started by: Rich Marton
1 Replies

2. Shell Programming and Scripting

SFTP or scp with password in a batch script without using SSH keys and expect script

Dear All, I have a requirement where I have to SFTP or SCP a file in a batch script. Unfortunately, the destination server setup is such that it doesn't allow for shell command line login. So, I am not able to set up SSH keys. My source server is having issues with Expect. So, unable to use... (5 Replies)
Discussion started by: ss112233
5 Replies

3. Shell Programming and Scripting

SFTP prompting for password even though password is in script

Hi All, I am trying to transfer a file from one server to a remote server using SFTP. Client is not ready for key setup. I am working on Solaris 10. Here is the code. #!/bin/ksh # sample automatic Sftp script to dump a file USER="user1" PASSWORD="pass1" HOST="host1" sftp $USER@$HOST... (6 Replies)
Discussion started by: megha2525
6 Replies

4. Shell Programming and Scripting

Make a password protected bash script resist/refuse “bash -x” when the password is given

I want to give my long scripts to customer. The customer must not be able to read the scripts even if he has the password. The following command locks and unlocks the script but the set +x is simply ignored. The code: read -p 'Script: ' S && C=$S.crypt H='eval "$((dd if=$0 bs=1 skip=//|gpg... (7 Replies)
Discussion started by: frad
7 Replies

5. Shell Programming and Scripting

How to use the password in my script?

Hi Gurus, I have an issue to use the passwd in my script. in the script, I need log into the ftp server and get file. I put the user name and password in my script, but each time when I run the script, it still ask the password. I am wondering, is there any way I can put the password... (3 Replies)
Discussion started by: ken6503
3 Replies

6. UNIX for Advanced & Expert Users

ldapsearch in monitoring script without bind password written in script

Hi I do a very simple monitoring of our OpenLDAP (runs in cronjob and generate alerts if unsuccessfull) $ ldapsearch -h hostname.domain -D "cn=monitor_user,ou=People,dc=organisation" -w "password" -b "dc=organisation" -x "(&(cn=monitor_user)(ou=People))" dn | grep -v version dn:... (4 Replies)
Discussion started by: slashdotweenie
4 Replies

7. Shell Programming and Scripting

Shell Script to change a user password using script

Hi Experts, I had tried to executes this script to change the user password through script: No lines in buffer #!/bin/ksh cat /etc/passwd | grep -v userid >> /tmp/pass.tmp1 cat /etc/passwd | grep userid >> /tmp/pass.tmp2 PASS1=`cat /tmp/pass.tmp2 | cut -d ":" -f2` PASS2=`q2w3e4r5` sed... (3 Replies)
Discussion started by: indrajit_renu
3 Replies

8. Shell Programming and Scripting

Help with password script

Can someone look at the below code and let me know what's wrong with it. I keep getting syntax error on line 24 in the script. This is the full command from line 20-30 pw=" " password = "password"# while ] do read -s -p "Enter password:" pw echo " " if ] then echo " Correct password... (1 Reply)
Discussion started by: bbbngowc
1 Replies

9. Shell Programming and Scripting

how to change root password using shell script with standard password

Hi Friends. I am new to scripting now i want to change the root password using the script with standard password. which is the easy scripting to learn for the beginner, Thanks in advance. (2 Replies)
Discussion started by: kurva
2 Replies

10. UNIX for Dummies Questions & Answers

Please help me out with this password script

pkay, I wrote a very long shell program to manage the task of creating user accounts now, the script I wrote that sets a temporary password for users makes it possible for anybody to see it. what I mean is that, when I type the temp password for the new user, it shows the exactly letters am... (1 Reply)
Discussion started by: TRUEST
1 Replies
Login or Register to Ask a Question