RCMS Stack On Prem Installation Guide

1. Environment Check

Execute the following script to check the installation status of CPU, memory, system disk, data disk, and basic tools:

bash check_vm_resources.sh

2. Deployment Execution

2.2 RVPN Deployment

  1. Log into the server using the root account, and upload the installation package rcms-web-package.tar.gz to the root directory.
  2. Decompress the installation package:
    tar -zxvf rcms-web-package.tar.gz
  3. Modify the configuration file:
    cd /root/rcms-web-package && vi config.conf
  4. Execute the automated deployment command:
    cd /root/rcms-web-package && bash install-rvpn.sh

2.3 Post-Deployment Access

  1. Access the backend management system and create a company:
    https://[domain]:9980

    Default Administrator Credentials:
    Username: sadmin@rt.com
    Password: Aa123456!

  2. Access the RCMS Company Interface:
    https://[domain]

    Use the account and password created in step 1 to log in.

3. Appendix

3.1 Path Information

  • Installation Log Directory: /root/rcms-web-package/logs
  • Application Configuration Directory: /opt/rcms/conf
  • Application Data and Package Directory: /opt/rcms/data
  • Application Log Directory: /opt/rcms/log

3.2 Docker Commands

  • View Container List:
    docker ps
  • View Container Real-time Logs:
    docker logs --tail=100 -f [Container Name]
  • Restart Container:
    docker restart [Container Name]

3.3 Check Syslog Port Status

Check the status of the Syslog Port (514):

netstat -tunlp | grep 514