嘟嘟社区

vir东京总是宕机的可以看一下了


本帖最后由 mjj666zzz 于 2022-4-6 00:09 编辑

RT,总宕机,简单写了个脚本,填入hash key 后crontab定时运行就行了,不建议太频繁或都整点调用api
方法一

  1. #!/bin/bash
  2. api_hash=”
  3. api_key=”
  4. url="https://solusvm.virmach.com/api/client/command.php?key=${api_key}&hash=${api_hash}&action="
  5. #if offline ,then boot
  6. if [[ $(curl -Lso- "${url}status") == *offline* ]]
  7. then
  8.     $(curl -Lso- "${url}boot")
  9. fi

复制代码

方法二,挂后台运行就行了

  1. #!/bin/bash
  2. vps_ip=”
  3. api_hash=”
  4. api_key=”
  5. url="https://solusvm.virmach.com/api/client/command.php?key=${api_key}&hash=${api_hash}&action="
  6. while true
  7. do
  8.     ping -c 10 $vps_ip
  9.     if [[ $? != 0 ]];then
  10.         $(curl -Lso- "${url}boot")
  11.     fi
  12.     sleep 10
  13. done

复制代码

vir看4K直接关机 太狠了
绑定
已阅
等它稳定了再玩