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.1 RLINK Deployment
- Log into the server using the root account, and upload the installation package rcms-web-package.tar.gz to the root directory.
- Decompress the installation package:
tar -zxvf rcms-web-package.tar.gz
- Modify the configuration file:
cd /root/rcms-web-package && vi config.conf
- Execute the automated deployment command:
cd /root/rcms-web-package && bash install-web.sh
2.2 RVPN Deployment
- Log into the server using the root account, and upload the installation package rcms-web-package.tar.gz to the root directory.
- Decompress the installation package:
tar -zxvf rcms-web-package.tar.gz
- Modify the configuration file:
cd /root/rcms-web-package && vi config.conf
- Execute the automated deployment command:
cd /root/rcms-web-package && bash install-rvpn.sh
2.3 Post-Deployment Access
- Access the backend management system and create a company:
https://[domain]:9980
Default Administrator Credentials:
Username: sadmin@rt.com
Password: Aa123456! - 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