Project

General

Profile

Support #670

Updated by Daniel Curtis over 8 years ago

This is a guide on installing the Galaxy Project along with Nginx and PostgreSQL on FreeBSD 9. 

 h2. Prepare the Environment 

 * Make sure the system is up to date: 
 <pre> 
 pkg update && pkg upgrade 
 </pre> 

 * Add the Galaxy user 
 <pre> 
 pw add user -n galaxy -m -s /bin/sh -c "Galaxy" 
 </pre>  

 * Install a few dependencies: 
 <pre> 
 pkg install python27 git gcc gmake autoconf automake libtool bison readline bisonreadline sqlite3 cmake postgresql94-client postgresql-libpqxx 
 </pre> 

 h2. Install Galaxy Project 

 * Switch to the galaxy user: 
 <pre> 
 su - galaxy 
 </pre> 

 * Download the latest source code: 
 <pre> 
 git clone -b master https://github.com/galaxyproject/galaxy/ 
 </pre> 

 * Switch to the galaxy folder and start galaxy to download its dependencies: 
 <pre> 
 cd galaxy 
 sh run.sh 
 </pre> 

 h2. Resources 

 * https://wiki.galaxyproject.org/Admin/GetGalaxy 
 * https://wiki.galaxyproject.org/Admin/Config/Performance/ProductionServer

Back