-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
353 additions
and
94 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# AWS Infrastructure Notes | ||
|
||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Digital Ocean to AWS migration | ||
|
||
The migration from Digital Ocean to Amazon Web Services has our hosting provider will | ||
increase Specify's reliability and security. | ||
|
||
Since MySQL 5.7 is now deprecated, we are now using MariaDB v10.11. In the future we | ||
hope to upgrade to PostgreSQL | ||
|
||
The database backups will be further improved by storing daily backups for a month | ||
|
||
For connecting Specify6 to the database via ssh, two things have changed, there will be | ||
no root login to the server, and the IP address for the database. The Linux user name | ||
will be the same as in your institution's url, but with | ||
underscore `_` replacing dashes `-` | ||
|
||
Here are the new database IPs (they have been updated in the wiki [here] | ||
(https://github.com/specify/specify7/wiki/Specify-6-Remote-Access): | ||
NA: `172.31.96.36` | ||
EU: `172.31.16.73` | ||
CA: `172.31.35.249` | ||
|
||
Here is an example | ||
On Linux/Mac`ssh -N -L3307:xxx.xx.xx.xx:3306 [email protected]` | ||
On Windows PuTTY target | ||
|
||
```commandline | ||
C:\Program Files\PuTTY\putty.exe -ssh -i C:\users\your_user\private_key_.ppk \ | ||
[email protected] -L 3307:xxx.xx.xx.xx:3306 -N` | ||
``` | ||
|
||
For now, you will log into the database as `master` with the same previous passwords, | ||
but we will soon be creating database user for each institution. |
Oops, something went wrong.