On 12/24/25 08:14, dap1--- via Mailman-users wrote:
How do I tell if mailman-web is running? There is no such service.
In this case, the mailman-web service is gunicorn.
/etc/mailman3/gunicorn.py (recall I had to use py rather than conf to get it to work under Ubuntu):
It should have worked as gunicorn.conf despite the warning (not error) that it didn't have a .py extension.
# /etc/mailman3/gunicorn.conf # # bind = ['127.0.0.1:8000'] proc_name = "mailman-web" # # If you are having response issues you can tune the number of workers. # # The suggested starting point is (2 x $num_cores) + 1 # # See https://docs.gunicorn.org/en/latest/design.html#how-many-workers workers = 3 chdir = "/opt/mailman/mm" pidfile = "/opt/mailman/mm/var/gunicorn.pid" accesslog = "/opt/mailman/mm/var/logs/access.log" errorlog = "/opt/mailman/mm/var/logs/error.log" loglevel = 'debug' I did notice one thing in the access.log that is wrong: 127.0.0.1 - - [24/Nov/2025:16:02:55 +0000] "GET /archives/api/mailman/urls?mlist=lllllllllll%40dddddd.net&msgid=705caa ab-afcc-4249-8d1d-cc48050d02d1%40bellsouth.net HTTP/1.1" 200 113 "-" "python-requests/2.32.5"
This request came from HyperKitty.
The mlist name is wrong. It should be lllllllllll%40gmail.com. I don't know where that is coming from but I'm sure it is left over from before I changed the list name.
To you have a hyperkitty list named lllllllllll%40dddddd.net. What does SELECT name FROM hyperkitty_mailinglist; show?
When I include the port in the URL I get an unable to connect page.
So nothing is listening on 127.0.0.1:8000 (localhost:8000 assuming the `localhost` is 127.0.0.1 in /etc/hosts and not an IPv6 fe00::0 address)
What if any does `netstat -lntp` show is listening on 127.0.0.1:8000? -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan _______________________________________________ Mailman-users mailing list -- [email protected] To unsubscribe send an email to [email protected] https://lists.mailman3.org/mailman3/lists/mailman-users.mailman3.org/ Archived at: https://lists.mailman3.org/archives/list/[email protected]/message/COGK2LJNGRBPNYKEDAWOJRIH5PMELKVE/ This message sent to [email protected]
