...
Code Block | ||
---|---|---|
| ||
cd /var/tmp/Roost/
curl -L https://remote-roostprod.s3.us-west-1.amazonaws.com/RoostInstaller -o RoostInstaller
chmod +x RoostInstaller
# Install the AWS S3 key under admin sub-folder
mkdir /var/tmp/Roost/admin;
|
Code Block | ||
---|---|---|
| ||
# Install the AWS S3 Access keys (one-time) - unique to your organisation
cat > /var/tmp/Roost/admin/installer_keys.csv <<EOF
User name,Password,Access key ID,Secret access key,Console login link
roost_beyond,,XAKIA4WFI752EX2KH46OY,4cNS6MvZrH1tWZ8WdyKVWbZklHMnpfmsHV+qrqlU,https://zbio.signin.aws.amazon.com/console
EOF |
...
Code Block | ||
---|---|---|
| ||
# Replace tryroost.link with enterprise server url
/var/tmp/Roost/RoostInstaller -command write -entServer "tryroost.link" -desiredVersion v1.0.2
# Execute below command to get necessary files
/var/tmp/Roost/RoostInstaller -command setup |
5.2 Create Roost Schema
Code Block | ||
---|---|---|
| ||
# supply password at prompt sudo mysql -h <RDS URL> -u <> -P 3306 -p \. /var/tmp/Roost/db/roost.sql # CREATE USER 'roost'@'localhost' identified WITH mysql_native_password by 'zbioRoost#123'; # GRANT ALL on *.* to 'roost'@'localhost'; |
...