For testing, you only need to provide the basic 4 cores CPU and 8G RAM, and then follow the below command to install the CX Application and Midware on the same machine.
NOTE: Please follow Installing Cloud CX on Linux[Newest Version] | Preparing the Linux Host Machine for CloudCX application Installation Before Started and Server Specifications to complete the Basic installation environment.
Testing Server Installation Steps
...
1. Installation Steps
Make directory and change directory
...
Note: /opt/cloud_cx/ is an example here, you can change to your directory name, and this directory will store user data.
Download install scripts
Code Block |
---|
curl https://raw.githubusercontent.com/cloud-cx/cloudfon-cx-install/main/v3v4.30.x0/cloud_cx_ctl.sh -o cloud_cx_ctl.sh |
Code Block |
---|
curl https://raw.githubusercontent.com/cloud-cx/cloudfon-cx-install/main/v3v4.20.x0/install_docker_cx.sh -o install_docker_cx.sh |
Note: cloud_cx_ctl.sh is an example here, you can download and rename to your name.
Install docker environment and configure firewall.
Code Block |
---|
/bin/sh install_docker_cx.sh |
Install CX Application Service
Code Block |
---|
sh cloud_cx_ctl.sh run -i puteyun/cloud_cx:${tag} |
Note: Please MUST replace the Variables in the above command with the correct value
${tag} is the release version of CloudCX, for example: 35.2.31
Login and configure the
...
CloudCX.
Open Browser, input “https://host:9006/”, the “host” is the IP address or domain name of your CloudCX server (Linux Server).
Info |
---|
IMPORTANT: To complete CloudCX initial configuration, please refer to 'System initialization ' guide. |
2. CloudCX Control Commands
Show CloudCX services status
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh status |
Restart CloudCX services
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh restart |
Restart the selected service of CloudCX
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh restart -s [Service Name] |
Stop CloudCX Services
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh stop |
Stop the selected service of CloudCX
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh stop -s [Service Name] |
Start CloudCX Services
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh start |
Start the selected service of CloudCX
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh start -s [Service Name] |
Uninstall CloudCX Services
Code Block |
---|
cd /opt/cloud_cx && /bin/sh cloud_cx_ctl.sh rm |