diameter / rtorrent-rutorrent

Docker container with supervisor/rtorrent/nginx/ruTorrent 64/32 bit
155 stars 72 forks source link

php5-fpm broke on last build #57

Closed hergonoway closed 5 years ago

hergonoway commented 5 years ago

Hello,

Since my last pull/rebuild from watchtower rtorrent isn't accesible,

To test clean, I've tried to rebuilt another clean container (with a new empty downloads folder called "downloadsTEST") from the following command :

sudo docker run -dt --name=rtorrent_renew \
-p 8100:80 \
-p 49160:49160/udp \
-p 49161:49161 \
-v /home/<user>/downloadsTEST:/downloads \
-v /home/<user>/SyncTEST:/Sync \
-e NOIPV6=1 \
-e USR_ID=1000 \
-e GRP_ID=1000 \
-e PHP_MEM=1024M \
diameter/rtorrent-rutorrent:stable
has uig and giu at 1000, Same result as my previous existing container. php5-fpm doesn't want to work apparently. ``` /usr/lib/python2.7/dist-packages/supervisor/options.py:298: UserWarning: Supervisord is running as root and it is searching for its configuration file in default locations (including its current working directory); you probably want to specify a "-c" argument specifying an absolute path to a configuration file for improved security. 'Supervisord is running as root and it is searching ' 2018-11-11 11:50:07,969 CRIT Supervisor running as root (no user in config file) 2018-11-11 11:50:07,969 INFO Included extra file "/etc/supervisor/conf.d/supervisord.conf" during parsing 2018-11-11 11:50:08,083 INFO RPC interface 'supervisor' initialized 2018-11-11 11:50:08,083 CRIT Server 'unix_http_server' running without any HTTP authentication checking 2018-11-11 11:50:08,084 INFO supervisord started with pid 1 2018-11-11 11:50:09,092 INFO spawned: 'nginx' with pid 10 2018-11-11 11:50:09,100 INFO spawned: 'rtorrent' with pid 11 2018-11-11 11:50:09,105 INFO spawned: 'php5-fpm' with pid 12 2018-11-11 11:50:09,112 INFO spawned: 'irssi' with pid 13 2018-11-11 11:50:09,164 INFO exited: php5-fpm (exit status 127; not expected) 2018-11-11 11:50:09,760 INFO reaped unknown pid 46 2018-11-11 11:50:10,763 INFO success: nginx entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2018-11-11 11:50:10,764 INFO success: rtorrent entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2018-11-11 11:50:10,770 INFO spawned: 'php5-fpm' with pid 55 2018-11-11 11:50:10,772 INFO success: irssi entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2018-11-11 11:50:10,812 INFO exited: php5-fpm (exit status 127; not expected) 2018-11-11 11:50:12,822 INFO spawned: 'php5-fpm' with pid 58 2018-11-11 11:50:12,865 INFO exited: php5-fpm (exit status 127; not expected) 2018-11-11 11:50:15,941 INFO spawned: 'php5-fpm' with pid 71 2018-11-11 11:50:15,983 INFO exited: php5-fpm (exit status 127; not expected) 2018-11-11 11:50:15,985 INFO gave up: php5-fpm entered FATAL state, too many start retries too quickly ``` once loged in rutorrent it just return : ``` [11.11.2018 13:27:23] WebUI started. [11.11.2018 13:27:24] Bad response from server: (502 [error,getplugins]) Bad Gateway ```
diameter commented 5 years ago

@hergonoway thanks for finding this out. apparently php-fpm was updated from 7.0 to 7.2 and this invalidated related script/configs in https://github.com/diameter/rtorrent-rutorrent-shared. Fixed, please try to rebuild the image.

hergonoway commented 5 years ago

It's working again. thx 👍