/
First installation

First installation

  1. Create a directory on the server where the application will be unpacked:
    mkdir -p 3yd_vXXX && cd 3yd_vXXX

  2. Download the archive package from the link provided by the 3YD Technical Support team:
    curl -o 3yd_vXXX.tgz “Download Link“
    Note: The link should be surrounded in double quotes ““ as it contains symbols interpreted as special characters by the bash shell

  3. Unpack the installation package: tar -zxvf 3yd_vXXX.tgz

  4. Create a folder where the uploads will be stored called UPLOADS_DIR. (Must be an absolute path like /home/ubuntu/UPLOADS_DIR)
    mkdir -p $HOME/UPLOADS_DIR

  5. Obtain the domain name under which the application should be reachable (e.g app.example.com)
    Note: We recommend exporting the two variables above in your .bashrc
    vim ~/.bashrc or nano ~/.bashrc to open and edit the .bashrc file
    Append the code to the end of the file

    export DOMAIN=yourDomainName.xxx export UPLOADS_DIR=/home/ubuntu/UPLOADS_DIR

    Reload your ./bashrc with source ~/.bashrc

  6. Run the install script:

    sudo ./install.sh $DOMAIN $UPLOADS_DIR; exec bash -l

  7. You can now make changes to the configuration file values.yaml.
    See Configuration for more details.

  8. Apply the changed configuration:

    sudo ./upgrade.sh

  9. Check the status of the application:

    kubectl get pods

No labels



Related content

Configuration
Read with this
Update the 3YD app to the next version
Update the 3YD app to the next version
More like this
Installation on Bare-metal Server
Installation on Bare-metal Server
Read with this
Installation into existing Kubernetes cluster (EKS, AKS, GKE)
Installation into existing Kubernetes cluster (EKS, AKS, GKE)
More like this
Domain or hostname configuration
Domain or hostname configuration
Read with this
3yd.sh -utility tool for managing Bare-Metal installation deployments
3yd.sh -utility tool for managing Bare-Metal installation deployments
More like this