Answers for "how to grant full permissions to root user"

-1

grant user all privileges

mysql> GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost';
Posted by: Guest on September-11-2020
1

grant superuser permission to sudo user ubuntu

adduser sudo_user_name
//grant privileges
visudo
under line 
root ALL=(ALL:ALL) ALL 
add this line
sudo_user_name ALL=(ALL:ALL) ALL
sudo apt-get update
Posted by: Guest on March-30-2021

Code answers related to "how to grant full permissions to root user"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language