@dateisland08
Profile
Registered: 2 years, 7 months ago
Create Your Own Minecraft Server Minecraft was released in 2011, making it one of the most loved video games. It was developed by Mojang in Sweden and has sold over 176 million copies. Minecraft now has more than 112,000,000 active monthly players. Minecraft Instances are fully customizable and allow you to customize the game to your liking. Minecraft is a game that allows you to build a 3-dimensional environment using different blocks. The players must be creative in order to design and build their virtual world. By drilling and collecting blocks, users can mine and remove them from Minecraft. These pieces can then reassembled into new items. Java Edition is currently available. This Java Edition lets players customize the game to their likings, creating new gameplay mechanics and textures. As there is no specific goal to accomplish, there is no given way how to play Minecraft. Any goal can be achieved by players. However, some pre-defined game modes are available: Creative Mode, which allows players to build whatever they can imagine from the limitless resources given to them. Survival Mode: Players must explore the world to find natural resources such wood and stones. Players also need to build a house to protect themselves against enemies and source food to survive. Multiplayer mode is available in the game. This allows multiple players to interact and communicate within a single world. Players can either connect to one of the publicly known worlds or build their world with their friends by using a private Minecraft server. Why should I run my own Minecraft server? By setting up your own Minecraft server, you can set the game's rules and invite all of your friends to play with you. You can install all the mods you want and customize your world with elements that were not initially available when the game was programmed. The Minecraft server is a Java application and runs perfectly on Scaleway Instances, allowing you to deploy your own Minecraft Instance in just a few minutes. Souldevteam How can I create my own Minecraft server maker? - You have an Account and are logged into Scaleway - You have now configured your SSH Key - You have an Instance running on Ubuntu Bionic Beaver (18.04) or later - You have sudo rights or access as root - You have a copy Minecraft client for your computer Deploying your own Minecraft server can be done in a few easy steps on a Scaleway Development Instance. If you don't have an Instance, you can deploy your first instance. Use SSH to connect to your instance Update the apt packet cache and upgrade the software already installed on the Instance: apt update && apt upgrade -y Copy code OpenJDK is an open-source Java Platform and GNU Screen package. apt install -y openjdk-8-jre-headless screen Copy code Create a new minecraft user under which the Minecraft server application will run: adduser minecraft Copy code Enter the user's new password, the password confirmation and the user details when prompted. Register for the minecraft account su minecraft Copy code Change into the user's directory home: Copy code from cd Download the Minecraft server maker application by using wget. The link for the latest version of the application is available directly on the Minecraft Server website: wget https://launcher.mojang.com/v1/objects/3dc3d84a581f14691199cf6831b71ed1296a9fdf/server.jar Copy code Run the Minecraft server application with the following command: Important: The flags -Xms and -Xmx define the minimum and maximum amount of RAM that can be used by the Minecraft server application. These values can be adjusted to suit your needs. For the best performance, it is recommended to keep the minimum value at 1024M. During the initial run, the application creates the file eula.txt. Open the file in a text editor (for example nano) and change the value of eula from false to true: nano eula.txt Copy code #By changing the setting to TRUE, you are agreeing to our$ #Fri November 15 14:47.37 GMT 2019 eula=true Copy code Then save the file by pressing on CTRL+O and exit nano by pressing CTRL+X. Take control of the current Shell to avoid any issues with the screen command script /dev/null Copy code To run the Minecraft application, create a new screen: Screen -S minecraft Copy Code Re-run the Minecraft server maker application: java -Xms1024M -Xmx2048M -jar server.jar nogui Copy code The following output informs you that the Minecraft server application is running: ... [14:53:38] [Server thread/INFO]: Starting minecraft server version 1.14.4 [14:53:38] [Server thread/INFO]: Loading properties [14:53:38] [Server thread/INFO]: Default game type: SURVIVAL [14:53:38] [Server thread/INFO]: Generating keypair [14:53:38] [Server thread/INFO]: Starting Minecraft server on *:25565 [14:53:39] [Server thread/INFO]: Using epoll channel type [14:53:39] [Server thread/INFO]: Preparing level "world" [14:53:39] [Server thread/INFO]: Reloading ResourceManager: Default ... [14:54:18] [Server thread/INFO]: Preparing spawn area: 83% [14:54:19] [Server-Worker-2/INFO]: Preparing spawn area: 85% [14:54:19] [Server thread/INFO]: Preparing spawn area: 88% [14:54:20] [Server-Worker-2/INFO]: Preparing spawn area: 90% [14:54:20] [Server-Worker-2/INFO]: Preparing spawn area: 95% [14:54:21] [Server thread/INFO]: Preparing spawn area: 97% [14:54:21] [Server thread/INFO]: Time elapsed: 14775 ms [14:54:21] [Server thread/INFO]: Done (42.088s)! For help, type "help" Copy code Once the application is running, move the screen in the background by pressing CTRL+a followed by d. The session is being moved to the background. You can resume the running session by using the command screen –r. Now you can log off your Instance to configure your Minecraft client. Note: The Minecraft server created above uses the standard settings. If you wish to create a new Minecraft world, change the level-name directive in your server.properties file and other settings accordingly. For more information, please refer to the official documentation. How can I connect to my own Minecraft server maker? When your server is up and running, connect it to the Minecraft game client. Install and launch the Minecraft client from your local computer. After logging into your Minecraft account, click the Multiplayer button. Click on Add Server to enter a name and public IP address for your instance. Now your server is listed in the servers directory. To connect to your server, click the server and then Join Server.
Website: https://pastelink.net/l04xv4qb
Forums
Topics Started: 0
Replies Created: 0
Forum Role: Participant