---
title: Setting/changing the RCON Password
description: Learn how to add an RCON password for your Left 4 Dead 2 server hosted with Nodecraft!
source: "https://nodecraft.com/support/games/l4d2/setting-changing-the-rcon-password"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvYjQ0NTQzNmI5MC9iYW5uZXIucG5nL20vIn0seyJuYW1lIjoiZ2FtZV9sb2dvIiwiaW1hZ2VfdXJsIjoiaHR0cHM6Ly9jbXMtYS5ub2RlY3JhZnQuY29tL2YvMTMzOTMyLzM3NXgxNTAvYmMzMGQyYjA2ZS9sb2dvLnBuZy9tLyJ9LHsibmFtZSI6ImN0YV90ZXh0IiwidGV4dCI6IkNyZWF0ZSB5b3VyIG93biBzZXJ2ZXIhIn0seyJuYW1lIjoidGV4dCIsInRleHQiOiJTZXR0aW5nL2NoYW5naW5nIHRoZSBSQ09OIFBhc3N3b3JkIn1d&s=db35b456128ec0142a13a80d34e110d22aa9e48999a9d1952d93f2f706bd04d5"
published: "2018-05-03T00:47:47.749Z"
updated: "2018-05-03T00:52:00.000Z"
---

# Setting/changing the RCON Password

Learn how to add an RCON password for your Left 4 Dead 2 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 ""
```
