alinmear / docker-conanexiles

A docker container to easily provision and manage a conanexiles dedicated server using wine
MIT License
105 stars 74 forks source link

How to remove the server password? #33

Closed twdnhfr closed 5 years ago

twdnhfr commented 5 years ago

the settings to remove the server password do not seem to work

    - "CONANEXILES_Engine_OnlineSubSystemSteam_ServerPassword="
    - "CONANEXILES_Engine_OnlineSubsystemSteam_ServerPassword=''"

any tips? the server always starts with the default password "MySecret"

TBK commented 5 years ago
- "CONANEXILES_Engine_OnlineSubSystemSteam_ServerPassword="

Would do the trick. I just spun up a new server to validate that it works and it did.

Try to remove the persistent files with docker-compose down -v (will delete the data volume) and then start anew with docker-compose up -d.

Alternatively you can edit the ServerSettings.ini file (remove all after =, ServerPassword=).

You will find ServerSettings.ini at /conanexiles/ConanSandbox/exiles0/Saved/Config/WindowsServer

twdnhfr commented 5 years ago

Thanks a lot!