-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
93 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Adding Subusers | ||
description: Learn how to add subusers to your game server. | ||
tableOfContents: false | ||
sidebar: | ||
label: Adding Subusers | ||
--- | ||
|
||
With Game Host Bros you can add different Subusers to help with your server. Each user you add can have their own permissions from something basic such as restarting the server, all the way up to full admin access. | ||
|
||
1. Load the [Game Host Bros Panel](https://panel.gamehostbros.com/). | ||
2. Select your server. | ||
3. In the left-hand menu, click `Management > Subusers`. | ||
4. Click the button labeled `Create`. | ||
5. Input the User’s email address and assign the permissions you want to give them. | ||
6. Click `Add New Subuser` to save. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Creating Databases | ||
description: Learn how to create a database for your game server. | ||
tableOfContents: false | ||
sidebar: | ||
label: Creating Databases | ||
--- | ||
|
||
This article will guide you through the process of creating a MySQL database for your game server, which is used by some plugins to store data. | ||
|
||
1. Load the [Game Host Bros Panel](https://panel.gamehostbros.com/). | ||
2. Select your server. | ||
3. In the left-hand menu, click `Management > Databases`. | ||
4. Click the `Create` button. | ||
5. Locate the plugin you'd like to use the MySQL database for. Open the plugin's configuration file and input the database details correctly. | ||
6. Restart your server. | ||
|
||
:::note | ||
- Resetting your database will remove all the information in that database. | ||
- Backups do not include databases. | ||
- The MySQL port is always, 3306. | ||
- If you want to use 127.0.0.1, it is now 172.200.0.1 | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Schedules | ||
description: Learn how to create Schedules for your game server. | ||
tableOfContents: false | ||
sidebar: | ||
label: Schedules | ||
--- | ||
|
||
You can set up schedules to restart your server, send commands, or do game-specific tasks such as wiping Rust servers. | ||
|
||
:::note | ||
When setting up the schedule, the time is in UTC +0. We suggest you restart your servers at least once every 24 hours for the best possible performance. | ||
::: | ||
|
||
<iframe src="//www.youtube.com/embed/MyIA9kse-Ec" allowfullscreen="allowfullscreen"></iframe> | ||
|
||
1. Load the [Game Host Bros Panel](https://panel.gamehostbros.com/). | ||
2. Select your server. | ||
3. In the left-hand menu, click `Configuration > Schedules`. | ||
4. Click the `Create` button. | ||
5. Give your schedule a name, in this example we will use "Restart" as the name. | ||
6. Put in the time you want the server to perform the action [in cron format](https://crontab.guru/). For example, to run the Restart at 10 UTC, I would put in 0 10 * * *. | ||
7. It will now say AT 10:00, Next run at November 29, 2023 @ 6:00 PM. That means at 6:00PM your time the schedule will run. | ||
8. Click Submit and then `Create Task` on the top right and select the type of Task you want to perform. Example: we use power action, and restart. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: How to Upload Files to Your Game Server | ||
description: Learn how to upload files to your game server. | ||
tableOfContents: false | ||
sidebar: | ||
label: Uploading Files | ||
--- | ||
|
||
This guide will walk you through the process of uploading files to your game server using [Filezilla](https://filezilla-project.org/download.php?show_all=1). | ||
|
||
1. Load the [Game Host Bros Panel](https://panel.gamehostbros.com/). | ||
2. Select your server. | ||
3. In the left-hand menu, click `System > SFTP Details`. | ||
4. Open FileZilla and locate the `Quickconnect` bar. | ||
5. Enter the SFTP connection address you obtained from the game panel into the `Host` field. | ||
6. Input the `username` and the `password`. The password is the same you use to log in to the Game Panel. | ||
7. Click the `Quickconnect` button. | ||
|
||
Once connected, you'll see your local files on the left side of the FileZilla window and your game server files on the right side. To upload files, simply locate the files on your local machine (left side), and drag and drop them to the desired location on your game server (right side). |