Re: Change password with usermod

Krzysztof Dubowik <[email protected]>
Newsgroups org.kernel.vger.linux-admin
Message-ID <[email protected]>
Hi,

Mário Gamito wrote:
> PASS=`mkpasswd secret`
> ID=`cat /etc/passwd | grep postgres | cut -f3 -d':'`
> usermod -p $PASS -u $ID
> 
> This gives me:
> "usermod: user 502 does not exist"

usermod needs a login name rather than the userid and you don't need -u
option:

# usermod -p $PASS postgres

However, I usually user chpasswd to change the password from a script, so
your script becomes:

# echo postgres:secret | chpasswd

Hope this helps,
Krzysztof

-
To unsubscribe from this list: send the line "unsubscribe linux-admin" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.