netmon
I hope it helped. Feel free to comment...
/etc/init.d/mysql restart
I hope it helped. Feel free to comment...
/etc/init.d/mysql restart
gcutil addfirewall http2 --description="Incoming http allowed." --allowed="tcp:http"https://developers.google.com/compute/docs/quickstart
sudo apt-get install apache2-utils
mysql -u mysql_user -p dabase_name < /path/import_file_name.sqlIt will ask for the password, enter the mysql password and your sql script will be executed.
mysqldump -h localhost -u mysql_user -pMysql_password database_name | gzip > /path/export_file_name_$(date +%m-%d-%Y).sql.gz$(date +%m-%d-%Y) is optional. It inserts today's date in the file name. You can also use this export command without $(date +%m-%d-%Y)
mysqldump -h localhost -u mysql_user -pMysql_password database_name | gzip > /path/export_file_name_$(date +%m-%d-%Y).sql.gz
gzip -d file.sql.gz