2014-03-29 20:06:26 +00:00
|
|
|
## Updating your install ##
|
|
|
|
|
2015-03-09 08:09:53 +10:00
|
|
|
LibreNMS by default performs updates on a daily basis. This can be disabled
|
|
|
|
by ensuring:
|
2014-03-29 20:06:26 +00:00
|
|
|
|
|
|
|
$config['update'] = 0;
|
|
|
|
|
2015-03-09 08:09:53 +10:00
|
|
|
is no longer commented out. If you would like to perform a manual update
|
|
|
|
then you can do this by running the following commands:
|
2014-03-29 20:06:26 +00:00
|
|
|
|
|
|
|
git pull --no-edit --quiet
|
|
|
|
php includes/sql-schema/update.php
|
|
|
|
|
2015-03-09 08:09:53 +10:00
|
|
|
This will update both the core LibreNMS files but also update the database
|
|
|
|
structure if updates are available.
|