...
Code Block | ||
---|---|---|
| ||
cd /var/tmp/Roost/ curl -L https://remote-roostprod.s3.us-west-1.amazonaws.com/RoostInstaller -o RoostInstaller chmod +x RoostInstaller # Replace roosttryroost.customer.iolink with enterprise server url /var/tmp/Roost/RoostInstaller -command setupwrite -entServer "roosttryroost.customer.iolink" -desiredVersion v1.0.12 # Execute below command to get necessary files /var/tmp/Roost/RoostInstaller -command setup |
5.2 Create Roost Schema
Code Block | ||
---|---|---|
| ||
sudo mysql -h <RDS URL> -u <> -P 3306 -p # CREATE USER 'roost'@'localhost' identified WITH mysql_native_password by 'zbioRoost#123'; # GRANT ALL on *.* to 'roost'@'localhost'; \. /var/tmp/Roost/db/roost.sql |
...