mysql remote connection command line
mysql --host=localhost --user=myname --password mydb
mysql remote connection command line
mysql --host=localhost --user=myname --password mydb
access mysql from remote
mysql> CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'monty'@'localhost'
-> WITH GRANT OPTION;
mysql> CREATE USER 'monty'@'%' IDENTIFIED BY 'some_pass';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'monty'@'%'
-> WITH GRANT OPTION;
#you need to change ufw for allowing 3306 port.
sudo ufw allow 3306
#if you are in aws ec2, you have to change the security group also
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us