Skip to content

Instantly share code, notes, and snippets.

@dtuite
Created March 24, 2013 19:58
Show Gist options
  • Save dtuite/5233276 to your computer and use it in GitHub Desktop.
Save dtuite/5233276 to your computer and use it in GitHub Desktop.
Pulling data from Linode with Taps

Start server on Linode

taps server postgres://[DB_USER]:[DB_PASSWORD]@localhost/[DB_NAME] [USER_NAME] [USER_PASSWORD]

where:

  • DB_USER is the name of the user for the database we want to pull from.
  • DB_PASSWORD is the password of that user.
  • DB_NAME is the name of the database to pull from.
  • USER_NAME is the unix user account.
  • USER_PASSWORD is that user's password.

Pull from Linode

taps pull sqlite://db/development.sqlite3 http://[USER_NAME]:[USER_PASSWORD]@[LINODE_IP]:5000

where:

  • LINODE_IP is the IP address of the box.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment