I just set up my server, created a new user, and blocked login access to the root user. I’m now trying to transfer my files (through WinSCP SFTP) to my server using the new user, but it says “permission denied” when I try to transfer the files.
How do I give permissions to the new user in specific directories so that I can transfer my files?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Make use of “chown” command. (You need to be root or have access to sudo)
chown owner-user:owner-group directory
The “owner-group” can be anything at all, even if it doesn’t exist. You probably need to change the whole home folder for that user, eg.
sudo chown -R bob:bob /home/bob
-R will run recursively through all the sub-folders.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.