OpenFactorioServerManager / factorio-server-manager

A tool to help manage Factorio multiplayer servers including mods and save games.
MIT License
541 stars 129 forks source link

server crash loop #363

Open cdaringe opened 8 months ago

cdaringe commented 8 months ago

Problem

The UI was working fine, and when trying to load:

The GUI stopped behaving, and ultimately stopped responding.

Logs

2023/10/25 05:21:19 download complete
 StatusCode: 200
 Status: 200 OK
2023/10/25 05:21:28 file already locked by another routine
2023/10/25 05:21:29 download complete
 StatusCode: 200
 Status: 200 OK
2023/10/25 05:21:31 zip: not a valid zip file
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   405  100   405    0     0    948      0 --:--:-- --:--:-- --:--:--   946
100 56.1M  100 56.1M    0     0  16.0M      0  0:00:03  0:00:03 --:--:-- 24.4M
/opt/fsm/mod_packs
2023/10/25 05:21:45 Loaded Factorio settings from /opt/factorio/config/server-settings.json
2023/10/25 05:21:45 Starting server on: 0.0.0.0:80
2023/10/25 05:21:46 zip: not a valid zip file
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   405  100   405    0     0   1131      0 --:--:-- --:--:-- --:--:--  1128
100 56.1M  100 56.1M    0     0  17.0M      0  0:00:03  0:00:03 --:--:-- 25.1M
/opt/fsm/mod_packs
2023/10/25 05:22:00 Loaded Factorio settings from /opt/factorio/config/server-settings.json
2023/10/25 05:22:00 Starting server on: 0.0.0.0:80
2023/10/25 05:22:04 zip: not a valid zip file

Compose

version: "3"
services:
  factorio_server_manager:
    image: "ofsm/ofsm:latest"
    container_name: "factorio_server_manager"
    restart: "unless-stopped"
    environment:
      FACTORIO_VERSION: stable
    ports:
      - "8999:80"
      - "34197:34197/udp"
    volumes:
      - "$PWD/mount/fsm-data:/opt/fsm-data"
      - "$PWD/mount/factorio-data/saves:/opt/factorio/saves"
      - "$PWD/mount/factorio-data/mods:/opt/factorio/mods"
      - "$PWD/mount/factorio-data/config:/opt/factorio/config"
      - "$PWD/mount/factorio-data/mod_packs:/opt/fsm/mod_packs"

Factorio Version