All Questions
8 questions
-1
votes
1
answer
255
views
syslog logging driver giving the error protocol wrong type for socket
I have a service defined via docker compose (see definition below). When I tried to start this service via docker-compose -f up --wait -d my_service, I get the error
Error response from daemon: ...
2
votes
1
answer
435
views
Where are docker events stored? Can they be redirected to syslog server?
I have a server with docker running. I can use the command docker events to monitor events as they occur. But I can also use the command option --since <timestamp> to list previously occured ...
1
vote
2
answers
436
views
Cron task does not work
I am developing a backup script in my NAS running a docker container. Inside my container I have cron running with this /etc/crontab:
root@backups-nas:/code# cat /etc/crontab
SHELL=/bin/bash
PATH=/...
1
vote
0
answers
314
views
Docker Debian, getting some specific syslog in the docker container log
I have been installing SSH in the Debian Docker. Since I wanted to have some extra log, I also installed the Rsyslog as described in this question.
Result was that some extra logs are created e.g. ...
0
votes
1
answer
672
views
Syslog to console, drawbacks?
I am wondering are there any drawback (performance wise) when output from some software is not logged to a file, but instead to console?
Specific case would be running Docker containers, as some of ...
1
vote
1
answer
5k
views
Error while dialing dial unix /run/containerd/containerd.sock: connect: connection refused\"" module=libcontainerd namespace=plugins.moby`
Can someone explain what the following error in/var/log/syslog means? I don't know if I picked the relevant part, there is a lot more information in the log.
Feb 4 10:57:51 chriad-VirtualBox dockerd[...
1
vote
0
answers
1k
views
Files in /var/log are only writing to file.1 (syslog is empty, but not syslog.1 )
The host is a docker container running Ubuntu 14.04
I am trying to figure out why the primary log files are not being written too, I have attached output of the files and permissions. I am hoping to ...
7
votes
1
answer
10k
views
How to configure logging inside a Docker container?
I was trying to dockerize (into Debian 8.2) an OpenVPN server (yes, I do know, there already are such containers) but something went wrong inside the container and the server failed to start.
I ...