After upgrade to version 1.1 cannot connect with default user (verifyLogin.php error)

  • Posted on: 7 July 2020
  • By: cudroiu

After the upgrade of the system to version 1.1 on some machines was observed that during login from the website, the system displays an error page and in the navigation bar is present the verifyLogin.php script. This results usually from an incorrect removal of the dependency package php-pgsql during the upgrade.

The problem can be verified also by performing the following command :

sudo tail -f /var/log/httpd/error_log

and check for and error related to the pg_connect function (that is not found during the execution of login).

Normally, this will be corrected in the future versions and should be present only from upgrades from 1.0 to 1.1.

In order to solve the issue, the following commands should be executed:

sudo yum -y install php-pgsql
sudo systemctl restart httpd

After this, the login from the system web page should work now.