Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Procedures for installing on EC2 #27

Open
jerryhall opened this issue Jan 15, 2017 · 0 comments
Open

Procedures for installing on EC2 #27

jerryhall opened this issue Jan 15, 2017 · 0 comments

Comments

@jerryhall
Copy link

I tripped up a number of times trying to install this on my AWS instance and thought this might help:
Environment: Centos 6 - AWS EC2 - Postgres 95 - Python 2.7
Installing this PG Extension w/o pgxn
//no extra sudos, nothing different than this:

$ cd /tmp
$ mkdir /tmp/temp_tables
$ cd /tmp/temp_tables
$ git clone https://github.com/arkhipov/temporal_tables.git
$ make //don't do in sudo)
$ sudo make install
$ make installcheck //don't do in sudo) //http://stackoverflow.com/questions/37661605/how-to-set-user-for-installcheck-in-the-makefile-of-a-postgres-extension
$ PGUSER=postgres make installcheck
$ su - postgres //login as postgres (pg root)
$ psql postgresql //connect to db named postgres
$ CREATE EXTENSION temporal_tables; //create extension
for usage see: //https://github.com/arkhipov/temporal_tables

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant