Influxdb logfile does not create logfile

I am using ubuntu 16.04 and latest version of influxdb.

I start it using sudo service influxdb start command. I have changed any log setting in the conf file.

But when I check /var/log/influxdb/ nothing is there.

I need logs, where is the problem ?

Assuming your running on a systemctl system influxdb logging can be found via

journalctl -u influxdb.service

also check out Log and trace with InfluxDB | InfluxDB OSS v1 Documentation

1 Like

I have written that I start it using sudo service influxdb start.

If the logs are stored in journalctl, how can I get those in a log file ?

Looks like your running a recent version of Ubuntu, I don’t use it, but I would venture a guess “service” is redirected to systemctl like most other distros. A few mins on Google should answer that.
There is an option on journalct (ForwardToSyslog) usually its on by default, however, that’s going to vary between distros.
This may help with with what you would like to do. Linux Logging with Systemd - The Ultimate Guide To Logging

I’ve not tried what you are looking to do, so I can’t really help with that specifically.

Cheers

What version of the OS are you using @Luv? That will help us drill down to the answer for you!

Hello,
i know this issue is long ago but i have the same problem, that no logging is happening on my InfluxDB.

I am running under Debian 9 (stretch). It is running in a VM under Proxmox but this should be a problem.

Thank you in advance for some help !

Hi , have you tried as suggested above …

journalctl -u influxdb.service

you can add a tail to get the last 100 lines

journalctl -u influxdb.service | tail -100

here is some information about logging :

logging