An ansible playbook for installing and configuring confluence
Example run: ansible-playbook confluence.yml --ask-vault-pass
This playbook is tested on a fresh Ubuntu 16.04 sever install.
Defaults:
- username: ubuntu
- package_mgnt apt
- hostsfile: hosts
- database: postgres
Files you need to look at and most likely edit
hosts
- check the IP address matches your desinationconfluence.yml
- update the binary file name
- update the URL to where the above file is found
- Ansible Vault is needed to unlock and use the postgress password.
This playbook installs confluence. The process is not fully automated. You will need to do the following things:
- Grab a backup of the current confluence system (See the five (5) backup steps below)
- Set up a server, installing ubuntu 16.04, then run this playbook.
- Browse the server
http://<ip_address:8090
and perform the post install steps below - ssh into the confluence server and do these steps:
-
This playbook installs confluence in /opt/atlassian/, so start confluence like this:
sudo ./opt/atlassian/confluence/bin/start-confluence.sh
-
Set the path, in our case we want to use "/wiki" Example: https://alta3.com/wiki
sudo vim /opt/atlassian/confluence/conf/server.xml
and editcontext path=
to be"/wiki"
:`<context path="/wiki" docBase="../confluence" debug="0" reloadable'"false" useHttpOnly="true">`
-
edit the
confluence.cfg.xml
filesudo vim /var/atlassian/application-data/confluence/confluence.cfg.xml
and Look for this line and add/wiki
as follows:`<property name="confluence.webapp.context.path">/wiki</property>`
-
sudo su
to becomre root -
crontab -e
and select vim, to create a cron job as root -
Add this line of code to the crontab:
@reboot ./opt/atlassian/confluence/bin/start-confluence.sh
-
Things we'd like to add
- add backup management to the cron
Log into confluence as admin and click here
Scroll down to near the bottom of the screen, and on the left nav bar, click Backup & Restore
Make sure "Back up attachments is checked and click the Back Up button
In about 10 to 15 seconds, you will be told where you backup is waiting for you.
Before you ask, NO, it does not download to your browser! That would be way to easy.
SCP into the server and grab a copy of that file. Here is a screen shot of the deed being done with winSCP.