-
Notifications
You must be signed in to change notification settings - Fork 37
Installing and Running Overview
Follow these instructions to get your very own Overview server up and running. It's a bit more work than just using overviewproject.org, but provides much higher security as your documents will never leave your own computer.
- Install the Postgres database from http://www.enterprisedb.com/products-services-training/pgdownload#windows. (This is what PostgreSQL officially recommends.)
- First, click the relevant download: either "Win x86-32" or "Win x86-64". (If you know you're using 64-bit Windows, choose the "64". If you're unsure, choose "32".)
- When prompted to save or run, choose "Run". Choose "Yes" when prompted to make changes to your computer.
- Click "Next", "Next", "Next". (Don't change the installation directory, or Overview won't work.)
- When asked for a password, enter
postgrestwice. (You can enter anything, really; Overview ignores this completely, and you won't ever need to type it in again.) - Click "Next", "Next", "Next"
- Uncheck the "Stack Builder" checkbox, then click "Finish"
- (If you care, open your "Control Panel", go to "Administrative Tasks", "Services", "Postgresql" and change "Startup Type" to "Manual". Overview needs PostgreSQL to be installed, but it doesn't need it to be running so you can disable it.)
- Install Java 7. (It might be installed already; you can check in "Programs" in the Control Panel.)
- Browse to https://www.java.com and click "Free Java Download".
- Click "Agree and Start Free Download". When prompted, choose "Run" and "Yes".
- Click "Install"
- Uncheck "Install the Ask Toolbar" and click "Next".
- Click "Close". A web browser window will pop up; you may close it.
- Download the latest release of
overview-server-YYYYMMDDRR.zipfrom https://github.com/overview/overview-server/releases. - Extract all the files from this zip file into a folder.
- Inside the extracted folder, double-click on
Overview. - Browse to http://localhost:9000 and log in as
[email protected]with password[email protected].
-
First you will need the Postgres database software. The easiest way is to download and install from http://postgresapp.com
-
Next you will need Java 7 installed (if it is not installed already. Go to System Preferences and look for the Java icon to see if Java is installed, and if so, what version.) Get Java 7 here: http://www.java.com/en/download/index.jsp
-
Then download the latest Overview release which will have a filename like
overview-server-YYYYMMDDRR.zipfrom https://github.com/overview/overview-server/releases. -
Unzip it, and open a Terminal window in the directory where all of the files are unzipped. You will need to
cdinto this directory. -
Type
./run. The server is ready when you see the following message:[overview-server] [info] play - Application started (Prod) [overview-server] [info] play - Listening for HTTP on /0:0:0:0:0:0:0:0:9000
-
Open your web browser and go to
localhost:9000. You should see a login screen! Login with the default username and password of[email protected]and you are done!
Warning We support Overview on Ubuntu Linux 14.04 LTS and above. (Really, we support any distribution that includes Postgresql 9.3 or above.) Older versions of Postgresql might not work perfectly.
First, download the latest release of overview-server-YYYYMMDDRR.zip from https://github.com/overview/overview-server/releases. Done? Now you have two ways to install it.
Just run this:
sudo apt-get install openjdk-7-jre-headless postgresql
unzip /path/to/overview-server-YYYYMMDDRR.zip
cd overview-server-YYYYMMDDRR
./run
Leave that running, browse to http://localhost:9000 and log in as [email protected] with password [email protected].
To quit, press Ctrl+C where ./run is running. Don't worry: your data is safe no matter when you quit.
- Using Ubuntu Software Center, install
openjdk-7-jre-headlessandpostgresql. - Move
overview-server-YYYYMMDDRR.zipsomewhere where you know you can find it again. - Right-click on
overview-server-YYYYMMDDRR.zipand clickExtract here. - Double-click on the new
overview-server-YYYYMMDDRRfolder. - Wait for the colorful text to stop scrolling in the terminal that pops up.
- Browse to http://localhost:9000 and log in as
[email protected]with password[email protected].
To quit, close the terminal. Don't worry: your data is safe no matter when you quit.
Want to download a new version? Download it from https://github.com/overview/overview-server/releases and then:
- Quit the old version of Overview.
- Extract the new version (probably near where you extracted the old version).
- Copy the
databasefolder from the firstoverview-YYYYMMDDRRfolder into the secondoverview-YYYYMMDDRRfolder. - Copy the
datasubfolder of thesearch-indexfolder from the firstoverview-YYYYMMDDRRfolder into the secondoverview-YYYYMMDDRRfolder'ssearch-indexsubfolder. (Got that? You're copyingoverview-server-1111111111/search-index/dataso it becomesoverview-server-2222222222/search-index/data.) - Run the new version of Overview.