Open Mysql
$mysql -uroot -p (Password)
$MariaDB [(none)]>create user sjain@localhost identified by 'dexciss@123';
$MariaDB [(none)]>GRANT all privileges on [Database_Name].* to 'sjain'@'%' IDENTIFIED BY 'dexciss@123' WITH GRANT OPTION;
$MariaDB [(none)]>Flush Privileges;
No comments yet. Start a new discussion.