Skip to content

Create basic-server.md #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/basic/create-server/basic-server.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
sidebar_position: 1
title: Creating a server
description: How to create a simple server
keywords: [server, create, how to, guide, basic]
---

## What you need {#-what-you-need}

To create a simple server, you need the following:

- MCSS installed on your computer, in a folder where you have write permissions. **Do not run MCSS within the zip archive you downloaded**
- A server file, we recommend using `paper`. You can checkout the downloads and more information in the [Sourcing a server file](sourcing-server-file) section.
- The latest version of Java. Look at our [Java version guide](/advanced/java-version) for more information and download links.

:::info
If you want to create a Forge or Fabric server, please use the specific instructions :
[- For forge](/basic/create-server/Forge/create-forge-server)
[- For Fabric](/basic/create-server/Fabric/create-fabric-server-manually)
:::

## Creating a server {#-creating-a-server}

1. Open MCSS and click on the **Create Server** button.
2. In the **Create Server** window, select the server type you want to create. For this guide, we will use **Paper**.

:::tip
If the srver type doesn't appear in the list (for example Neoforge) don't worry !
MCSS is still most likely capable of running it. Just select the "closest" available type (in this example Forge)
:::

3. Click on the **Select File** button to choose the server file you downloaded earlier.
4. Navigate to the folder where you saved the server file, select it, and click **Open**.
5. Enter a name for your server in the **Server Name** field.
6. Optionally, you can change the **Server Port** if you want to use a different port than the default (25565).
7. Click on the **Create** button to create the server.
8. Once the server is created, you will see it in the **Servers** list.
9. To start the server, select it from the list and click on the **Start Server** button.
Loading