Dexciss Technology - MYSQL Remote Usage Permission
MYSQL Remote Usage Permission
·
1 min read
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. Login to start a new discussion Start a new discussion