Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
eb5d9f91
Commit
eb5d9f91
authored
Sep 25, 2018
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Database
parent
7a40204e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
36 deletions
+48
-36
doc/install/aws/img/rds_subnet_group.png
doc/install/aws/img/rds_subnet_group.png
+0
-0
doc/install/aws/index.md
doc/install/aws/index.md
+48
-36
No files found.
doc/install/aws/img/rds_subnet_group.png
0 → 100644
View file @
eb5d9f91
29.4 KB
doc/install/aws/index.md
View file @
eb5d9f91
...
@@ -86,7 +86,7 @@ Let's create a VPC:
...
@@ -86,7 +86,7 @@ Let's create a VPC:
![Create VPC](img/create_vpc.png)
![Create VPC](img/create_vpc.png)
### Subnet
### Subnet
s
Now, let's create some subnets in different Availability Zones. Make sure
Now, let's create some subnets in different Availability Zones. Make sure
that each subnet is associated the the VPC we just created and
that each subnet is associated the the VPC we just created and
...
@@ -105,12 +105,12 @@ RDS instances as well:
...
@@ -105,12 +105,12 @@ RDS instances as well:
1.
Follow the same steps to create all subnets:
1.
Follow the same steps to create all subnets:
| Name tag | Availability Zone | CIDR block |
| Name tag |
Type |
Availability Zone | CIDR block |
| -------- | ----------------- | ---------- |
| -------- | ----
| ---
------------- | ---------- |
| gitlab-public-10.0.0.0 | us-west-2a | 10.0.0.0 |
| gitlab-public-10.0.0.0 |
public |
us-west-2a | 10.0.0.0 |
| gitlab-private-10.0.1.0 | us-west-2a | 10.0.1.0 |
| gitlab-private-10.0.1.0 |
private |
us-west-2a | 10.0.1.0 |
| gitlab-public-10.0.2.0 | us-west-2b | 10.0.2.0 |
| gitlab-public-10.0.2.0 |
public |
us-west-2b | 10.0.2.0 |
| gitlab-private-10.0.3.0 | us-west-2b | 10.0.3.0 |
| gitlab-private-10.0.3.0 |
private |
us-west-2b | 10.0.3.0 |
### Route Table
### Route Table
...
@@ -163,7 +163,7 @@ Now that we're done with the network, let's create a security group.
...
@@ -163,7 +163,7 @@ Now that we're done with the network, let's create a security group.
## Creating a security group
## Creating a security group
The security group is basically the firewall
.
The security group is basically the firewall
:
1. Select **Security Groups** from the left menu.
1. Select **Security Groups** from the left menu.
1. Click on **Create Security Group** and fill in the details. Give it a name,
1. Click on **Create Security Group** and fill in the details. Give it a name,
...
@@ -184,44 +184,56 @@ The security group is basically the firewall.
...
@@ -184,44 +184,56 @@ The security group is basically the firewall.
## PostgreSQL with RDS
## PostgreSQL with RDS
For our database server we will use Amazon RDS which offers Multi AZ
For our database server we will use Amazon RDS which offers Multi AZ
for redundancy. Lets start by creating a subnet group and then we'll
for redundancy. Let
'
s start by creating a subnet group and then we'll
create the actual RDS instance.
create the actual RDS instance.
### RDS Subnet Group
### RDS Subnet Group
From the RDS dashboard select Subnet Groups. Lets select our VPC from
1. Navigate to the RDS dashboard and select **Subnet Groups** from the left menu.
the VPC ID dropdown and at the bottom we can add our private subnets.
1. Give it a name (`gitlab-rds-group`), a description, and choose the VPC from
the VPC dropdown.
1. Click on "Add all the subnets related to this VPC" and
remove the public ones, we only want the **private subnets**.
In the end, you should see `10.0.1.0/24` and `10.0.3.0/24` (as
we defined them in the [subnets section](#subnets)).
Click **Create** when ready.
![Subnet
Group](img/db-subnet-
group.png)
![RDS Subnet Group](img/rds_subnet_
group.png)
### Creating the database
### Creating the database
Select the RDS service from the Database section and create a new
Now, it's time to create the database
:
PostgreSQL instance. After choosing between a Production or
Development instance we'll start with the actual configuration. On the
1. Select **Instances** from the left menu and click on **Create database**.
image bellow we have the settings for this article but note the
1. Select PostgreSQL and click **Next**.
following two options which are of particular interest for HA
:
1. Since this is a production server, let's choose "Production". Click **Next**.
1. Let's see the instance specifications
:
1. Leave the license model as is (`postgresql-license`).
1. For the version, select the latest of the 9.6 series (check the
[database requirements](../../install/requirements.md#postgresql-requirements))
if there are any updates on this).
1. For the size, let's select a `t2.medium` instance.
1. Multi-AZ-deployment is recommended as redundancy, so choose "Create
replica in different zone". Read more at
[High Availability (Multi-AZ)](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.MultiAZ.html).
1. A Provisioned IOPS (SSD) storage type is best suited for HA (though you can
choose a General Purpose (SSD) to reduce the costs). Read more about it at
[Storage for Amazon RDS](http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html).
1. The rest of the settings on this page request a DB isntance identifier, username
and a master password. We've chosen to use `gitlab-ha`, `gitlab` and a
very secure password respectively. Keep these in hand for later.
1. Click on **Next** to proceed to the advanced settings.
1. Make sure to choose our gitlab VPC, our subnet group, set public accessibility to
**No**, and to leave it to create a new security group. The only additional
change which will be helpful is the database name for which we can use
`gitlabhq_production`. At the very bottom, there's an option to enable
auto updates to minor versions. You may want to turn it off.
1. When done, click **Create database**.
1. Multi-AZ-Deployment is recommended as redundancy. Read more at
---
[
High Availability (Multi-AZ)
]
(http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.MultiAZ.html)
1. While we chose a General Purpose (SSD) for this article a Provisioned
IOPS (SSD) is best suited for HA. Read more about it at
[
Storage for Amazon RDS
]
(http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html)
![RDS
Instance Specs](img/instance_specs.png)
The rest of the setting on this page request a DB identifier, username
and a master password. We've chosen to use `gitlab-ha`, `gitlab` and a
very secure password respectively. Keep these in hand for later.
![Network
and Security](img/rds-net-opt.png)
Make sure to choose our gitlab VPC, our subnet group, not have it public,
and to leave it to create a new security group. The only additional
change which will be helpful is the database name for which we can use
`
gitlabhq_production`.
***
Now that the database is created, let's move on setting up Redis with ElasticCache.
## Redis with ElastiCache
## Redis with ElastiCache
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment