How to connect as root using WINSCP

In my previous post I noted that I had not succeeded in in connecting to a linux machine as root using WINSCP when using the bitnami virtual machine.

My development implementation works, so I have progressed to using the cloud hosted bitnami instance. This comes with public key access rather than password access. This actually make it easier to connect.

  1. Download your private key, if using bitnami use the cloud console, if using AWS use the AWS console. Store it with no spaces in the file name.
  2. Optionally put it into your Pageant keystore
  3. Verify that you can connect using PuTTY

{update 2014-02-07} You now have two choices, you may use the SFTP protocol or the SCP protocol. My experience shows that connecting with SCP is easier.

USE the SCP protocol (preferred)

  1. Test connecting with WINSCP using using the SCP protocol and the bitnami (low priviledge user) and your private key.
  2. On the Advanced tab of WINSCP specify the Shell to be
    1. sudo su-
    2. scp

Use the SFTP protocol

  1. Test connecting with WINSCP using the SFTP protocol using the bitnami (low priviledge user) and your private key.
  2. Find the location of the sftp server, you will enter this into WINSCP later
    • $ whereis sftp-server
  3. On the Advanced tab of the WINSCP specify the sudo -s command to run the server as su. This works because you are using PKI and are not asked to provide a password when you sudo.
    1. sudo -s  /usr/lib/sftp-server
    2. winscp
  4. You should now be able to connect.

 

25 responses to “How to connect as root using WINSCP”

  1. Helpful, thanks. I found that I had to set the shell as “sudo /bin/bash” to get this to work with my Bitnami / WordPress stack on Azure. (It was “/bin/bash” previously.)

  2. Doesn’t work on Win10 connecting to Ubuntu 16.04 host on my LAN. WinSCP just immediately closes the tab after connecting.

    • While I do not know the cause of this my first thought is “it is always the firewall”.

      Please turn off your Windows 10 firewall. If possible verify that your Ubuntu host has the required ports open and then retest.

      Good luck, James

  3. Thanks a lot. Very Clear and useful. For me Sudo -su didn’t worked! So used su /bin/bash as pointed by Mark Berry above.

  4. I’ve tried quite a few custom shell variables within WinSCP’s advanced settings. It returns “Server sent command exit status 1” every time. I’m trying to connect to a Ubuntu server as root, through a user that is in the sudoers file marked NOPASSWD.

  5. Great tips. Saved hours of mine and worked like charm. I just wanted to copy some files on WordPress server using WinSCP.

  6. […] » Visit Now In my previous post I noted that I had not succeeded in in connecting to a linux machine as root using WINSCP when using the bitnami virtual machine. My development implementation works, so I have progressed to using the cloud hosted bitnami instance. This comes with public key access rather than password access. This actually… […]

Leave a reply to Paul Cancel reply