-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when creating server game: Missing token since the DLC Launch #507
Comments
Same here. If you fix this please share the details. |
@CupCacke I fixed it by adding the EDIT: This triggers new errors. IMO something was broken with the config files location. |
I´ve deletet all the local files from the container so it created them from scratch. |
This is due to a changed / enforce default value, the default config value for public = true + no token, means that the server does not start with the default config. For some reason the env var toke is also not used correctly. Imho the default behaviour should be that your Factorio server is private anyways, unless you want it to be publi. Therefore the default value should be: "visibility": {
"public": false,
"lan": true
}, used compose file to reproduce the issue: x-logging:
logging: &default-logging
driver: "local"
options:
max-size: "100m"
max-file: "3"
version: '3.7'
services:
factorio:
image: factoriotools/factorio:2.0
logging: *default-logging
ports:
- "34197:34197/udp"
# - "27024:27015/tcp"
#restart: unless-stopped
environment:
UPDATE_MODS_ON_START: true
volumes:
- /var/some_magic_location/factorio_2024_se:/factorio |
Also try to delete previous versions of the image and optionally delete old files as well. |
Greetings,
I´ve encounterd the issue that all my servers run into the issue "Error when creating server game: Missing token."
I reset my token and tryid that of another "working container" so I ensured the token did not expire.
Any ideas?
The text was updated successfully, but these errors were encountered: