How to backup all the MySQL databases daily using Shell script/cron job.

Hi, How to take full MySQL backup daily using shell script ?   First we need to create the shell script on the server  and add below code in it. After creating the shell script. After this you can add this shell script to daily crons to perform daily backup automatically. You can directly put […]

Grant remote access of MySQL database

Grant remote access of MySQL database If you try to connect to a remote MySQL database from your client system, you will get “ERROR 1130: Host is not allowed to connect to this MySQL server” message as shown below. $ mysql -h 192.168.1.8 -u root -p Enter password: ERROR 1130: Host ‘192.168.1.4’ is not allowed […]