Hello
I tried to add SSL to the libreNMS but afterword comes with
Not Found
The requested URL /notifications/archive/ was not found on this server.
But I can login to Dashboard after no sub link working with SSL.
Also, PHP validation gave me
====================================
Component | Version
--------- | -------
LibreNMS | 1.32-71-g1f7274d37
DB Schema | 211
PHP | 7.0.19-1
MySQL | 10.1.23-MariaDB-9+deb9u1
RRDTool | 1.6.0
SNMP | NET-SNMP 5.7.3
====================================
[OK] Database connection successful
[FAIL] Database: incorrect column (notifications/datetime)
[FAIL] Database: incorrect column (users/created_at)
[FAIL] We have detected that your database schema may be wrong, please report the following to us on IRC o r the community site (Report database schema issues here - LibreNMS Community):
ALTER TABLE notifications CHANGE datetimedatetime timestamp NOT NULL DEFAULT ‘1970-01-02 00 :00:00’;
ALTER TABLE users CHANGE created_atcreated_at timestamp NOT NULL DEFAULT '1970-01-02 00:00:
Hello
I’m using raspberry pi (RASPBIAN STRETCH LITE), so its apache 2 and php7, I am able to setup the LibreNMS its running fine, To access remotely I would like to enable the SSL on LibreNMS
I found 2 files name with librenms.conf in different locations both look like following
/etc/apache2/sites-available/librenms.conf and following
cat /etc/apache2/sites-enabled/librenms.conf
<VirtualHost *:80>
DocumentRoot /opt/librenms/html/ #Redirect “/” "https://10.10.10.17/"
ServerName monitor
CustomLog /opt/librenms/logs/access_log combined
ErrorLog /opt/librenms/logs/error_log
AllowEncodedSlashes NoDecode
<Directory "/opt/librenms/html/">
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
</Directory>
I’ve stopped the redirection as https not working for all pages
thanks