By default, sshfs ignores mount as root user on remote machine (sshfs internally uses SFTP, which in turn uses ssh config).

Edit /etc/ssh/sshd_config file and edit the line:

PermitRootLogin without-password

to

PermitRootLogin yes

Then restart ssh service:

sudo service ssh restart

Leave a Reply