How to add rundeck user to a Linux server
Add user rundeck
- Login with your _a account
sudo adduser rundeck
sudo passwd rundeck
- Set the password as in the KeePass (search Rundeck)
- If you can successfully login with the username rundeck, the user is added successfully.
Allow rundeck to sudo
sudo nano /etc/sudoers
- Add the following line at the end of the file
rundeck ALL=(ALL) ALL
Allow environment variables injection
sudo vi /etc/ssh/sshd_config
- add the following line at the bottom of the file
# pass Rundeck variables
AcceptEnv RD_*
- save the file and reboot the machine to enable the config l