Search This Blog

Use WinSCP to Transfer Files in vCSA 6.7

This is a quick update on my previous post “Use WinSCP to Transfer Files in vCSA 6.5”. When I try the same SFTP server setting in vCSA 6.7, it doesn’t work. But it works when removing “shell” in the setting.

So for vCSA 6.7, the SFTP server setting in WinSCP is “/usr/libexec/sftp-server

Since I upgraded my vCSA 6.5 to 6.7, I cannot test if the setting without “shell” woks in vCSA 6.5 or not. Please test and comment if you have vCSA 6.5 available.

09/15/2021 Update:

Since I discovered the above WinSCP setting in May 2020, I had not transferred files to vCSA using WinSCP until today. But the above setting doesn't work anymore. My vCSA had been updated multiple times for 6.7 patches. 

My current vCSA version 6.7 Update 3n (6.7.0.48000). The WinSCP SFTP server setting needs to be "shell /usr/libexec/sftp-server", like vCSA 6.5.

So if you have need to transfer files to vCSA 6.7 via WinSCP, try one of the following settings

  • shell /usr/libexec/sftp-server
  • /usr/libexec/sftp-server

Nagios Core and NagiosQL Installation on CentOS 7

This post is to document my Nagios Core 4.4.6 and NagiosQL 3.4.1 installation on CentOS 7. They are the latest available version at the time of this writing (May 2020).

The main reason of this post is I cannot find the updated instruction to install the latest version of NagiosQL on CentOS 7. When I follow the instruction on the outdated blog posts, I run into some issues. For example, the official CentOS 7 repository only has PHP 5.4, but NagiosQL 3.4.1 requires PHP 5.5.0 or later; and MySQL is no longer in CentOS repository. Another reason is I want to install the latest version packages (e.g. PHP 7.4), instead of the older version.

Nagios Core and Nagios Plugins Installation on CentOS 7

I follow the instruction on Nagios Support Knowledgebase without any major issue. The only modification is to get the latest version of Nagios Core 4.4.6, instead of 4.4.5; and the latest version of the Nagios Plugin 2.3.3, instead of 2.2.1.

NagiosQL Installation on CentOS 7

1. Install PHP 7.4 from Remi and EPEL repositories

As I mention earlier, the official CentOS 7 repository only has PHP 5.4. This doesn’t meet the NagiosQL 3.4.1 requirement. You can check the installed PHP version by php -v.

yum install epel-release
yum install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum install yum-utils
### install PHP 7.4
yum-config-manager --enable remi-php74
yum install php php-mcrypt php-cli php-gd php-curl php-mysql php-ldap php-zip php-fileinfo
### verify PHP 7.4 is installed
php -v
2. Install MySQL from the community repository

I follow the instruction on this post without any issue.

wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
rpm -ivh mysql-community-release-el7-5.noarch.rpm
yum update
yum install mysql-server
systemctl start mysqld
### change MySQL root password, remove anonymous user accounts, disable root logins outside of localhost, and remove test databases
mysql_secure_installation
3. Install NagiosQL required packages
yum install libssh2 libssh2-devel mysql php-mysql php-pear php-devel
### install ssh2.so version 1.2 beta that support PHP 7.4
pecl install ssh2-1.2
### add extension=ssh2.so to /etc/php.ini under Dynamic Extensions
vi /etc/php.ini
4. Download and extract NagiosQL 3.4.1 archive in Nagios document root (/usr/local/nagios/share)
cd /usr/local/nagios/share
curl -L -O https://downloads.sourceforge.net/project/nagiosql/nagiosql/NagiosQL%203.4.1/nagiosql-3.4.1-git2020-01-19.tar.gz
tar xzf nagiosql-3.4.1-git2020-01-19.tar
mv nagiosql-3.4.1 webadmin
chown -R nagios:nagios webadmin/

### create the NagiosQL configuration directory
mkdir /usr/local/nagios/nagiosql
chown -R apache:apache /usr/local/nagios/nagiosql/
5. Set up PHP Timezone and restart Apache web server

See here to get the list of timezone

### set date.timezone = 'America/Los_Angeles'
vi /etc/php.ini

systemctl restart httpd
6. Start NagiosQL web installer
  • Open the URL in a browser: http://nagiosserver/nagios/webadmin/install/index.php
  • Click Start Installation
  • Verify the system meets all the requirements. Here is where I found out the PHP 5.4 in CentOS 7 doesn’t meet the requirement
  • Click Next
  • On NagiosQL Installation: Setup page
    • Enter NagiosQL DB password, root password (the root password is MySQL root password), and NagiosQL admin password
    • Check the checkboxes
      • “Drop database if already exists?”
      • “Import Nagios sample config?” (optional)
      • “Create NagiosQL config paths?”
    • set NagiosQL config path: /usr/local/nagios/nagiosql
    • set Nagios config path: /usr/local/nagios/etc
  • Click Next
  • On NagiosQL Installation: Finishing Setup page, it should be all green if everything is right
  • Delete the NagiosQL install directory
7. Access NagiosQL web UI
  • Open the URL in a browser: http://nagiosserver/nagios/webadmin
  • login with NagiosQL admin and password
8. Integrate NagiosQL with Nagios
  • Navigate to Administration -> Administration -> Config targets
  • Click Modify icon next to localhost
  • On Configuration domain administration page
    • Configuration directories section should be all set. No change is needed
    • Nagios configuration files and directories section, verify the following settings
      • Nagios base directory: /usr/local/nagios/etc/
      • Import directory: /usr/local/nagios/etc/objects/
      • Picture base directory: (blank)
      • Nagios command file: /usr/local/nagios/var/rw/nagios.cmd
      • Nagios binary file: /usr/local/nagios/bin/nagios
      • Nagios process file: /run/nagios.lock
      • Nagios config file: /usr/local/nagios/etc/nagios.cfg
      • Nagios cgi file: /usr/local/nagios/etc/cgi.cfg
      • Nagios resource file: /usr/local/nagios/etc/resource.cfg
    • Select 4.x in Nagios version
    • Leave Access group “Unrestricted access”
    • Check Active checkbox
    • Click Save
  • Edit Nagios Core configuration file
    • Edit Nagios configuration file /usr/local/nagios/etc/nagios.cfg
    • Comment all cfg_file and cfg_dir entries
    • Add the following cfg_file and cfg_dir entries
    cfg_file=/usr/local/nagios/nagiosql/commands.cfg
    cfg_file=/usr/local/nagios/nagiosql/contactgroups.cfg
    cfg_file=/usr/local/nagios/nagiosql/contacts.cfg
    cfg_file=/usr/local/nagios/nagiosql/contacttemplates.cfg
    cfg_file=/usr/local/nagios/nagiosql/hostdependencies.cfg
    cfg_file=/usr/local/nagios/nagiosql/hostescalations.cfg
    cfg_file=/usr/local/nagios/nagiosql/hostextinfo.cfg
    cfg_file=/usr/local/nagios/nagiosql/hostgroups.cfg
    cfg_file=/usr/local/nagios/nagiosql/hosttemplates.cfg
    cfg_file=/usr/local/nagios/nagiosql/servicedependencies.cfg
    cfg_file=/usr/local/nagios/nagiosql/serviceescalations.cfg
    cfg_file=/usr/local/nagios/nagiosql/serviceextinfo.cfg
    cfg_file=/usr/local/nagios/nagiosql/servicegroups.cfg
    cfg_file=/usr/local/nagios/nagiosql/servicetemplates.cfg
    cfg_file=/usr/local/nagios/nagiosql/timeperiods.cfg
    
    cfg_dir=/usr/local/nagios/nagiosql/hosts
    cfg_dir=/usr/local/nagios/nagiosql/services
9. Verify Nagios Core config files

/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg

When I run the above command, I get the error message of missing command.cfg file, etc. I go back to NagiosQL web UI, in each main section Supervision, Alerting, Commands, and Specialties, click “Write config file” to generate these files. Then the command reports no error or warning.

10. Restart Nagios Core service

systemctl restart nagios

Now Nagios Core and NagiosQL are successfully set up. You can view the monitoring status in the Nagios web UI and modify the monitoring via NagiosQL web UI.

Use WinSCP to Transfer Files in vCSA 6.7

This is a quick update on my previous post “ Use WinSCP to Transfer Files in vCSA 6.5 ”. When I try the same SFTP server setting in vCSA 6.7...