Question
How to edit root-protected files & folders over SFTP using filezilla?
So I connected to my server using SFTP with filezilla and I’m trying to edit a root-protected HTML file. I’m getting open for write: permission denied
errors as expected since it’s a root protected file. Is there a way to “sudo” with filezilla?
note: I disabled the ability to connect to root with SSH.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
My current solution is to give the user write permission to that specific www folder using
chown -R username directory
.Is this how developers usually edit www folders or is there a better solution?
chown -R username .
was my solution as well, but I’m definitely curious if there is a more accepted/common way to go about this.