Skip to content

Commit

Permalink
Updated deployment guide (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin Cornwell authored Oct 9, 2020
1 parent 9edf728 commit e3a2792
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions docs/deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ The system deployed is shown in the diagram below.
* Bare Metal
* Virtual Machine
* EC2 instance (ami-0affd4508a5d2481b in us-east-1)
* SELinux is disabled

This can be achieved by running the following command:

```bash
sudo setenforce 0;
```

## Deploy

Expand All @@ -28,7 +35,7 @@ The system deployed is shown in the diagram below.
sudo yum install -y ansible
```

3. Clone the repository to the machine you wish to deploy to (How will we distribute the playbooks?)
3. Clone the repository to the machine you wish to deploy to

```bash
git clone https://github.com/Alfresco/alfresco-ansible-deployment.git
Expand Down Expand Up @@ -57,8 +64,11 @@ The system deployed is shown in the diagram below.
ansible-playbook -i inventory playbooks/acs.yml
```

> NOTE: The playbook takes around 30 minutes to complete.

8. Access the system using the following URLs using a browser on the same machine:
* Digital Workspace: ```/```

* Digital Workspace: ```/digital-workspace```
* Share: ```/share```
* Repository: ```/alfresco```

Expand All @@ -72,6 +82,10 @@ You will find the Alfresco specific files in the following locations:
| ```/var/opt/alfresco``` | Data |
| ```/var/log/alfresco``` | Logs |

## Known Issues

* The playbook downloads several large files so you will experience some pauses while they transfer and you'll also see the message "FAILED - RETRYING: Check on war download async task (283 retries left)." appearing many times as the WAR file downloads.
## Troubleshooting
The best place to start if something is not working are the log files, these can be found in the following locations:
Expand Down

0 comments on commit e3a2792

Please sign in to comment.