If you have an access as a root to your Ubuntu 16.04 VPS you should setup another user giving him sudo access
adduser pavel # my user is called "pavel"; enter password and leave all the rest
usermod -aG sudo pavel
nano /etc/ssh/sshd_config # disable root access
# find
PermitRootLogin # change value to: no
# add
AllowUsers pavel