I'm trying to connect remotely to MySQL server as following:
below code works fine
mysql -u root -h localhost -p
below code returns me an error
mysql -u root -h 'server ip_address here' -p
ERROR 1130 (00000): Host xxx is not allowed to connect to this MySQL server
Please help