1
0
mirror of https://github.com/librenms/librenms-agent.git synced 2024-05-09 09:54:52 +00:00

localhost -> 127.0.0.1 to work around bug where it complains about the directory not existing

This commit is contained in:
Zane C. Bowers-Hadley
2022-04-23 22:59:20 -05:00
parent f20cd12155
commit 1914bcb1ea

View File

@@ -34,7 +34,7 @@ if (!array_key_exists('SCRIPT_FILENAME', $_SERVER)
$mysql_user = '';
$mysql_pass = '';
$mysql_host = 'localhost';
$mysql_host = '127.0.0.1';
$mysql_port = 3306;
$mysql_ssl = FALSE; # Whether to use SSL to connect to MySQL.
$mysql_ssl_key = '/etc/pki/tls/certs/mysql/client-key.pem';