← Todas las guías
LibreNMS
LibreNMS is a full-featured, auto-discovering network monitoring platform built on PHP and RRDtool, distributed as an official multi-container Docker stack.
Esta guía se elaboró a partir de la documentación oficial de LibreNMS, enlazada arriba — verifica siempre ahí los nombres exactos de paquetes/versiones antes de ejecutar estos comandos en un servidor de producción, ya que las versiones de la distribución y del proyecto cambian con el tiempo.
1Download the official Docker Compose files
mkdir librenms && cd librenmswget https://github.com/librenms/docker/archive/refs/heads/master.zipunzip master.zipcd docker-master/examples/compose2Configure the database password
Set a new MariaDB/MySQL password in the .env file before starting the stack.
Edit MARIADB_PASSWORD (or MYSQL_PASSWORD) in .env, then review compose.yml for any other settings you want to change.
3Start the stack
sudo docker compose -f compose.yml up -d4Finish setup in the browser
Open the web interface to complete the configuration wizard.
Browse to http://localhost:8000 (use your server's real IP/hostname instead of localhost).