I have one linux debian server and two users. And have setup my first user user x with the following settings. That user can run and update the server.
But i want to have another user for the ftp account. Can you guys help me do that?
user x (server) runs the server
user y (user) is the ftp account
user x:
Can start, stop, update the server.
user y:
Can upload and change files in the server dir.
^ is this correct??
But i want to have another user for the ftp account. Can you guys help me do that?
user x (server) runs the server
user y (user) is the ftp account
user x:
Code:
chown server:server -R .
chmod ug+rwX -R .
Can start, stop, update the server.
user y:
Code:
chown user:server -R .
chmod u+rw -R .
Can upload and change files in the server dir.
^ is this correct??