Adding Another User - AaronV77/Monday GitHub Wiki

#Adding Another User

In order to add another user to use Monday, do the following:

  • Create the user on linux by tying: sudo adduser
  • Copy the .bashrc profile from your account to the new user home directory. Make sure to change the user and group permission settings on the file.
  • Create the .ssh folder in your new user home directory by doing the following: mkdir .ssh. Then cd into the .ssh folder and type the following: ssh-keygen -t rsa then hit enter or fill in the optional fields.
  • The id-rsa and the id-rsa.pub are both the public and private keys. Type the following: cat id-rsa.pub and copy the output onto your clipboard or just "copy". Switch to your other user and log into your server, then move into the .ssh folder on the server and type the following: echo "everything in your clipboard" >> authorized_keys.
  • Make sure that the permissions on your authorized_keys file is 644. If you cat the file you should see everything at the bottom of the file.
  • Now if you log back into your other user, you should be able to log into the server with no problem.

Hope this helps..

⚠️ **GitHub.com Fallback** ⚠️