1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 10:02:08 +02:00
tldr/pages/linux/authconfig.md
Lena 7ca1069d76
pages/*: reword descriptions without using "a CLI for" etc. (#10437)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-07-16 19:23:40 +02:00

36 lines
855 B
Markdown

# authconfig
> Configure system authentication resources.
> More information: <https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/system-level_authentication_guide/authconfig-install>.
- Display the current configuration (or dry run):
`authconfig --test`
- Configure the server to use a different password hashing algorithm:
`authconfig --update --passalgo={{algorithm}}`
- Enable LDAP authentication:
`authconfig --update --enableldapauth`
- Disable LDAP authentication:
`authconfig --update --disableldapauth`
- Enable Network Information Service (NIS):
`authconfig --update --enablenis`
- Enable Kerberos:
`authconfig --update --enablekrb5`
- Enable Winbind (Active Directory) authentication:
`authconfig --update --enablewinbindauth`
- Enable local authorization:
`authconfig --update --enablelocauthorize`