Docs for all releases
This section describes shell tools required for the deployment management of the system. All these tools are part of the JeraSoft Billing distributive. In order to use the tools you will need either SSH or direct access to the server console. Some of the tools require root permissions to run.
Important!
Please use these tools only if you have a clear understanding of what you are doing. Misuse of the tools may cause improper functioning of the system.
Please note
For simplification, we introduced <APP_PATH> variable that refers to the JeraSoft Billing application files location. This location may differ, but typically it is "/opt/jerasoft/vcs". So whenever you see an example with a path like "<APP_PATH>/bin/system/cluster" it means "/opt/jerasoft/vcs/bin/system/cluster".
Requirements Checker
The tool is aimed to check the minimal requirements and security recommendations of your server before and after installation.
<APP_PATH>/bin/system/setup-checker
The tool requires root permissions and takes no arguments. It should be executed before installation of the system to check minimal hardware and software requirements.
Attention
The tool checks only minimal requirements. Real hardware requirements highly depend on your traffic and deployment model.
Safety Checker
The tool is aimed to check configuration of the main server settings after installation.
<APP_PATH>/bin/system/security-checks
The tool takes no arguments. When executed it performs numerous checks for the correctness of the network and server configuration.
Services Manager
The tool is used for the management of System Services. It allows you to correctly start, stop, and perform other actions over various JeraSoft Billing Services such as RADIUS Server, SIP Server, Calculator, etc.
<APP_PATH>/bin/system/service <COMMAND> [<service-name>] [<options>]
The tool should be run under root or vcs user. The tool typically takes 2 arguments – action to perform and related system service. Actions prefixed with "all-*" do not require a service name and operate over all services.
Command | Description |
---|---|
start | Start a System Service Takes "--wait" option to wait and exit only when the service finishes its execution. |
stop | Stop a System Service |
restart | Stop and then start a System Service |
reload | Send reload (HUP) signal to the System Service (forces reload of settings, connections, etc) |
status | Show the current status of the System Service |
all-start | Start all required System Services (the list of services varies depending on the role of the current node in the cluster) |
all-stop | Stop all running System Services |
all-status | Show the status of all System Services on the current node |
Usage Examples
<APP_PATH>/bin/system/service restart bbradiusd
<APP_PATH>/bin/system/service start files_downloader
<APP_PATH>/bin/system/service all-start
The tool also complies with LSB Init Scripts standard. It allows you to analyze the exit code of each action in case of automated usage.
Cluster Manager
The tool is used to manage nodes in the cluster deployment. It allows initialization of the cluster, adding a new node, promoting slave to master, etc.
<APP_PATH>/bin/system/cluster <COMMAND> [<options>]
The tool requires root permissions. The list of arguments and other requirements depend on the command used. Please refer to the table below for a summary and respective sections for details.
Command | Description | Nodes | Root Required |
---|---|---|---|
status | Show status of the cluster | Any node | No |
init-master | Init Master Node configuration | Master | Yes |
init-slave | Init Slave Node configuration | Master | Yes |
promote | Promote current node to Master | Redundancy | Yes |
sync-files | Sync files from Master | Redundancy, Reporting, Processing | No |
remove-node | Remove Node from the Cluster | Master | Yes |
Cluster Status
The command shows Cluster Status, including all nodes with their roles, IP addresses, current lag to Master, and overall status.
<APP_PATH>/bin/system/cluster status
The command can be executed on the Master to get the most detailed information about the cluster:
Alternatively, the command can be executed at any other node - in this case, only the status of the connection between this particular node and the Master will be shown.
If any node failed and has been disconnected from the cluster, it will be shown like this:
In this case, you have to re-check failed node, fix it and then return to the cluster using the "init-slave" command.
Init Master
The command is used for the initial configuration of the Master Node.
<APP_PATH>/bin/system/cluster init-master <IP-ADDRESS> [<options>]
Command has to be executed on the Master node and requires root permissions. The following options are supported:
Option | Description | Default |
---|---|---|
<IP-ADDRESS> | IP Address of the Master server (required) | |
--ssh-port=<port> | SSH Port as the master node | 22 |
--pg-data=<path> | Path to PostgreSQL data directory | autodetect |
Init Slave
The command is used to add a node to the cluster. There are different contexts when it is required:
- First-time deployment of the cluster
- Addition of a new slave node to the cluster
- Addition of the old master to work as a slave after failover
<APP_PATH>/bin/system/cluster init-slave <IP-ADDRESS> [<options>]
Command has to be executed on the Master node and requires root permissions. The following options are supported:
Option | Description | Default |
---|---|---|
<IP-ADDRESS> | IP Address of the Slave server (required) | |
--role=<role> | Role of the new node:
| redundancy |
--ssh-port=<port> | SSH Port at the remote node | 22 |
--ssh-user=<user> | SSH User at the remote node | jerasupport |
--pg-data=<path> | Path to PostgreSQL data directory at the remove node | autodetect |
Promote to Master
The command is used to promote the Redundancy node to Master.
<APP_PATH>/bin/system/cluster promote
Command has to be executed on the Redundancy node and requires root permissions. Reporting node can be used as a last resort if there are no Redundancy node alive. There are no options required.
After the promotion is performed, all required System Services will be started on the current node (new master). After you fix the old Master, you may add it as a new Slave using the "init-slave" command.
Attention
In case when you have more than 2 nodes in the cluster, you need to re-init all other nodes from this new Master.
Sync Files
The command is used to sync data and application files from the Master.
<APP_PATH>/bin/system/cluster sync-files
Command has to be executed on the Redundancy node and by default, it is added to the crontab for automatic synchronization.
Remove Node
The command is used to remove a node from the cluster.
<APP_PATH>/bin/system/cluster remove-node <IP-ADDRESS>
Command has to be executed on the Master node. The node in question shouldn't have any active database replication. The following options are supported:
Option | Description | Default |
---|---|---|
<IP-ADDRESS> | IP Address of the remote node (required) | |