Changes between Version 20 and Version 21 of DevelopmentServer


Ignore:
Timestamp:
11/05/10 12:03:41 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentServer

    v20 v21  
    1818== SSH access == 
    1919 
    20 Which ever developers need ssh access can have it, and sudo if needs be, contact chris@webarchitects.co.uk. When adding a new account don't forget to edit /etc/ssh/sshd_config to add the new user to !AllowUsers and restart sshd. 
     20Which ever developers need ssh access can have it, contact chris@webarchitects.co.uk. When adding a new account don't forget to add the user to the sudo group -- ssh access is limited to only users in the sudo group. 
    2121 
    22 Users can be granted sudo rights like this: 
     22Users can be added and also put in the sudo group with one command: 
    2323{{{ 
    24 kiwi:~# adduser username sudo 
     24kiwi:~# adduser -G sudo newusername 
    2525}}} 
     26 
    2627/etc/sudoers is set up so that people don't need to type their passwords when sudo'ing. If users also set up ssh keys then this means that people can use very long, essentially uncrackable, passwords but never actually need to remember or use them unless they lose their local ssh key or they need to login via the consol. 
    2728