You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
560 B
15 lines
560 B
#!/bin/bash
|
|
export templdpath=$LD_LIBRARY_PATH
|
|
export LD_LIBRARY_PATH=./linux64:$LD_LIBRARY_PATH
|
|
export SteamAppId=892970
|
|
|
|
echo "Starting server"
|
|
|
|
# Load Config
|
|
. /vol/data/config/server
|
|
|
|
# NOTE: Minimum password length is 5 characters & Password cant be in the server name.
|
|
# NOTE: You need to make sure the ports 2456-2458 is being forwarded to your server through your local router & firewall.
|
|
./valheim_server.x86_64 -name "${vh_name:?}" -port 2456 -world "${vh_world:?}" -password "${vh_pass:?}" -public ${vh_public:?}
|
|
|
|
export LD_LIBRARY_PATH=$templdpath
|
|
|