---
title: Setting/changing the RCON Password
description: "Learn how to create an RCON password for your Counter-Strike: Source server hosted with Nodecraft!"
source: "https://nodecraft.com/support/games/css/setting-changing-the-rcon-password"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvM2Q5ZThiZWFkOS9jc3MtYmFubmVyLTEyMS5wbmcvbS8ifSx7Im5hbWUiOiJnYW1lX2xvZ28iLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMzc1eDE1MC9kY2Y3ZGRhMTJiL2xvZ28ucG5nL20vIn0seyJuYW1lIjoiY3RhX3RleHQiLCJ0ZXh0IjoiQ3JlYXRlIHlvdXIgb3duIHNlcnZlciEifSx7Im5hbWUiOiJ0ZXh0IiwidGV4dCI6IlNldHRpbmcvY2hhbmdpbmcgdGhlIFJDT04gUGFzc3dvcmQifV0&s=dd25f4b4aa9c3fc8209dd4f09a857f692b84343c88c52e0e85940d8c3cd265d3"
published: "2018-05-03T00:47:47.749Z"
updated: "2018-05-03T00:52:00.000Z"
---

# Setting/changing the RCON Password

Learn how to create an RCON password for your Counter-Strike: Source server hosted with Nodecraft!

Most source engine games make use of [RCON](https://developer.valvesoftware.com/wiki/Source_RCON_Protocol) - a protocol that allows server administrators to remotely execute commands on the server.

To set your RCON password on a Source Engine game server such as Counter Strike: Global Offensive, you'll need to follow the steps below:

1. Head to your File Manager from within NodePanel.
2. Browse to the `/csgo/cfg` directory, replacing `csgo` with your specific game of choice.
3. Open, or create a `server.cfg` file. This file will be automatically executed by the server every time the game starts up.
4. Add a line like the following (or edit, if it already exists), making replacements as necessary. It's important you use a secure password here, as anyone with this password will be able to execute commands on your game server.

```
rcon_password "my_sup3r_s3cr3t_password"
```

If you wish to entirely disable RCON, set the `rcon_password` value to a blank string, like so:

```
rcon_password ""
```
