帕鲁私服Ubuntu教程以及自动重启程序

目录

  • 1 帕鲁私服教程
  • 2 服务器说明
  • 3 自动重启程序
    • 3.1 python程序
    • 3.2 doit.sh
    • 3.3 start.sh
    • 3.4 todo.sh
    • 3.5 使用说明

帕鲁私服Ubuntu教程以及自动重启程序_第1张图片

1 帕鲁私服教程

1.ubuntu教程
2.windows教程

2 服务器说明

帕鲁服务器在实际运行的时候好像只用了一个核心,如果是六七个伙伴一起玩,可以租一个2核16G的服务器(比4核8G便宜)。众所周知像阿里云等平台节假日时会有送代金券或者优惠的活动,租一个月相对来说还是挺便宜的(新号)。

3 自动重启程序

因为帕鲁的内存管理有些糟糕,小伙伴们玩一会服务器内存就满了,针对这个问题可以写一个脚本来监控内存,实现自动重启服务程序,这样就可以避免重启服务器。思路就是编写一个python程序分两个子进程;一个进程监控内存,内存使用率达到98%左右就杀掉服务程序;另一个进程则监控服务程序是否开启,如果没有开启就运行服务程序。

3.1 python程序

import multiprocessing
import psutil
import subprocess
import time

sh_end = "/home/steam/doit.sh" # 结束服务程序脚本
sh_start = "/home/steam/start.sh" # 开启服务程序脚本
sh_todo = "/home/steam/todo.sh" # 查询服务程序


def todosh(cmd):  # 执行脚本函数
    try:
        result = subprocess.run(cmd, shell=True, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
                                text=True)
        # 输出Shell脚本的标准输出
        return str(result.stdout)

    except subprocess.CalledProcessError as e:
        return str(e)


def check(): # 检查服务程序是否开启
    if len(todosh(sh_todo)) > 1:
        return True
    return False


def start_pal(): # 开启服务程序进程
    while True:
        if not check():
            todosh(sh_start)
        print('check')
        time.sleep(120)


def end_pal(): # 结束服务程序进程
    while True:
        time.sleep(5)
        mem = psutil.virtual_memory()
        use_per = int(round(mem.percent))
        print('check2')
        if use_per >= 98:
            todosh(sh_end)


if __name__ == "__main__":
	# 创建两个进程
    process_a = multiprocessing.Process(target=start_pal)
    process_b = multiprocessing.Process(target=end_pal)

	# 进程开始
    process_a.start()
    process_b.start()
	# 主进程空转
    try:
        while True:
            time.sleep(2)
    except KeyboardInterrupt:
        # 捕捉键盘中断信号,例如 Ctrl+C
        pass
    finally:
        # 终止两个进程
        process_a.terminate()
        process_b.terminate()

        # 等待两个进程结束
        process_a.join()
        process_b.join()


3.2 doit.sh

#!/bin/bash
str=`ps aux | grep "/PalServer" | grep -v grep | awk '{print $2}'`
kill -9 $str

ps aux | grep "/PalServer" | grep -v grep | awk '{print $2}'这一行代码的作用是将所有进程中含有PalServer名字的进程PID找到

3.3 start.sh

#!/bin/bash
/home/steam/.steam/steamapps/common/PalServer/PalServer.sh

注意这里需要和自己服务器的PalServer.sh位置相同。

3.4 todo.sh

str=`ps aux | grep "/PalServer" | grep -v grep | awk '{print $2}'`
echo $str

3.5 使用说明

1 sh文件可使用chmod +x xx.sh 提高权限。
2 使用本程序需要python环境,可以下载3.10左右就行。一般阿里云等服务器都内置好了。
3 使用阿里云等大厂商我感觉不用写存档备份进程。如果有不放心的同学可以在此基础上再加一个备份进程,可以定时4~5小时备份(就是将存档文件复制一份)。
4 在Ubuntu中创建一个新用户比如steam。将上述代码文件放在这个/home/steam/路径下即可

你可能感兴趣的:(python,ubuntu,linux,动画,python)