Server Help on VDS
-
- New to forums
- Posts: 12
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Wed Apr 23, 2014 5:49 am
Server Help on VDS
I am trying to run a custom game server, Rust at that, and well, it requires to be started by a .BAT file. My problem is, it wont start. The .BAT opens the cmd box but then just sits there. I cant run the server. Its running Windows Server 2012 R2. Please help me fix this. Thanks!
Re: Server Help on VDS
Since the Rust server files are private it's going to be hard to help you as not many people know the correct setup for the server. We can sure try to assist, though.mouthymotor wrote:I am trying to run a custom game server, Rust at that, and well, it requires to be started by a .BAT file. My problem is, it wont start. The .BAT opens the cmd box but then just sits there. I cant run the server. Its running Windows Server 2012 R2. Please help me fix this. Thanks!
Is there any text in the command prompt after booting the server? Can you post the contents of your .bat file?
@Kraze^NFo> Juski has a very valid point
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
No there is no text. I can run it perfectly fine on my Windows 7 computer, but you do not have the option to install it. Its like WS 2012 does not want to run the .bat file. And the code is: @echo offkraze wrote:Since the Rust server files are private it's going to be hard to help you as not many people know the correct setup for the server. We can sure try to assist, though.mouthymotor wrote:I am trying to run a custom game server, Rust at that, and well, it requires to be started by a .BAT file. My problem is, it wont start. The .BAT opens the cmd box but then just sits there. I cant run the server. Its running Windows Server 2012 R2. Please help me fix this. Thanks!
Is there any text in the command prompt after booting the server? Can you post the contents of your .bat file?
rust_server.exe -batchmode -hostname "MY SERVER" -maxplayers 30 -port 28015 -datadir "serverdata/" -oxidedir "save/oxide"
Re: Server Help on VDS
mouthymotor wrote:No there is no text. I can run it perfectly fine on my Windows 7 computer, but you do not have the option to install it. Its like WS 2012 does not want to run the .bat file. And the code is: @echo offkraze wrote:Since the Rust server files are private it's going to be hard to help you as not many people know the correct setup for the server. We can sure try to assist, though.mouthymotor wrote:I am trying to run a custom game server, Rust at that, and well, it requires to be started by a .BAT file. My problem is, it wont start. The .BAT opens the cmd box but then just sits there. I cant run the server. Its running Windows Server 2012 R2. Please help me fix this. Thanks!
Is there any text in the command prompt after booting the server? Can you post the contents of your .bat file?
rust_server.exe -batchmode -hostname "MY SERVER" -maxplayers 30 -port 28015 -datadir "serverdata/" -oxidedir "save/oxide"
I'd recommend running Windows 2008R2, as that is Windows 7. I'd also remove Oxide from the equation since you want to be sure it's not causing any issues.
@Kraze^NFo> Juski has a very valid point
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Okay I will try WS 2008. Oxide isnt the problem. I have tried both with that and with out.kraze wrote:
I'd recommend running Windows 2008R2, as that is Windows 7. I'd also remove Oxide from the equation since you want to be sure it's not causing any issues.
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Okay. I have installed WS 2008 R2 but it still will not work. It just opens up the command prompt and sits there but I can't interact with it. Also, it creates the first time setup files in the background as if the server is running. I hope I can get it to work or I will just have to cancel my subscriptionkraze wrote:
I'd recommend running Windows 2008R2, as that is Windows 7. I'd also remove Oxide from the equation since you want to be sure it's not causing any issues.
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Also the ports for it are blocked? The ports are 28015 and 28016. canyouseeme.org can not see them. I have the firewall off?
Re: Server Help on VDS
It's not likely that the ports are blocked. We don't block any on our side. As for your bat file. Try using something like this..mouthymotor wrote:Also the ports for it are blocked? The ports are 28015 and 28016. canyouseeme.org can not see them. I have the firewall off?
Code: Select all
@ECHO OFF
START "" "C:\rust\rust_server.exe" -batchmode -port 28015 -cheatpunch -datadir "save/myserverdata/" -maxplayers 100 -cfg "config/server.cfg"
@Kraze^NFo> Juski has a very valid point
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
-
- New to forums
- Posts: 13
- Joined: Mon Mar 24, 2014 2:00 am
Re: Server Help on VDS
If you give me a copy of the files I will give it a shot at running it on my dedi running server 2008r2 and I should be able to get it to run via firedeamon which is a good way to run your servers as it gives you a lot of control over them
Luc
Luc
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Kraze, that didnt work. It just closes immediately now.
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Okay. I will upload them when I get home from work and let you play with it. I will also try FireDaemon as Im sure you will not be awake at 3:30 am US Central time.Luc_Mathlin wrote:If you give me a copy of the files I will give it a shot at running it on my dedi running server 2008r2 and I should be able to get it to run via firedeamon which is a good way to run your servers as it gives you a lot of control over them
Luc
Re: Server Help on VDS
Did you change it to the correct directory?mouthymotor wrote:Kraze, that didnt work. It just closes immediately now.
@ECHO OFF
START "" "C:\rust\rust_server.exe" -batchmode -port 28015 -cheatpunch -datadir "save/myserverdata/" -maxplayers 100 -cfg "config/server.cfg"
@Kraze^NFo> Juski has a very valid point
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
@Juski> Got my new signature, thanks!
@Kraze^NFo> Out of context!
@Juski> Doesn't matter!
@Juski> You said I had a valid point! You can't take it back now! It's out there!
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Yes. The directory is C:\Users\Administrator\Desktop\Rust Server\rust_server.exekraze wrote:Did you change it to the correct directory?mouthymotor wrote:Kraze, that didnt work. It just closes immediately now.
@ECHO OFF
START "" "C:\rust\rust_server.exe" -batchmode -port 28015 -cheatpunch -datadir "save/myserverdata/" -maxplayers 100 -cfg "config/server.cfg"
-
- New to forums
- Posts: 12
- Joined: Wed Apr 23, 2014 5:49 am
Re: Server Help on VDS
Luc, here is a link to the server files I just uploaded. Just run the .exe to extract it. (it all equals about 1.1 GB after extracted) If you can get this running, Please let me know. I am having no luck AT ALL. Thanks for your helpLuc_Mathlin wrote:If you give me a copy of the files I will give it a shot at running it on my dedi running server 2008r2 and I should be able to get it to run via firedeamon which is a good way to run your servers as it gives you a lot of control over them
Luc
Edit: forgot the link. https://mega.co.nz/#!SQ1GzRAD!Pgn5RKau0 ... GI05VIiUCI
-
- New to forums
- Posts: 13
- Joined: Mon Mar 24, 2014 2:00 am
Re: Server Help on VDS
Thanks mate, will give it a try later onmouthymotor wrote:Luc, here is a link to the server files I just uploaded. Just run the .exe to extract it. (it all equals about 1.1 GB after extracted) If you can get this running, Please let me know. I am having no luck AT ALL. Thanks for your helpLuc_Mathlin wrote:If you give me a copy of the files I will give it a shot at running it on my dedi running server 2008r2 and I should be able to get it to run via firedeamon which is a good way to run your servers as it gives you a lot of control over them
Luc
Edit: forgot the link. https://mega.co.nz/#!SQ1GzRAD!Pgn5RKau0 ... GI05VIiUCI