{"id":18577,"date":"2024-02-03T13:18:57","date_gmt":"2024-02-03T13:18:57","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=18577"},"modified":"2024-02-11T17:35:23","modified_gmt":"2024-02-11T17:35:23","slug":"how-to-create-a-palworld-dedicated-server-on-a-vps","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/","title":{"rendered":"How to Create a Palworld Dedicated Server on a VPS"},"content":{"rendered":"\n<p>This section will guide you through the process of setting up your dedicated server for the Palworld Steam version. We&#8217;ll cover everything from choosing the right hosting plan to installing essential mods to enhance your gaming experience. Please note that the Linux commands may vary depending on your distribution.<\/p>\n\n\n\n<p>Important Note: As of now, Palworld&#8217;s dedicated game server is exclusively available for the Steam version.<\/p>\n\n\n\n<p>When selecting the ideal VPS game hosting plan for Palworld, consider the following system requirements:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Operating system: Linux or Windows.<\/li>\n\n\n\n<li>Processor: A quad-core processor or better.<\/li>\n\n\n\n<li>RAM: 8 GB or more, depending on the number of players.<\/li>\n\n\n\n<li>Storage: A minimum of 40 GB.<\/li>\n<\/ul>\n\n\n\n<p>For Palworld dedicated servers accommodating up to 32 players, we recommend a minimum of 16 GB of RAM for optimal performance. Based on these specifications, XGamingPanel&#8217;s Game Panel 4 plan is an excellent choice.<\/p>\n\n\n\n<p>XGamingServer&#8217;s Palworld server hosting also provides a Game Panel, which allows you to set up a dedicated server for various games without having to use command-line commands. We will explain this method later in the tutorial.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-configure-a-vps-palworld\">Configure a VPS Palworld<\/h2>\n\n\n\n<p>To configure your VPS, connect to it via SSH using tools like PuTTY, Terminal. You&#8217;ll find the server&#8217;s IP address and login credentials under the &#8220;SSH access&#8221; tab in the Overview menu.<\/p>\n\n\n\n<p>By default, you&#8217;ll log in as the root user. However, we recommend creating another Linux user account with superuser privileges to minimize the risk of accidental command execution that might disrupt your server. Here&#8217;s the command to create a new user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>adduser your_username<\/code><\/pre>\n\n\n\n<p>Replace &#8220;your_username&#8221; with your desired username, set a new password, and follow the on-screen instructions. Once you&#8217;ve created the user, grant it superuser privileges and switch to the new account with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>usermod -aG sudo your_username\nsu your_username<\/code><\/pre>\n\n\n\n<p>Next, configure the VPS firewall to open port 8211, which Palworld uses for communication with dedicated servers. Use these commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 8211\/tcp\nsudo ufw allow 8211\/udp<\/code><\/pre>\n\n\n\n<p>If you encounter a &#8220;command not found&#8221; error in your Terminal, it indicates that the utility is either disabled or not installed. Refer to our article on how to configure the Uncomplicated Firewall (UFW).<\/p>\n\n\n\n<p><strong>Warning<\/strong>: Enabling UFW may block the SSH port, potentially disconnecting you from the server. After installing the tool, be sure to add a new rule to allow SSH (port 22 by default).<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>Install SteamCMD and Dependencies<br>SteamCMD is Steam&#8217;s command-line utility for downloading and installing Palworld dedicated server files. Before configuring SteamCMD, update your APT repository with the following command:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade<\/code><\/pre>\n\n\n\n<p>Then, proceed to download the SteamCMD dependencies. Start by installing the lib32gcc runtime library and the software-properties-common package:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install -y lib32gcc-s1\nsudo apt install software-properties-common<\/code><\/pre>\n\n\n\n<p>Add the multiverse app repository and enable 32-bit architecture support with these commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo add-apt-repository multiverse\nsudo dpkg --add-architecture i386<\/code><\/pre>\n\n\n\n<p>Finally, synchronize the APT repository and install the SteamCMD package:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install steamcmd -y<\/code><\/pre>\n\n\n\n<p>Additionally, install Linux Screen to allow the server to continue running in the background after your SSH session ends:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install screen<\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li>Download Palworld Server Files<br>Once you have the necessary utilities and dependencies installed, download the Palworld dedicated server tool using SteamCMD. Use the following command:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>steamcmd +login anonymous +app_update 2394010 validate +quit<\/code><\/pre>\n\n\n\n<p>Navigate to the newly created \/PalServer directory within the Steam folder using the &#8220;cd&#8221; command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ~\/Steam\/steamapps\/common\/PalServer<\/code><\/pre>\n\n\n\n<p>If your Terminal returns an error, it means you didn&#8217;t run SteamCMD in the home directory. To address this, locate the correct \/PalServer folder path using the Linux &#8220;find&#8221; command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo find \/ -type d -name \"PalServer\"<\/code><\/pre>\n\n\n\n<p>Then, rerun the &#8220;cd&#8221; command with the correct path relative to your current directory. For instance, if you are in the steamapps folder, enter:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/common\/PalServer<\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"5\">\n<li>Launch the Server<br>To start the Palworld dedicated server tool, navigate to the PalServer directory and execute the startup script:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/PalServer.sh<\/code><\/pre>\n\n\n\n<p>The Terminal should display logs indicating that the server is running. However, you may encounter the following error:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.steam\/sdk64\/steamclient.so: cannot open shared object file: No such file or directory<\/code><\/pre>\n\n\n\n<p>To resolve this issue, stop the process by pressing Ctrl + C. Then, run the following commands sequentially:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir -p ~\/.steam\/sdk64\/\nsteamcmd +login anonymous +app_update 1007 +quit\ncp ~\/Steam\/steamapps\/common\/Steamworks\\ SDK\\ Redist\/linux64\/steamclient.so ~\/.steam\/sdk64\/<\/code><\/pre>\n\n\n\n<p>Afterward, rerun the startup script. You might still see a similar error during the first boot, but PalServer should work if you see the following line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.steam\/sdk64\/steamclient.so OK. (First tried local 'steamclient.so')<\/code><\/pre>\n\n\n\n<p>At this point, your Palworld dedicated server will shut down if you quit the session or disconnect from SSH. To keep it running in the background, start the script using Linux Screen.<\/p>\n\n\n\n<p>To do this, return to your current user account&#8217;s home directory using the &#8220;cd&#8221; command and initiate a new Terminal session:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>screen<\/code><\/pre>\n\n\n\n<p>Navigate to the location of &#8220;PalServer.sh&#8221; and execute the script with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ~\/Steam\/steamapps\/common\/PalServer\n.\/PalServer.sh<\/code><\/pre>\n\n\n\n<p>Once the server is running, press Ctrl + A + D to detach from the Screen session. The server will remain active in the background, and you can reconnect using this command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>screen -r<\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\" start=\"6\">\n<li>Configure Your Palworld Server<br>Running the startup script without additional arguments will launch the Palworld dedicated server using default settings. Advanced users can customize the server&#8217;s behavior by adding specific commands, such as:<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-port<\/code>: Change the dedicated server&#8217;s listening port.<\/li>\n\n\n\n<li><code>-players<\/code>: Set the maximum number of players.<\/li>\n\n\n\n<li><code>-useperfthreads<\/code>: Enable the perf system to track multi-threaded events.<\/li>\n\n\n\n<li><code>-NoAsyncLoadingThread<\/code>: Disable asynchronous loading threads.<\/li>\n\n\n\n<li><code>-UseMultithreadForDS<\/code>: Use CPU&#8217;s multithreading to run the dedicated server.<\/li>\n\n\n\n<li><code>-EpicApp=PalServer<\/code>: Set your VPS as a community server.<\/li>\n<\/ul>\n\n\n\n<p>Additionally, you can configure the &#8220;PalWorldSettings.ini&#8221; file to adjust your in-game server settings. To do this, navigate to the folder using this command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ~\/Steam\/steamapps\/common\/PalServer\/Pal\/Saved\/Config\/LinuxServer<\/code><\/pre>\n\n\n\n<p>Open the &#8220;PalWorldSettings.ini&#8221; file using a text editor like nano:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano PalWorldSettings.ini<\/code><\/pre>\n\n\n\n<p>By default, the file is empty. You can add various parameters like &#8220;ServerName&#8221; to change the server&#8217;s name and &#8220;AdminPassword&#8221; to set the admin mode access credential. Refer to the following article to learn more about Palworld server&#8217;s full settings and their values.<\/p>\n\n\n\n<p>After making changes to your server settings, save them by pressing Ctrl + X, followed by Y, and then Enter.<\/p>\n\n\n\n<p>As an alternative to manually configuring settings, you can copy and paste the game&#8217;s configuration from Palworld in your Steam library. Locate the &#8220;PalWorldSettings.ini&#8221; file and open it with Notepad. Copy the settings and paste them into your server&#8217;s INI file using nano. Modify the parameters and values according to your requirements.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"7\">\n<li>Connect to the Server as an Administrator<br>Once the dedicated server is up and running, launch Palworld from your Steam library and select &#8220;Join Multiplayer Game.&#8221; Connect by entering your VPS&#8217; public IP address along with the default port number:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>185.185.185.185:8211<\/code><\/pre>\n\n\n\n<p>Other players can also join your dedicated Palworld server by using the same address. Alternatively, they can connect via the &#8220;Community Servers&#8221; menu if you launched the host using the &#8220;EpicApp&#8221; argument.<\/p>\n\n\n\n<p>After entering the game, press Enter to access the chat and type the following to gain access to admin commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/AdminPassword yourpassword<\/code><\/pre>\n\n\n\n<p>Replace &#8220;yourpassword&#8221; with your actual admin password. The game should confirm your administrator status. If it doesn&#8217;t work, make sure you&#8217;ve added the &#8220;AdminPassword&#8221; setting in the &#8220;PalWorldSettings.ini&#8221; file.<\/p>\n\n\n\n<p>As an administrator, you can ban or kick players who disrupt others&#8217; gameplay experience. Use the following commands in the chat:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/BanPlayer playerID\n\/KickPlayer playerID<\/code><\/pre>\n\n\n\n<p>You can check all players&#8217; IDs using the &#8220;\/ShowPlayer&#8221; command. To view a list of banned users, navigate to the &#8220;\/Pal\/Saved\/SaveGames&#8221; directory and open &#8220;banlist.txt&#8221; using nano. To unban a user, simply remove their ID from the list.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/xgamingserver.com\/palworld-server-hosting\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"240\" src=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7.png\" alt=\"\" class=\"wp-image-16082\" srcset=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7.png 1024w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-600x141.png 600w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-300x70.png 300w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-768x180.png 768w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-370x87.png 370w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-270x63.png 270w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-570x134.png 570w, https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/01\/image-7-740x173.png 740w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>This section will guide you through the process of setting up your dedicated server for the Palworld Steam version. We&#8217;ll cover everything from choosing the right hosting plan to installing essential mods to enhance your gaming experience. Please note that the Linux commands may vary depending on your distribution. Important Note: As of now, Palworld&#8217;s [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":18593,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[98],"tags":[],"class_list":["post-18577","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-palworld"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create a Palworld Dedicated Server on a VPS - XGamingServer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/palworld-server-hosting\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a Palworld Dedicated Server on a VPS\" \/>\n<meta property=\"og:description\" content=\"This section will guide you through the process of setting up your dedicated server for the Palworld Steam version. We&#8217;ll cover everything from choosing the right hosting plan to installing essential mods to enhance your gaming experience. Please note that the Linux commands may vary depending on your distribution. Important Note: As of now, Palworld&#8217;s [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/palworld-server-hosting\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-03T13:18:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-11T17:35:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Xray\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rainerstudios\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Xray\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/\"},\"author\":{\"name\":\"Xray\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\"},\"headline\":\"How to Create a Palworld Dedicated Server on a VPS\",\"datePublished\":\"2024-02-03T13:18:57+00:00\",\"dateModified\":\"2024-02-11T17:35:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/\"},\"wordCount\":1163,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg\",\"articleSection\":[\"Palworld Server Docs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/palworld-server-hosting#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/\",\"url\":\"https:\/\/xgamingserver.com\/palworld-server-hosting\",\"name\":\"How to Create a Palworld Dedicated Server on a VPS - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg\",\"datePublished\":\"2024-02-03T13:18:57+00:00\",\"dateModified\":\"2024-02-11T17:35:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/palworld-server-hosting\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg\",\"width\":1200,\"height\":628,\"caption\":\"How to Create a Palworld Dedicated Server on a VPS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/palworld-server-hosting#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Palworld Server Docs\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/palworld\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Create a Palworld Dedicated Server on a VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\",\"name\":\"Xray\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g\",\"caption\":\"Xray\"},\"description\":\"A Mathematician who knows a thing or two about Design.\",\"sameAs\":[\"https:\/\/xgamingserver.com\/blog\",\"https:\/\/www.instagram.com\/rainerstudios\/\",\"https:\/\/x.com\/@rainerstudios\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Create a Palworld Dedicated Server on a VPS - XGamingServer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/palworld-server-hosting","og_locale":"en_US","og_type":"article","og_title":"How to Create a Palworld Dedicated Server on a VPS","og_description":"This section will guide you through the process of setting up your dedicated server for the Palworld Steam version. We&#8217;ll cover everything from choosing the right hosting plan to installing essential mods to enhance your gaming experience. Please note that the Linux commands may vary depending on your distribution. Important Note: As of now, Palworld&#8217;s [&hellip;]","og_url":"https:\/\/xgamingserver.com\/palworld-server-hosting","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2024-02-03T13:18:57+00:00","article_modified_time":"2024-02-11T17:35:23+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg","type":"image\/jpeg"}],"author":"Xray","twitter_card":"summary_large_image","twitter_creator":"@rainerstudios","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Xray","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/"},"author":{"name":"Xray","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608"},"headline":"How to Create a Palworld Dedicated Server on a VPS","datePublished":"2024-02-03T13:18:57+00:00","dateModified":"2024-02-11T17:35:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/"},"wordCount":1163,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg","articleSection":["Palworld Server Docs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/palworld-server-hosting#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-a-palworld-dedicated-server-on-a-vps\/","url":"https:\/\/xgamingserver.com\/palworld-server-hosting","name":"How to Create a Palworld Dedicated Server on a VPS - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg","datePublished":"2024-02-03T13:18:57+00:00","dateModified":"2024-02-11T17:35:23+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/palworld-server-hosting"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg","width":1200,"height":628,"caption":"How to Create a Palworld Dedicated Server on a VPS"},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/palworld-server-hosting#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Palworld Server Docs","item":"https:\/\/xgamingserver.com\/blog\/category\/palworld\/"},{"@type":"ListItem","position":3,"name":"How to Create a Palworld Dedicated Server on a VPS"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608","name":"Xray","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g","caption":"Xray"},"description":"A Mathematician who knows a thing or two about Design.","sameAs":["https:\/\/xgamingserver.com\/blog","https:\/\/www.instagram.com\/rainerstudios\/","https:\/\/x.com\/@rainerstudios"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2024\/02\/How-to-Create-a-Palworld-Dedicated-Server-on-a-VPS.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/18577","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=18577"}],"version-history":[{"count":2,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/18577\/revisions"}],"predecessor-version":[{"id":18594,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/18577\/revisions\/18594"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/18593"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=18577"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=18577"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=18577"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}