Files

236 lines
6.2 KiB
Markdown
Raw Permalink Normal View History

source: Installation/Installation-Ubuntu-1604-Nginx.md
path: blob/master/doc/
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
> NOTE: These instructions assume you are the **root** user. If you
> are not, prepend `sudo` to the shell commands (the ones that aren't
> at `mysql>` prompts) or temporarily become a user with root
> privileges with `sudo -s` or `sudo -i`.
2019-07-18 21:25:53 -05:00
**Please note the minimum supported PHP version is 5.6.4**
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
# Install Required Packages
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
apt install acl composer fping git graphviz imagemagick mariadb-client mariadb-server mtr-tiny nginx-full nmap php7.0-cli php7.0-curl php7.0-fpm php7.0-gd php7.0-mbstring php7.0-mcrypt php7.0-mysql php7.0-snmp php7.0-xml php7.0-zip python-memcache python-mysqldb rrdtool snmp snmpd whois
```
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
# Add librenms user
2017-10-04 15:18:59 -05:00
2019-10-21 02:47:40 +02:00
```bash
useradd librenms -d /opt/librenms -M -r
usermod -a -G librenms www-data
```
2017-10-04 15:18:59 -05:00
2019-07-18 21:25:53 -05:00
# Install LibreNMS
2016-06-16 11:31:45 +01:00
2019-10-21 02:47:40 +02:00
```bash
cd /opt
composer create-project --no-dev --keep-vcs librenms/librenms librenms dev-master
```
2017-10-04 15:18:59 -05:00
2019-07-18 21:25:53 -05:00
# DB Server
## Configure MySQL
2017-10-04 15:18:59 -05:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
systemctl restart mysql
mysql -uroot -p
```
2017-10-04 15:18:59 -05:00
> NOTE: Please change the 'password' below to something secure.
2019-07-18 21:25:53 -05:00
2016-06-16 11:31:45 +01:00
```sql
2017-02-27 18:28:01 +00:00
CREATE DATABASE librenms CHARACTER SET utf8 COLLATE utf8_unicode_ci;
CREATE USER 'librenms'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost';
2016-06-16 11:31:45 +01:00
FLUSH PRIVILEGES;
exit
```
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
vim /etc/mysql/mariadb.conf.d/50-server.cnf
```
2017-10-04 15:18:59 -05:00
Within the `[mysqld]` section please add:
2016-06-16 11:31:45 +01:00
```bash
innodb_file_per_table=1
lower_case_table_names=0
2016-06-16 11:31:45 +01:00
```
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
systemctl restart mysql
```
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
# Web Server
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
## Configure and Start PHP-FPM
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
Ensure date.timezone is set in php.ini to your preferred time zone.
See <http://php.net/manual/en/timezones.php> for a list of supported
timezones. Valid examples are: "America/New_York",
"Australia/Brisbane", "Etc/UTC".
2016-06-16 11:31:45 +01:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
vim /etc/php/7.0/fpm/php.ini
vim /etc/php/7.0/cli/php.ini
```
2016-06-16 11:31:45 +01:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
phpenmod mcrypt
systemctl restart php7.0-fpm
```
## Configure NGINX
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
vim /etc/nginx/conf.d/librenms.conf
```
2016-06-16 11:31:45 +01:00
2017-10-04 15:18:59 -05:00
Add the following config, edit `server_name` as required:
2016-06-16 11:31:45 +01:00
```nginx
server {
listen 80;
server_name librenms.example.com;
root /opt/librenms/html;
index index.php;
2017-10-04 15:18:59 -05:00
charset utf-8;
gzip on;
gzip_types text/css application/javascript text/javascript application/x-javascript image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;
2016-06-16 11:31:45 +01:00
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location /api/v0 {
try_files $uri $uri/ /api_v0.php?$query_string;
2016-06-16 11:31:45 +01:00
}
location ~ \.php {
include fastcgi.conf;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
```
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
rm /etc/nginx/sites-enabled/default
systemctl restart nginx
```
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
# Configure snmpd
2016-06-16 11:31:45 +01:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
cp /opt/librenms/snmpd.conf.example /etc/snmp/snmpd.conf
vim /etc/snmp/snmpd.conf
```
2016-06-16 11:31:45 +01:00
Edit the text which says `RANDOMSTRINGGOESHERE` and set your own community string.
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
curl -o /usr/bin/distro https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/distro
chmod +x /usr/bin/distro
systemctl restart snmpd
```
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
# Cron job
2016-06-16 11:31:45 +01:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
cp /opt/librenms/librenms.nonroot.cron /etc/cron.d/librenms
```
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
> NOTE: Keep in mind that cron, by default, only uses a very limited
> set of environment variables. You may need to configure proxy
> variables for the cron invocation. Alternatively adding the proxy
> settings in config.php is possible too. The config.php file will be
> created in the upcoming steps. Review the following URL after you
> finished librenms install steps:
> <https://docs.librenms.org/Support/Configuration/#proxy-support>
2019-02-13 17:13:33 +01:00
2019-07-18 21:25:53 -05:00
# Copy logrotate config
2019-07-18 21:25:53 -05:00
LibreNMS keeps logs in `/opt/librenms/logs`. Over time these can
become large and be rotated out. To rotate out the old logs you can
use the provided logrotate config file:
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
cp /opt/librenms/misc/librenms.logrotate /etc/logrotate.d/librenms
```
2019-07-18 21:25:53 -05:00
# Set permissions
2016-06-16 11:31:45 +01:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
chown -R librenms:librenms /opt/librenms
setfacl -d -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/
setfacl -R -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/
```
2017-10-04 15:18:59 -05:00
2019-07-18 21:25:53 -05:00
# Web installer
2017-10-04 15:18:59 -05:00
Now head to the web installer and follow the on-screen instructions.
2019-07-18 21:25:53 -05:00
```
http://librenms.example.com/install.php
```
2017-10-04 15:18:59 -05:00
2019-07-18 21:25:53 -05:00
The web installer might prompt you to create a `config.php` file in
your librenms install location manually, copying the content displayed
on-screen to the file. If you have to do this, please remember to set
the permissions on config.php after you copied the on-screen contents
to the file. Run:
2018-05-17 18:30:03 +02:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
chown librenms:librenms /opt/librenms/config.php
```
2018-05-17 18:30:03 +02:00
2019-07-18 21:25:53 -05:00
# Final steps
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
That's it! You now should be able to log in to
<http://librenms.example.com/>. Please note that we have not covered
HTTPS setup in this example, so your LibreNMS install is not secure by
default. Please do not expose it to the public Internet unless you
have configured HTTPS and taken appropriate web server hardening
steps.
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
# Add the first device
2016-06-16 11:31:45 +01:00
We now suggest that you add localhost as your first device from within the WebUI.
2019-07-18 21:25:53 -05:00
# Troubleshooting
2017-10-26 01:56:09 -05:00
2019-07-18 21:25:53 -05:00
If you ever have issues with your install, run validate.php as root in
the librenms directory:
2017-10-26 01:56:09 -05:00
2019-10-21 02:47:40 +02:00
```bash
2019-07-18 21:25:53 -05:00
cd /opt/librenms
./validate.php
```
2017-10-26 01:56:09 -05:00
2019-07-18 21:25:53 -05:00
There are various options for getting help listed on the LibreNMS web
site: <https://www.librenms.org/#support>
2017-10-26 01:56:09 -05:00
2019-07-18 21:25:53 -05:00
# What next?
2019-07-18 21:25:53 -05:00
Now that you've installed LibreNMS, we'd suggest that you have a read
of a few other docs to get you going:
2019-07-18 21:25:53 -05:00
- [Performance tuning](http://docs.librenms.org/Support/Performance)
- [Alerting](http://docs.librenms.org/Extensions/Alerting/)
- [Device Groups](http://docs.librenms.org/Extensions/Device-Groups/)
- [Auto discovery](http://docs.librenms.org/Extensions/Auto-Discovery/)
2019-07-18 21:25:53 -05:00
# Closing
2016-06-16 11:31:45 +01:00
2019-07-18 21:25:53 -05:00
We hope you enjoy using LibreNMS. If you do, it would be great if you
would consider opting into the stats system we have, please see [this
page](http://docs.librenms.org/General/Callback-Stats-and-Privacy/) on
what it is and how to enable it.
2017-10-04 15:18:59 -05:00
2019-07-18 21:25:53 -05:00
If you would like to help make LibreNMS better there are [many ways to
help](http://docs.librenms.org/Support/FAQ/#what-can-i-do-to-help). You
can also [back LibreNMS on Open
Collective](https://t.libren.ms/donations).