Password error


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Password error
# 1  
Old 06-04-2002
Password error

When I "adduser" I assign user id, home, password and name.
When I try to login as this user it says the password is incorrect.
If I go in as "root" and set a new password for the user I can then login as that user without error.

What is causing the initial password to be improperly written?
I am running unix-linux 1.3-RedHat 7.2
# 2  
Old 06-04-2002
Not sure this will help or not. Could not find adduser in any of the man pages but did find useradd.

Redhat Docs shows useradd only adds an account name and then you must set the password.

The other info I found didn't show useradd at all but other utilities which also don't seem to set the password
Linux.Ctyme.com

Hopefully someone with more Redhat/Linux experience will post a more helpful answer.
thehoghunter
# 3  
Old 06-04-2002
Sorry it is useradd. If it is used as adduser could this cause the problem? I believe that i may have created the new user using adduser instead of useradd, but the new user was created.

useradd [-c comment] [-d home_dir]
[-e expire_date] [-f inactive_time]
[-g initial_group] [-G group[,...]]
[-m [-k skeleton_dir] | -M] [-p passwd]
[-s shell] [-u uid [ -o]] [-n] [-r] login

but when I assign the password it does not write it properly and I have to reasign the password to the new user under root using passwd.
# 4  
Old 06-06-2002
I have added users with useradd now, but I am still having this problem. I have to go back into telnet as root and reset the new users passwords for them to read correctly. Any ideals what is causing this!!
# 5  
Old 06-06-2002
On a Redhat Linux system, adduser is a symbolic link to useradd. So it doesn't matter which way that one is called.

Here is the sticker on using the -p option:
It has to already be an encrypted password.
It useful if you assign all original users the same password, but set their account to expire right away so that they have to change it the first time they log in.
The easiest way I can think of doing this would be to create one user and assign a passwd of "firsttime" (or whatever you want it to be). Grab that encrypted value out of the passwd file in /etc, and use it like this:
Code:
/usr/sbin/useradd -c "Full Name" -m -e $(date --date=yesterday +%Y-%m-%d) -p '$1$mqUt5qvn$qlkcSv46NyG2bnaK8F/wk/' username

Yes, it's a mouthful, but it can be scripted.

BTW, I did not test this, so make sure to try it out and test it before using it on a production system.
# 6  
Old 06-06-2002
Thanks for the input!
 
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

Trying to pass a password: bash: syntax error near unexpected token `('

howdy, so I'm make a plugin work for Nagios, and the commandline is: /usr/lib/nagios/plugins/check_mssql -H MySQLServerName -u MySqlAccountName -p MyPassword(#XXXXX -d MyDatabaseName it is barfing with: bash: syntax error near unexpected token `(' Thoughts? Do I have to wrap something... (2 Replies)
Discussion started by: rgouette
2 Replies

3. Shell Programming and Scripting

Error in spawn and expect for password

Code Broken!! "cod generator ip=$loja" expect -c " # set timeout -1 set timeout 18 spawn scp -C /etc/samba/arkivo.sh root@$loja:/etc/samba/ expect { -re "*yes/no*"{ send "yes\r" exp_continue } -re "*password:*" { send "senha\r" expect \"*#*\"}} ssh root@$loja expect \"*password:*\"... (4 Replies)
Discussion started by: hrenechen
4 Replies

4. Shell Programming and Scripting

How to get rid off Password expiry error message when connecting to sql in script?

I am connecting to sql databases through shell script. Databases that i am connecting will need password change every 60 days. This is according to our security policy and cannot be changed. But this is creating problem when connecting to Databases through shell script . To connect to oracle DB we... (2 Replies)
Discussion started by: pallvi_mahajan
2 Replies

5. UNIX for Dummies Questions & Answers

password protect a CSV file: better solution than ZIP password?

Hi We send *.csv with sensitive data to our customers. Our customers open those files with Excel. A new requirement is that we password protect those CSV files. I thought to pack them with ZIP and assign a password to the archive. But Solaris 10 can't encrypt ZIP files. $ zip -P... (12 Replies)
Discussion started by: slashdotweenie
12 Replies

6. Shell Programming and Scripting

sftp shell script - Password read error.

Hi, I have script which does the sftp function. In the script in one place it able to read the password from file and other place files with below error. warning: has much more security than supplying the password in the clear warning: on the command line. Failed to get password: File... (0 Replies)
Discussion started by: vino_hymi
0 Replies

7. UNIX for Advanced & Expert Users

SFTP password expire error

Hi, I am using sftp in batch script for which all configuration for public/private keys are done and it works fine without asking a password. No issues till this point. Now I the problem I have is that if the password expires/someone changes the authentication keys at reote server then the... (4 Replies)
Discussion started by: coolwade
4 Replies

8. Web Development

Error when trying to set Admin password in MySQL

I'm trying to set an admin password for MySQL using the following command: $ /usr/local/mysql/bin/mysqladmin -u root -p new_password But, I get the following error message? /usr/local/mysql/bin/mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user... (2 Replies)
Discussion started by: Abder-Rahman
2 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. Shell Programming and Scripting

ERROR : Permission denied (publickey,password,keyboard-interactive).

Hello, when I try to connect to a remote machine through SSH username@host I am getting the error message Permission denied (publickey,password,keyboard-interactive). Can any one tell me what is the problem. the key is added in the remote machines authorized_keys file. (5 Replies)
Discussion started by: deepusunil
5 Replies
Login or Register to Ask a Question