Hey mate, how did you fix this? Where did you put the Server Manager .exe file? Cheers Mark
HI all, im stuck on getting things done to put an assetto corsa online server, allways getting some kind of message on the yaml.file like this one : " yaml: line 40: did not find expected key "
I've paid for GTX gaming assetto corsa server and still cant make it run, can someone pointing me in the right direction please ? thanks
Hi, i've succesfully ran server manager on docker container on my synology nas. Now im trying to add stracker (extract and copy zip) but nothing happens on stracker page, it still asks me to download and extract. Do i have to run it somehow?
Hi,
Can u add,
Race_extra_lap ,
in race, please
Where should i mount it? Do i have to run it manually?Hi,
If you're running in docker you'll need to volume mount the stracker directory (and assign the ports for the stracker web interface and ptracker connection)!
https://docs.docker.com/storage/volumes/ should be helpful for that stuff.
Thanks
@Hecrer After some more debugging I found that the container creates files under PGID/PUID 1000, which is another user on my server and thus causes all kinds of permission issues.
I forked your repo and forced userid 1001 (which is my user) by changing line 44 in your Dockerfile:
Code:RUN useradd -ms /bin/bash -u 1001 ${SERVER_USER}
This basically solved all the problems. The next steps would be to make this configurable so you can map the "assetto" user in the container to your correct user and group on your host server.
Here is an interesting read: https://medium.com/@mccode/understanding-how-uid-and-gid-work-in-docker-containers-c37a01d01cf
Perhaps you can make the user-id and group-id configurable like this:
Code:RUN useradd -ms /bin/bash -u ${PUID} -g ${PGID} ${SERVER_USER}
You can quickly find your user by running: id -u and your group by running id -g
Where should i mount it? Do i have to run it manually?
I believe (and i may be wrong here) that the temperature cannot be negative. Certainly, the number displayed in the Live Timings is an unsigned 8 bit integer. This means that a negative value will cause a "wrap around" to -1. If it is possible to run negative track temperatures, please let me know and I will look into whether we can amend this.View attachment 398103View attachment 398105
How can you explain such a difference in the temperature specified in the weather settings and the value in the game itself?
Hi guys, firstly I want to thank the devs for this awesome tool, I managed to make it run flawlessly together with stracker and Real Penalty tool and decided to support the devs and buy the premium version.
I kinda understand how everything works and how to set stuff up but one thing is a mystery for me. There is a system for drivers to register to an event, but do they need to have Server Manager account or is there any front end or link for unregistered people so they can see races and apply for them? Do I need to create some "universal" account for server manager, show it to the users and let them use it for registration? Second thing, is it possible to register only for championship races or users can register for one custom event only somehow? It would be awesome if this would be possible. I just want to organize occasional races but with fixed entry list.
Only Championships have registration forms built into them. Generally if you want a sign up form for a single custom race, just make it a championship with one event in it and turn the sign up form on. Anyone can register for an event so long as you have set Server Manager to 'read open' in the Accounts page.
Hi everyone, hope you're doing well! Lots of nice stuff in this update, happy racing!
Added:
- Added the ability to toggle on/off the ACSR skill gate for ACSR exported championships.
- Added compatibility with Real Penalty v3.00.02
- You can now specify which tab in a Championship is active by default on page load.
- Added a page that allows admins to view a read-only copy of the server_cfg.ini and entry_list.ini currently applied to the server.
- You can now add tags to a...