Changing passwords for ACF: Difference between revisions
Dubiousjim (talk | contribs) (Category:ACF) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | |||
This provides documentation for beginner Alpine Linux users on how to change passwords for the console login as well as the ACF. It is pretty simple. | This provides documentation for beginner Alpine Linux users on how to change passwords for the console login as well as the ACF. It is pretty simple. | ||
== Changing ACF password using command line == | |||
Setting ACF password is done in various ways depending on how old your system is. | |||
{{Cmd| | === Set ACF-password on Alpine Linux 1.9 and newer === | ||
Set the ACF-password for a specific user (where '<TT>username</TT>' could be a system user, such as '<TT>root</TT>'): | |||
{{Cmd|acfpasswd username}} | |||
You will be prompted to enter a new password for this user. | |||
{{Tip|You can set the ACF password to reflect the system user's password. In that case, the command looks like this: | |||
{{Cmd|acfpasswd -s username}} | |||
''(The '<TT>-s</TT>' flag tells the system to copy the system user's password into ACF-password database.)'' | |||
}} | |||
The logins and passwords for the ACF users are stored in a separate location: ' | === Set ACF-password on Alpine Linux 1.8 and older === | ||
The logins and passwords for the ACF users are stored in a separate location: '<TT>/etc/acf/passwd</TT>'. | |||
The syntax for the ' | The syntax for the '<TT>/etc/acf/passwd</TT>' file is as follows: | ||
username:md5sumpassword::ROLE | username:md5sumpassword::ROLE | ||
For example, change the | For example, change the ACF user '<TT>Alpine</TT>' as follows: | ||
Generate a md5sum hash of the password ' | # Generate a md5sum hash of the password '<TT>testing123</TT>', and send it to the passwd file: {{Cmd|echo -n "testing123" {{!}} md5sum >> /etc/acf/passwd}} | ||
# Edit the passwd file to put the hash in the correct place as shown below, deleting the existing hash: | |||
::<pre>Alpine:92707c3c2766ce04133e0f85681add8b::ADMIN</pre> | |||
== To change passwords from the ACF Interface == | |||
Log on as a user with the Admin role, which has rights to change user passwords other than it's own. | |||
Browse to '''System >> User Management''' | |||
Under the Existing Account section, click '''[Edit this account]''' under the user whose password you want to change. | |||
Enter the new password in the '<TT>Password</TT>' and '<TT>Password (Confirm)</TT>' fields. | |||
Click '''[Save]''' to save the changes. | |||
== Save changes == | |||
Remember to commit all changes (if you are running from 'tmpfs'): {{Cmd|lbu ci}} | |||
[[Category:ACF]] | [[Category:ACF]] | ||
[[Category:Security]] |
Latest revision as of 06:02, 29 July 2021
This provides documentation for beginner Alpine Linux users on how to change passwords for the console login as well as the ACF. It is pretty simple.
Changing ACF password using command line
Setting ACF password is done in various ways depending on how old your system is.
Set ACF-password on Alpine Linux 1.9 and newer
Set the ACF-password for a specific user (where 'username' could be a system user, such as 'root'):
acfpasswd username
You will be prompted to enter a new password for this user.
acfpasswd -s username
(The '-s' flag tells the system to copy the system user's password into ACF-password database.)
Set ACF-password on Alpine Linux 1.8 and older
The logins and passwords for the ACF users are stored in a separate location: '/etc/acf/passwd'.
The syntax for the '/etc/acf/passwd' file is as follows:
username:md5sumpassword::ROLE
For example, change the ACF user 'Alpine' as follows:
- Generate a md5sum hash of the password 'testing123', and send it to the passwd file:
echo -n "testing123" | md5sum >> /etc/acf/passwd
- Edit the passwd file to put the hash in the correct place as shown below, deleting the existing hash:
Alpine:92707c3c2766ce04133e0f85681add8b::ADMIN
To change passwords from the ACF Interface
Log on as a user with the Admin role, which has rights to change user passwords other than it's own.
Browse to System >> User Management
Under the Existing Account section, click [Edit this account] under the user whose password you want to change.
Enter the new password in the 'Password' and 'Password (Confirm)' fields.
Click [Save] to save the changes.
Save changes
Remember to commit all changes (if you are running from 'tmpfs'):
lbu ci