Skip to content

Instantly share code, notes, and snippets.

@nicdoye
Created February 2, 2013 13:07
Show Gist options
  • Star 39 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save nicdoye/4697265 to your computer and use it in GitHub Desktop.
Save nicdoye/4697265 to your computer and use it in GitHub Desktop.
Backup your OpenShift MySQL database. My DB is only small so I didn't bother to compress it through a pipe. sftp it back from your local machine afterwards This is basically a quick hack from running "type mysql" on the OpenShift gear - hint: it's a bash function/alias
mkdir ~/app-root/data/tmp
mysqldump -h $OPENSHIFT_MYSQL_DB_HOST -P ${OPENSHIFT_MYSQL_DB_PORT:-3306} -u ${OPENSHIFT_MYSQL_DB_USERNAME:-'admin'} --password="$OPENSHIFT_MYSQL_DB_PASSWORD" --all-databases > ~/app-root/data/tmp//all.sql
@gautamkrishnar
Copy link

Thanks a lot 😄

@Ashaba
Copy link

Ashaba commented Aug 29, 2016

what could have gone wrong?
bash: rms.sql: Permission denied

@danielcooperxyz
Copy link

@siripuramrk
Copy link

Works!
Thank you.

@BillRizer
Copy link

Thanks :)

@ashim888
Copy link

Great

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment