If you want to make application with remote database, you will need to grant database on your server to be accessed by your application. Now I will tell you how to grant access so your application can use mysql from your server.
Showing posts with label MySQL. Show all posts
Showing posts with label MySQL. Show all posts
Sunday, July 6, 2014
Enable Remote Access To Mysql Database Server Or On VPS Ubuntu
Saturday, April 5, 2014
Backup and Restore Database MySQL
For backup all databases
mysqldump -u username -ppassword --all-databases > /tmp/alldatabases.sqlFor backup spesific database
mysqldump -u username -ppassword --databases databasename > /tmp/filename.sqlFor restore
mysql -u username -ppassword databasename < /tmp/filename.sql
Subscribe to:
Posts (Atom)