Installing Presently Self-Hosted
Description
This Installation Guide contains detailed information on installing the Presently Enterprise Microblogging Platform on your own server. If you have trouble finding what you’re looking for, please use the search box in the top right-hand corner of the page.
Installation Steps
Please follow each of these steps in order.
- Sign Up for Presently Self Hosted if you haven’t already
- Download the license file to your machine.
- Rename that .lic file to script.lic.
- Open a command prompt your machine.
- Type the following commands to install the RPM:
$ yum -y update $ wget -O /etc/yum.repos.d/intridea.repo http://intridea-yum-repo.s3.amazonaws.com/repo/intridea.repo - If your system is x86_64 architecture, $ yum -y install presently-amq.x86_64 - If your system is i386 architecture, $ yum -y install presently-amq.i386 - If you already have MySQL installed on your machine you may skip this step and go to step 7. If not, please run the following command to install MySQL:
$ yum -y install mysql-server $ /etc/init.d/mysqld start $ mysqladmin -u root password 'your_password' $ mysqladmin -u root -pyour_password create 'presently_production' - Copy your license file to the Presently folder:
$ cp your_license_file_path /var/www/presently/script.lic - Run the following script, which will setup some additional libraries and populate your database with Present.ly related tables, start Presently-specific daemons, and starts Apache at the end:
$ /var/www/presently/script/install - Run “god status” to make sure everything is up. If not, run the following commands to initiate God process monitoring for Presently:
$ cd /var/www/presently/ $ god $ god load config/monitor.god - Visit the Presently URL you created during the installation process and login with admin credentials.
Example: http://presently.mycompany.com - That’s it!