Anchor | ||||
---|---|---|---|---|
|
PrivateServer runs a plethora of services, each one committed to its result. Some of them are strictly related and bounded to offer the secure voice connection. These are:
- MySQL
- Asterisk
- Asterisk-Trunk
Equally important is the Tomcat service, which provides the web console and thus is responsable for the management the of Asterisk/VoIP via the graphical appliance. This means that Tomcat itself is not mandatory to run the Secure Call service itself, but is very important considering the service as a whole and so including its configuration and management as well.
The SSH service is mandatory to perform a deep service analysis, so it is a required resource to be checked first,
6.2 What should we check?
The checks are related to the services performances on the server, meaning that we are not going to measure the bandwidth usage or the external reachabilty for each service. Instead we are going to check that the PrivateServer is correctly running the application beside each service exposed.
6.3 How to perform checkings
Besides the NOC operations running, which might warn you about any service problem, we will explain how to perform a direct check-up of the single services. This means to get sure that each service is running and is bound to the expected NIC as a first step. Once assured about this, it means also to get sure that each service is properly responding. "Properly" means within an expected time and furnishing correct informations along with the way you configured it.
6.3.1 Web Console/Tomcat
First of all you make sure that the Web Console (meaning the Tomcat service) is reachable and running. Use your preferred browser and point it to the Login page, as you did in the First Access Paragraph. Just remember to use the actual IP address and login/password pair for administrator, if you changed any of the above.
If you reach the login page, then the Tomcat and its related application are most probably running fine. If not, then jump to the "6.3.2 SSH" paragraph and from the command line restart the service:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# service tomcat6 stop Stopping tomcat6: [ OK ] [root@ha1 ~]# service tomcat6 start Starting tomcat6: [ OK ] |
Wait 5/6 seconds to let the Tomcat set up itself completely and then try again to access the Web Console.
6.3.1.1 Preliminary service check
After you get in, please choose the "Application" menu entry from the left side menu (main menu), under the "Server Configuration" section. You get the "Edit Application" page, as shown in fig. 6.3.1-1.
fig. 6.3.1-1: Edit Applications page (just one NIC)
Make sure that each application is active on the expected interface. If not, please change the settings accordingly with your needs as described in Applications Settings paragraph (add link). After you're done, check if now the service you are testing is working fine.
If after such modification the service is still causing trouble or if you just want to perform deeper analysis, then go on reading.
6.3.2 SSH
Now you know for sure that the SSH service is running on the expected NIC, let's try to reach it. Open you SSH client and connect to the IP address you configured on the NIC you bonded the SSH service. We don't give you detail about ssh client setup as you are expected to know how to deal with it.
Login using the root user and its password (understand how we manage the root password?). Once you're in you get sure that the SSH service is running as expected.
6.3.3 MySQL
MySQL provides the data base for the entire appliance. Thus if it's not working properly, or worse not running at all, the expected outcomes are that no other service is working. We need first to make sure MySQL is up.
6.3.3.1 Check if MySQL process deamon is running at all
Stay in the SSH console and make sure MySQL is running. First check if the mysql.pid file is present. This file is created at the MySQL service boot, so its presence is an evidence the service has been started:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# ls /var/run/mysqld/mysqld.pid /var/run/mysqld/mysqld.pid |
Next step is to control that the spoken file is not empty and that it really contains the process id of the MySQL deamon:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# cat /var/run/mysqld/mysqld.pid 1405 |
Now we got such number, we can use it to perform a process search to ensure the process is still in running state:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# ps auxw | grep `cat /var/run/mysqld/mysqld.pid` mysql 1405 0.0 3.7 715880 38516 ? Sl Apr06 6:25 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock |
If anything of the above steps went wrong, then we try to start the service once again manually and check if any problems arise during the process:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# service mysqld stop Stopping mysqld: [ OK ] [root@ha1 ~]# service mysqld start Starting mysqld: [ OK ] |
6.3.4 Asterisk
The Asterisk service is splitted into two different sub-services which are the SIP service for PrivateGSM Users and the SIP Trunk to perform end-to-site calls directed to a local PBX. First we assure that the main process is alive:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# service asterisk status asterisk (pid 16418) is running... |
Then we try to connect to the Asterisk command line interface:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# rasterisk -rvvv Asterisk 1.8.9.1, Copyright (C) 1999 - 2011 Digium, Inc. and others. Created by Mark Spencer <markster@digium.com> Asterisk comes with ABSOLUTELY NO WARRANTY; type 'core show warranty' for details. This is free software, with components licensed under the GNU General Public License version 2 and other licenses; you are welcome to redistribute it under certain conditions. Type 'core show license' for details. ========================================================================= == Parsing '/etc/asterisk/asterisk.conf': == Found == Parsing '/data/etc/asterisk/maxcalls.conf': == Found Setting max files open to 65536 [Apr 13 12:49:20] Connected to Asterisk 1.8.9.1 currently running on ha1 (pid = 16418) |
inside the console we raise the information level:
Code Block | ||||
---|---|---|---|---|
| ||||
ha1*CLI> core set debug 99 Core debug was 0 and is now 99 ha1*CLI> core set verbose 99 Verbosity was 0 and is now 99 ha1*CLI> |
This would notice us as soon as any trouble arises. The particular troubleshooting about Asterisk can't be covered in this manual and we ask you to refer to the specific Asterisk documentation (http://www.asterisk.org).
If the status check returns an error such as:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# service asterisk status asterisk is stopped |
Then you can try to run the Asterisk daemon manually, having particular attention to the console error messages if any:
Code Block | ||||
---|---|---|---|---|
| ||||
[root@ha1 ~]# service asterisk start Starting asterisk: Setting max files open to 65536 [ OK ] [root@ha1 ~]# service asterisk status asterisk (pid 31716) is running... |
Tip |
---|
If you want to exit the Asterisk CLI, just insert the "quit" command and press Enter button |
6.3.5 Asterisk Trunk
Note |
---|
The checks about Asterisk's trunk(s) have to be performed only in case of sip trunk configurations. Refer to 2.5 Sip Trunk(s) configuration. |
If you have a Trunk configured, then you can go further. From the Asterisk CLI (refer to the previous paragraph) you can perform a check of the trunk registration:
Code Block | ||||
---|---|---|---|---|
| ||||
ha1*CLI> sip show registry Host dnsmgr Username Refresh State Reg.Time sip.messagenet.it:5060 N xxxxxxx 105 Registered Fri, 13 Apr 2012 16:52:21 |
In the case shown above we have a correct trunk registration. Else the output is empty, so you have to check your trunk settings.
Warning |
---|
Remember that sip Trunks are UDP and this can trigger firewall settings |