doc/troubleshooting_guide.md

16 KiB
Raw Blame History

YunoHost troubleshooting guide

You can consider this as some kind of administrator guide for troubleshooting or what to check when there is something wrong with your YunoHost server. It's not a step by step guide to make your YunoHost work but more of a list of things to check to help diagnose the issue you may have. This can also be useful for debug when packaging a new application or trying to understand YunoHost architecture.

General notes

Do not break YunoHost

Best way to troubleshoot is to not have to troubleshoot because you have tested everything before deploying it on your server. This means that everytime you want to try a new thing (non-official app, new specific config, package an app...), you should try it on a development or testing instance, not on your production server. For this, you can set up a Vagrant box, or for instance a DigitalOcean droplet for 1 cent/hour.

Also: https://wiki.debian.org/DontBreakDebian

Use non-official apps with caution

While it's tempting to install every non-official apps please don't. Even if the app is marked as ready. Before testing an app you should read at least part of the package source code. Install, remove and upgrade script should be present. Keep in mind that when you install an app, you execute code on your server with root privileges. From my experience, some packaging are excellent and others can break some part of your YunoHost instance. Some packages are unmaintained. So before install check package issues, the Forum and the YunoHost support room to see if other have problem with the app.

Check the official documentation

Answer to your question may be already in the documentation.

Check the command line help

Learn how to use the YunoHost commands like a pro.

Upgrade

Problems often occur after an upgrade. After a YunoHost upgrade you may want to update your apps.

Check if some processes are using old libraries

You are probably familiar with:

sudo apt-get update && sudo apt-get dist-upgrade

Most of the time it's enough. But in some cases it's possible that some process are still using old versions of upgraded files (such as libraries), that can cause bug. In rare cases that can lead to security concern (ex: upgrade OpenSSL because of a security bug, Nginx will continue to use the version it has in memory). The utility Checkrestart will help you to find and restart them.

sudo apt-get install debian-goodies
sudo checkrestart
Found 0 processes using old versions of upgraded files

If some process are running with old librairies versions checkrestart will tell you and propose you a way to restart them. In some cases checkrestart can't find a way to restart them.

Easier way is to reboot if you can.

You can also use this script to automaticaly restart some services if needed. More info in French here.

Force an upgrade on a community app

/!\ Always check if there is a upgrade script and read it if you can /!\

sudo yunohost app upgrade
Warning: You must provide an URL to upgrade your custom app app_name
Error: No app to upgrade
sudo yunohost app upgrade -u https://github.com/user/someapp_ynh app_name

Services

YunoHost uses a bunch of software to accomplish its purpose. Most of theses software are registered as service in Debian. More info.

Check services status

When something doesn't work on your YunoHost, one of the first things to do is to check that all services used by YunoHost are running. YunoHost include a helper to see the status of all services used by YunoHost:

sudo yunohost service status

Sample result:

All services should be enabled and running. Except glances (optional). If some are not, try to restart them. Here is a short description of what they do:

  • Amavis: anti-spam/virus/malwares, used when receiving email
  • Avahi-daemon: system which facilitates service discovery on a local network via DNS
  • DNSmasq: DNS server, you are not forced to use it
  • Dovecot: IMAP email server, used to receive email
  • Glances: optional, used by web administration to display server status
  • Metronome: XMPP instant messaging server, used by Jappix and some external client
  • MySQL: database, used by some app
  • Nginx: web server, used by all web app
  • php5-fpm: PHP service, used by all app written in PHP
  • Postfix: SMTP email server, used to send email
  • Postgrey: greylisting policy server, if you use YunoHost email, you should learn more about greylisting
  • Slapd: LDAP server, used for authentification (SSO and apps)
  • SSH: Secure Shell
  • SSOwat: an simple sign-on
  • YunoHost-API: YunoHost web administration

Others services installed by applications can also be present. For instance, seafile-serve which serves Seafile app and uwsgi which serve Python apps such as Searx.

Start or stop a service which is registered with YunoHost:
sudo yunohost service start <servicename>
sudo yunohost service stop <servicename>

You can also use the generic Debian command:

sudo service <servicename> start/stop/restart/reload

After a launch attempt, always check that the service is running.

Note: Debian Jessie now uses systemd instead of upstart, but, for now it's fully compatible with Debian Wheezy way to handle services. Useful resource on systemd.

Logs

If a service won't start you have to check the logs to see what's wrong. There is no generic way for services to store their logs, but there are mainly stocked in:

/var/log/

Here are the some useful logs files for YunoHost:

auth.log

Contains connections or attempt of connection to your server. It includes every web, ssh, cron job connection. It also stockes all the failed (hopefully) attempts to connect by a potential intruders connections.

fail2ban.log

When someone tries to connect to your server and fails multiple times, Fail2ban bans the IP address to avoid bruteforce and (D)DOS attacks. Here you can see if some IP have been banned.

mail.err, mail.info, mail.log, mail.warn

These are Postfix (the mail server) logs, check theses if you have issues with email.

metronome/metronome.err, metronome/metronome.log

XMPP chat server logs.

mysql.err, mysql.log, mysql/error.log

MySQL database logs, these should be empty unless you have trouble with MySQL.

php5-fpm.log

Generic logs for PHP apps.

yunohost.log

This is the log created at the YunoHost install. If you have issue installing YunoHost, check this file.

This list is not exhaustive. Furthermore, some app may put their logs in /var/log too. Slapd logs are unfortunately in /var/log/syslog.

RAM usage

Issues can be caused by a lack of RAM. To check your memory usage, do the following command:

free -m

5-10% of free memory is fine but it's good to have margin (especially for upgrade). Since most of the time you can't upgrade your physical RAM, alternative it to use a swap file. Keep in mind that swap it's a memory 100.000 times slower, so you may to use it only if you got no other choice.

Create a swap file:

If free -m indicate that you have 0 total for swap line, you may want to add a swap file.

sudo install -o root -g root -m 0600 /dev/null /swapfile
dd if=/dev/zero of=/swapfile bs=1k count=512k
mkswap /swapfile
swapon /swapfile
echo "/swapfile       swap    swap    auto      0       0" | sudo tee -a /etc/fstab
sudo sysctl -w vm.swappiness=10
echo vm.swappiness = 10 | sudo tee -a /etc/sysctl.conf

Change 512 with the quantity of swap memory you want, 512Mb should be enough for YunoHost. After that, check with free -m that you swap is activated. Source with more explanation.

Disk space

One other common issue on a server is lack of disk space. You can check your filesystem are not full with the command:

df -h

This will show you disk usage, if one file-system is near to be full you could encounter issues. You should take appropriate actions to free space or extend your file-system.

Nginx

Nginx play a big part in YunoHost since it serve all the web applications. YunoHost have a specific way to handle its configuration since there are multiple domain and multiple applications.

Configuration

General configuration structure
# Main nginx configuration, you don't want to touch this file
/etc/nginx/nginx.conf
# Directory where all YunoHost, domain and app config are located
/etc/nginx/conf.d/
# Configuration of web administration
/etc/nginx/conf.d/yunohost_admin.conf
# Per domain configuration (one per domain)
/etc/nginx/conf.d/example.com.conf
Application configuration

For each application on a given domain there is a Nginx conf file located in:

/etc/nginx/conf.d/example.com.d/appname.conf

Application configuration file usually follow this type of pattern

location YNH_WWW_PATH { # path to access the app in browser
 alias YNH_WWW_ALIAS ; # Path to source, usually /var/www/app_name

# Specific configuration for the application according to its programming language and deployment option
...
...
# Include SSOWAT user panel in bottom right
include conf.d/yunohost_panel.conf.inc;
}

Logs

Nginx logs files are located in the directory:

/var/log/nginx/

Generic logs

access.log

Generic access logs, you will find here all the accesses to the YunoHost administration and sometimes intrusion tentative.

error.log

Should be empty with a correct Nginx config. If Nginx doesn't start, error are probably located in this log.

For each domain name

example.com-access.log

All accesses to the domain, including all apps.

example.com-error.log

All error regarding app installed on the domain.

Sometime application may have their logs located here too.

SSOwat

SSowat is the software that connect the web server nginx to the LDAP server. His purpose is to authentificate users to the YunoHost portal to switch easily between apps.

Configuration

You can view (don't edit it, it is oftently overwritten) your current SSOwat config in the file:

/etc/ssowat/conf.json

Which is generated with the command:

sudo yunohost app ssowatconf

Protip: if you want to add a personalized rule for SSOwat, do it in this file:

/etc/ssowat/conf.json.persistent

Logs

There is no specific logs for SSOwat. There are are located in Nginx logs files. If you see some line with lua in it, it's probably SSOwat.

YunoHost

Configuration

YunoHost configuration is located in:

/etc/yunohost/

If you want to keep a custom service configuration use this file:

/etc/yunohost/yunohost.conf

For all the service you pass yes, YunoHost will not upgrade the config of the specified service. Do this only if you know what you're doing.

All apps configurations are located in:

/etc/yunohost/apps/app_name/

In each app packages you will find:

  • manifest.json: manifest of the app
  • scripts/: directory containing five Shell scripts to manage apps
  • install
  • upgrade
  • remove
  • backup
  • restore
  • config/: config directory
  • settings.yml: config of the app, also accessible with:
sudo yunohost app setting appname settingname

Logs

There is no logfile for application install so when you install an app, keep the log. There is some log about the command line usage in:

/var/log/yunohost/

Applications

This part is more for packager or to understand the link between Nginx and webapps. First, you should know how to package a new app.

When troubleshooting an application issue can occur at several levels. There is a wide variety of applications and their deployment to YunoHost will depending on the programming language of the app. We will deal here with the most commons cases. Applications configurations are not treated because it completely differs according to the application.

Oversimplified schema

Web browser > Nginx < (web server) < runtime (PHP, Python, Node.js,...) < app

App is interpretated by the runtime, runtime provide or not a webserver, if not a webserver can be added, webserver or runtime communicate with Nginx, Nginx serve webpage to the web browser.

The purpose of this configuration is to have multiple application on one server with only the https port (443) open to the whole Internet.

PHP apps

Deployment option

PHP works natively with Nginx.

Communication with Nginx

The PHP interpreter communicate with Nginx through PHP-FPM which is a FastCGI implementation.

Logs
/var/log/php5-fpm.log

YunoHost package example: Owncloud.

Python apps

Deployment option

A Python webapp should run with it's own Python interpreter with and it's own dependencies, for this, the tool virtualenv is used. Usually, a light web server will be used to serve the app behind Nginx. Uwsgi is a good example.

Communication with Nginx

Nginx can talk to Python server via three ways:

Logs

Specific to the app and/or the webserver used, for instance uwsgi:

/var/log/uwsgi/
Ressources

Great resource in french on Python virtualenv

YunoHost package example: Searx

Node.js apps

Deployment option

A Node.js app have it's own web server integrated in node runtime, usually Node will expose the app to a TCP port.

Communication with Nginx

The http endpoint will be passed locally to Nginx via proxy_pass.

Logs

This will be specific to the app.

YunoHost app example: Etherpad-Lite.

Note: Node process can use lot of memory compared to other app processes, make sure you have enough.

Other (Go, Java...)

Webapp can take multiple form an can be deployed in many way. Go app have usually an integrated webserver, Java can be deployed with Tomcat or equivalent… There is no way to be exhaustive here, but most of the time your deployment option will expose an http endpoint that you can pass to Nginx via proxy_pass.

Note on Apache

Never install Apache or a package withe Apache as dependency, this will probably break your YunoHost intance.

Note on https

Sometimes the webserver integrated with the app is capable to serve https on its own, it's right to use this when you have one application on one server and you don't want to install Nginx for intance. But in YunoHost case, Nginx who serve https and it simplify configuration. So when passing the local URL to Nginx via proxy_pass, use http, nginx will https the thing to the open world later.