I was hoping that I could leave open registration here for a few days, but apparently there are a ton of lemmy bots. I got 18k within 2 days.
So I logged in to my server, and did this:
- Run docker ps to get the name of the container running postgres.
- docker exec -it <container name> /bin/bash
- psql -h localhost -p 5432 -U lemmy -d lemmy
- The bot users in my case were all users where id>=3 in my case.
- So I ran DELETE FROM TABLE local_user where id>=3
- Done
To anyone else with this problem, this approach will only work if the bots are within a certain range of user ids. Still, it worked in my very simple case so I’ll leave it here.
User registration is no longer open. My VPS provider tends to block outbound 485, so until I sort that out, user registration is temporarily closed.
That removes the users, but to update the instance stats there’s one more step (thank you @sunaurus@lemm.ee):
update site_aggregates
set users = (select count(*) from local_user)
where site_id = 1;
This will force an update to the instance stats, so the bots that you removed won’t show up as users. This is important as people may not wish to federate or interact with instances that appear to mostly consist of bots.