CBrother脚本10分钟写一个拯救“小霸王服务器”的程序
程序员文章站
2024-01-05 10:06:28
CBrother脚本语言10分钟写一个拯救“小霸王服务器”的程序 到了一家新公司,接手了一坨c++服务器代码,到处内存泄漏,这服务器没有数据库,挂了后重启一下就好了,公司就这么凑活着用了几年了,定时重启吧,也不是天天挂,不定时重启吧,说不准哪天就挂了。。。。。。 小公司,从写代码到维护就我一个人,每 ......
cbrother脚本语言10分钟写一个拯救“小霸王服务器”的程序
到了一家新公司,接手了一坨c++服务器代码,到处内存泄漏,这服务器没有数据库,挂了后重启一下就好了,公司就这么凑活着用了几年了,定时重启吧,也不是天天挂,不定时重启吧,说不准哪天就挂了。。。。。。
小公司,从写代码到维护就我一个人,每到下班后或者周末,电话一响,我就知道挂了,得找电脑重启一下,要是出去玩了还得找网吧,装个远程软件吧,公司说服务器之前被远程软件黑过,不准装,烦。
想着弄个什么程序在手机上点一下就给重启了就好了,咱这种写c++后台十几年的人,手机app是不会开了,那就弄个网页服吧,选了半天,python的语法把我快看晕了。php研究一早上环境都没搭起来。找其他的,找到了一门cbrother脚本,语法跟c++共通之处,写http接口极其简单,跟作者聊了一下,10分钟就写出了我要的东西,现在我给公司其他同事一人一个账号,谁都可以重启服务了。为了感谢cbrother作者,这里写篇文章帮他宣传一下。
主函数:
//入口函数,和c++一样,启动调用main函数,这点我喜欢 function main(params) { var httpserver = new httpserver(); //创建一个http服务 httpserver.addaction("hello.cb",new helloaction()); //注册hello.cb接口响应类helloaction httpserver.addaction("120120.cb",new action120()); //注册重启接口为120120.cb httpserver.setnormalaction("hello.cb"); //设置默认页调用 hello.cb httpserver.startserver(11120); //设置服务端口为11120 //主线程不退出,除了语法简化外,套路和c++简直一摸一样 while (1) { sleep(1000); } }
hello.cb:
class helloaction { //接口的执行函数 function doaction(request,respone) { //写一个表单,这都是大学时候学的东西,十几年了,幸亏还记了一点点,哈哈 respone.write("<html><head><title>抢救服务器</title><meta http-equiv=\"content-type\" content=\"txt/html; charset=utf-8\" /></head><body>"); respone.write("<br><form method=\"post\" action=\"120120.cb\">"); respone.write("<input type=\"text\" name=\"username\"><br>"); respone.write("<input type=\"password\" name=\"userpass\"><br>"); respone.write("<input type=\"submit\" value=\"抢救\"></form></body><html>"); respone.flush(); } }
120120.cb重启服务器的操作:
var g_usermap = {"admin":"123.123","huangyi":"256.256","boss":".boss1boss"};//定义用户密码 var g_exepath = "d:\\work\\fvserver\\fvserver.exe"; //进程路径 var g_exename = "fvserver.exe"; //进程名称 class action120 { function doaction(request,respone) { respone.write("<html><head><title>抢救服务器</title><meta http-equiv=\"content-type\" content=\"txt/html; charset=utf-8\" /></head><body>"); var fromdata = request.getformdata(); //获取表单数据 if (fromdata == null) { respone.write("我不认识你</body><html>"); respone.flush(); return; } var username = strlower(fromdata.gettext("username")); //获取用户名,转小写 var pwd = fromdata.gettext("userpass"); var pwdlocal = g_usermap[username]; //判断用户是否存在 if (pwdlocal == null) { respone.write("我不认识你</body><html>"); respone.flush(); return; } if (pwdlocal != pwd) //判断密码是否正确 { respone.write("密码错误</body><html>"); respone.flush(); return; } var oldid = 0; respone.write("抢救中..."); var pidarr = getprocessbyname(g_exename); //获取进程id列表,应该只有一个 if (pidarr != null) { for (var i = 0; i < pidarr.size() ; i++) { print "查杀进程id:" + pidarr[i]; killprocessbyid(pidarr[i]); //查杀进程 } sleep(2000); } respone.write("<br>抢救中..."); var pid = createprocess(g_exepath); //重新启动一个 respone.write("<br>抢救成功。进程id:" + pid); respone.flush(); //把当前时间打印出来 var t = new time(); print username + "抢救了服务器。" + oldid + "===>" + pid + t.strftime(" [%y/%m/%d %h:%m:%s]"); } }
之后从官网()下载cbrother,然后再控制台输入启动命令
d:\cbrother_v2.1.0_win64\cbrother.exe d:\cbrother\check.cb,服务器就启起来了。
然后可以通过手机访问这个端口重启服务器了
输入账号密码重启
再打电话也不用急急忙忙去找电脑了,手机一点就ok,打电话的人自己页可以重启了。
服务器界面显示
总体来说,cbrother脚本很符合我的编程理念,而且封装的很简单,后面还要深入学习下。