Login to your SSH as root user and run the following commands (shown in BLUE color only) to create a new root-priviledged user. To do this, you are going to add the new user to the "wheel" group.
Add a new user to your server: adduser john
Set password for your new user: passwd john (You will be asked to enter new password)
Add the new user to the wheel group: usermod -a -G wheel john
Ensure 'wheel' group has correct privileges: visudo
Near the bottom of the file you will see these 2 lines:
## Allows people in group wheel to run all commands
# %wheel ALL=(ALL) ALL
Simply uncomment (remove the '#') the second line, so it looks like this:
## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
Now, the new user john have full root access to your server.
Most Popular Articles
Can I upgrade hardwares on a Budget Server?
No, you can NOT upgrade any hardware on a Budget Server. You get Budget Servers for so cheap...
What is included with a new cPanel dedicated server?
The following softwares will be pre-installed on your new CPanel based dedicated server free of...
What is your refund policy for your Dedicated Servers?
Sorry, but we do NOT offer any refunds/credits if you cancel your dedicated server subscription....
Add new IPs to server using SSH
Add IPs to FreeBSD. ------------------------------- vi /etc/rc.conf First line is the main ip...