Managing Cluster

After successfully setting up the PortSIP PBX cluster, you can manage it easily.

Managing Servers

On each cluster server (not the PBX server), you can use the following commands to manage it.

In the commands, use the parameter -s to specify the service name, PortSIP PBX supports these services:

  • media-server-only

  • queue-server-only

  • meeting-server-only

  • vr-server-only

Start Server

cd /opt/portsip
sudo /bin/sh cluster_ctl.sh start -s media-server-only

You can replace the media-server-only with another service name such as mentioned above.

Restart Server

cd /opt/portsip
sudo /bin/sh cluster_ctl.sh restart -s media-server-only

Check Status

cd /opt/portsip
sudo /bin/sh cluster_ctl.sh status -s media-server-only

Stop Server

cd /opt/portsip
sudo /bin/sh cluster_ctl.sh stop -s media-server-only

Remove Server

cd /opt/portsip
sudo /bin/sh cluster_ctl.sh rm -s media-server-only

Managing IM Server

Start Server

cd /opt/portsip
sudo /bin/sh im_ctl.sh start

Restart Server

cd /opt/portsip
sudo /bin/sh im_ctl.sh restart

Stop Server

cd /opt/portsip
sudo /bin/sh im_ctl.sh stop

Check Status

cd /opt/portsip
sudo /bin/sh im_ctl.sh status

Remove Server

cd /opt/portsip
sudo /bin/sh im_ctl.sh rm

Adding Servers

As the scale of your business expands, you may need to add more servers to the existing cluster.

Currently, the IM server does not support cluster installations; it can be deployed as a standalone server. It can support up to 50,000 online users with a powerful CPU and memory(16 cores, 16GB). So there is no support to add more IM servers.

Please note that restarting the resource load balancer and servers will affect the calling service, so it is recommended to do this in the middle night.

Upgrading Servers

Whenever a new version of PortSIP PBX is released, it’s essential to upgrade your installed cluster servers as well. Follow the steps below to ensure a successful upgrade.

Upgrading the Main PBX Server

Upgrading Cluster Servers

Perform the below commands to download the latest scripts.

sudo curl \
https://raw.githubusercontent.com/portsip/portsip-pbx-sh/master/v22.x/init.sh  \
-o  init.sh
sudo /bin/sh init.sh

Use the below commands to upgrade the servers. We use the -s parameter to specify the server name.

Media Server

cd /opt/portsip && sudo /bin/sh cluster_ctl.sh upgrade \
-s media-server-only -i portsip/pbx:22

Queue Server

cd /opt/portsip && sudo /bin/sh cluster_ctl.sh upgrade \
-s queue-server-only -i portsip/pbx:22

IVR Server

cd /opt/portsip && sudo /bin/sh cluster_ctl.sh upgrade \
-s vr-server-only -i portsip/pbx:22

Meeting Server

cd /opt/portsip && sudo /bin/sh cluster_ctl.sh upgrade \
-s meeting-server-only -i portsip/pbx:22

Last updated