mysql - Test Remote Database Access Host -
i've set remote database access host, on web hosting cpanel, enabling home computer ip address access online database.
to best of knowledge should working, i'm not 100% sure.
is there quick way can connect database command prompt make sure allowing access ip address?
use mysql client, if have installed it's quite easy access remote host
mysql -hyour_ddbb_server_ip -uyour_user -pyour_password your_database_name
or
mysql -h your_ddbb_server_ip -u your_user -p your_database_name
* note in first option there no blank spaces between parameter option , value
* your_database_name optional
Comments
Post a Comment