After upgrading my system from FreeBSD 12.2 to 12.3 I noticed the following error: The GitLab Sidekiq job dispatcher is not running. sidekiq.log: Error connecting to Redis on /var/run/redis/redis.sock (Errno::ENOENT) The error was caused by starting gitlab-ce before redis server. Probably the rcorder has changed for my gitlab jail instance after upgrade to FreeBSD 12.3. I have fixed the problem by adding `redis` to REQUIRE: in the rc.d startup script: # REQUIRE: LOGIN redis Please consider adding `redis` to the REQUIRE: block in /usr/local/etc/rc.d/gitlab for all users. Thanks.
Thanks a lot, I will include this into the next upgrade of the port.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=d8be9a4007adac910482efb6282294ad0a536873 commit d8be9a4007adac910482efb6282294ad0a536873 Author: Matthias Fechner <mfechner@FreeBSD.org> AuthorDate: 2022-03-05 10:35:40 +0000 Commit: Matthias Fechner <mfechner@FreeBSD.org> CommitDate: 2022-03-09 10:07:54 +0000 www/gitlab-ce: depend on redis in startup script This ensures that gitlab is not started before redis is available. PR: 262338 Reported by: majo-bugs.freebsd.org@cerny.sk www/gitlab-ce/files/gitlab.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Should be fixed now, thanks for report!