레인쏘울
레인쏘울
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
Maybe I solved the problems but don't know how to do it....lol When I removed the generated path which screenshotted at Step 4) and then set the path again all problems disappeared.
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
Still have problems... Is there any way to easily set up modded dedicated server?
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
and manually downloaded log .zip file :
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
I'll paste the automatically downloaded log .zip file :
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
6) And I clicked [Generate debug info] it seems like download .zip file well but it said error
឵An error occurred while generating the debug file. Please manually check your Satisfactory Mod Manager log files for more information and report this on the Discord. Use the button below to open the documentation and learn how.
឵An error occurred while generating the debug file. Please manually check your Satisfactory Mod Manager log files for more information and report this on the Discord. Use the button below to open the documentation and learn how.
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
5) After change game installed location "Steam" to "Remote1" and when clicked download button on mods list, problem occured and it said
឵failed to get platform: failed to validate installation: failed reading FactoryGameEGS.exe: failed to check if file exists: connection lost឵
឵failed to get platform: failed to validate installation: failed reading FactoryGameEGS.exe: failed to check if file exists: connection lost឵
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
No description
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
4) Now in [SMM - Manage Servers], I set name, pw, host blahblah and got the path like this:
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
No description
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
3) By using FileZilla, I checked the SFTP Docker container working fine like this:
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
No description
18 replies
SMSatisfactory Modding
Created by 레인쏘울 on 10/12/2024 in #help-using-mods
Trying to use mods on Dedicated server, but failed...
2) But, "wolveix's satisfactory-server" does not have an S/FTP server, so I added another Docker container for SFTP function by writing Docker compose file like below :
services:
satisfactory-server:
container_name: '<Container_Name>'
hostname: '<Name>'
image: 'wolveix/satisfactory-server:latest'
ports:
- '7777:7777/udp'
- '7777:7777/tcp'
volumes:
- './satisfactory-server:/config'
environment:
- MAXPLAYERS=8
- PGID=1000
- PUID=1000
- ROOTLESS=false
- STEAMBETA=false
restart: unless-stopped
healthcheck:
test: [ "CMD", "bash", "/healthcheck.sh" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
deploy:
resources:
limits:
memory: 16G
reservations:
memory: 8G

sftp-server:
container_name: 'sftp-server'
image: 'atmoz/sftp:latest'
volumes:
- './satisfactory-server:/home/<Name>/upload'
ports:
- '2222:22'
command: 'Name:PW:1000'
environment:
- USERNAME=<Name>
- PASSWORD=<PW>
- UID=1000
- GID=1000
services:
satisfactory-server:
container_name: '<Container_Name>'
hostname: '<Name>'
image: 'wolveix/satisfactory-server:latest'
ports:
- '7777:7777/udp'
- '7777:7777/tcp'
volumes:
- './satisfactory-server:/config'
environment:
- MAXPLAYERS=8
- PGID=1000
- PUID=1000
- ROOTLESS=false
- STEAMBETA=false
restart: unless-stopped
healthcheck:
test: [ "CMD", "bash", "/healthcheck.sh" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
deploy:
resources:
limits:
memory: 16G
reservations:
memory: 8G

sftp-server:
container_name: 'sftp-server'
image: 'atmoz/sftp:latest'
volumes:
- './satisfactory-server:/home/<Name>/upload'
ports:
- '2222:22'
command: 'Name:PW:1000'
environment:
- USERNAME=<Name>
- PASSWORD=<PW>
- UID=1000
- GID=1000
and it worked like screenshot below :
18 replies