Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kirklin/palworld-server-deploy-script
a convenient one-click deployment script designed to facilitate the setup of a Palworld server
https://github.com/kirklin/palworld-server-deploy-script
palworld script
Last synced: about 2 months ago
JSON representation
a convenient one-click deployment script designed to facilitate the setup of a Palworld server
- Host: GitHub
- URL: https://github.com/kirklin/palworld-server-deploy-script
- Owner: kirklin
- License: mit
- Created: 2024-01-23T07:45:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-23T08:16:53.000Z (about 1 year ago)
- Last Synced: 2024-10-21T21:48:57.574Z (4 months ago)
- Topics: palworld, script
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Palworld Server Deployment Script
# 幻兽帕鲁 (Palworld)服务器一键部署脚本This is a convenient one-click deployment script designed to facilitate the setup of a Palworld server. Before using it, make sure you have created a server account named "steam" If not, follow these steps:
***
这是一个方便快捷的一键部署脚本,旨在为幻兽帕鲁服务器的搭建提供便利。在使用之前,请确保你已经创建了一个名为 "steam" 的服务器账号。如果没有,请按照以下步骤创建:1. 执行以下命令创建 "steam" 账号,并设置密码:
```bash
sudo useradd -m steam
sudo passwd steam
```2. 为 "steam" 账号添加 sudo 权限,使其可以执行 sudo 命令:
```bash
sudo echo "steam ALL=(ALL:ALL) ALL" >> /etc/sudoers
```如果在执行 sudo 命令时仍然显示没有权限,可以使用 vim 编辑 `/etc/sudoers` 文件
```bash
vim /etc/sudoers
```在文件中添加:`steam ALL=(ALL:ALL) ALL`
3. 切换到 "steam" 账号:
```bash
sudo -u steam -s
cd /home/steam
```4. 下载执行部署脚本:
[install.sh](./install.sh)远程安装指令:
```bash
wget -O - https://github.com/kirklin/palworld-server-deploy-script/raw/main/install.sh | sh
```## 注意事项
如果你使用云服务器,确保开放8211端口防火墙规则。这是游戏服务器通信所需的端口。