Introduction – You need to use the passwd command. It is used to update the user’s authentication token(s) i.e. password. Let us see how to change the root user password on Alpine Linux.
How to change change root password on Alpine Linux
The procedure for changing the password of root is as follows:
- First, log in to the Alpine Linux server using ssh or console or lxc command
- Open a shell prompt and type the passwd command to change root password in Alpine Linux
- The actual command to change the password for root on Alpine Linux is sudo passwd root
NOTE: Please note that vivek@utls-newsletter:~ $ is my shell prompt. You need to type commands after the $ prompt.
Alpine Linux change root password command
I am going to log in to my Alpine Linux 3.x server/VM/container using the ssh command:
vivek@macOS_nixcraft:~ $ ssh vivek@alpine-vm42
Once logged in enter the command passwd as follows:
vivek@utls-newsletter:~ $ sudo passwd root
First you need to type the password for vivek user. After that the passwd command asks for the new password, which you will have to enter two times:
Changing root account passwords on an Alpine Linux based server/vm/container
Slightly different procedure for changing passwords in Alpine Linux
One can use the following procedure too:
vivek@utls-newsletter:~ $ ssh user@your-centos-server-name-ip
Become a root user via the su command or sudo command:
vivek@utls-newsletter:~ $ sudo -i
OR
vivek@utls-newsletter:~ $ su -
Finally change your root user password:
passwd
Conclusion
This page explained the process for changing the password of root user using the passwd command on a Alpine Linux. For more info type the following man command on Alpine:
man passwd
OR
passwd --help
Sample outputs:
BusyBox v1.28.4 (2018-12-06 15:13:21 UTC) multi-call binary. Usage: passwd [OPTIONS] [USER] Change USER's password (default: current user) -a ALG des,md5,sha256/512 (default sha512) -d Set password to '' -l Lock (disable) account -u Unlock (enable) account
- Linux Login as Superuser ( root user )
- How can I log in as root?
- How do I become superuser on Ubuntu Linux using su/sudo?
- Ubuntu Linux root Password (Default Password)
- How to create a new sudo user on Ubuntu Linux server
- How to change root password on RHEL ( Red Hat Enterprise Linux)
- How to change root password on CentOS Linux
- How to change root password on Alpine Linux
- How to change root password on SUSE / OpenSUSE Linux
- Change the Password in UNIX
- How to change root password on Debian Linux
- How to change root password on Fedora Linux
- How to change root password on macOS Unix
🐧 1 comment so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
I updated page to include Alpine Linux version 3.8.1 info.