分享几个关于战术小队日志分析实战的脚本 teddyou 2023-04-21 双方换边脚本:#!/bin/bash /usr/bin/rcon -Ppswd -p21114 AdminBroadcast 服务器双方换边脚本启动 sleep 3 /usr/bin/rcon -Ppswd -p21114 ListPlayers |grep -Ev "Active Players"\|Disconnect > 阅读全部
利用RCON和CGI实现前后端交互管理 teddyou 2023-02-09 html代码示例:<div style="color:#4682B4;text-align:center;"> <a name="top" id="top_anchor"> &n 阅读全部
squad战术小队游戏服务器部署 teddyou 2023-01-08 部署环境 Centos7部署参考文档:https://squad.fandom.com/wiki/Server_Installation/zh#Linux 阅读全部
利用nginx和VLC&FLV自建直播服务器并实现播放 teddyou 2022-12-26 服务器环境:Centosnginx-rtmp-module项目地址:https://github.com/arut/nginx-rtmp-module 方法参考:https://www.nginx.org.cn/article/detail/259此方法需要使用nginx插件,通过对nginx本体的编译安装实现。编译安装命令./configure --user=nginx --group=nginx --prefix=/home/nginx-rtmp/rtmp& 阅读全部
docker端口映射和路径挂载 teddyou 2022-11-13 启动容器时的端口映射:docker run -t -p 2060:9987/udp -d 667feef757d1解释:-p 外部端口:内部端口/协议 -d(无服务不停止) 容器ID路径挂载:语法 -v /主机路径:/容器内路径举例:docker run -t -p 2060:9987/udp -v /home/docker:/2060 -d 667feef 阅读全部
nginx的upstream模块http代理示例。 teddyou 2022-07-21 示例1: upstream wssh { hash $remote_addr consistent; &nbs 阅读全部
TeamSpeak3语音服务器部署手册 teddyou 2022-05-16 服务器配置要求较低,2M带宽可以负载32人在线。内存和CPU按照1U1G最低需求配置即可。服务器操作系统:Centos7服务器包下载:https://teamspeak.com/zh-CN/downloads/#server服务器图标:https://tsicons.com/下载选择Linux 64-BIT或本地下载传输给服务器,或服务器直接使用以下命令下载:[root@cd3 ~]# wget https://files.teamspeak-services.co 阅读全部
Windows环境下的ln链接命令:junction teddyou 2022-04-20 在Linux环境可以通过ln命令来链接路径,但Windows环境下默认只能通过创建快捷方式lnk文件链接。此操作对文件夹的复制不友好,很多程序不能识别到文件夹,多数情况下当成lnk文件处理,通过junction命令可解决此问题。参考:windows下对应linux的ln命令_cai555的博客-CSDN博客程序下载及手册:Junction - Windows Sysinternals | Microsoft Docs用法(CMD中使用):The first usage&nbs 阅读全部
数据库结果去重参考 teddyou 2022-04-19 举例SELECT DISTINCT xxx FROM xxx where xx in (select x from xx where x = x)DISTINCT对查询结果具有去重作用 阅读全部
CSGO服务器部署,tick128设置方法,创意工坊地图添加,mod添加方法 teddyou 2022-02-23 部署基础资料参考文档:一篇文章教你如何架设CSGO服务器_GamerNoTitle的博客-CSDN博客_csgo服务器搭建在windows系统搭建CSGO服务器的教程! (zoneidc.com)使用CentOS 7搭建csgo服务器 - EvansT's Blog (ecsoe.com)阿里云 CentOS 8.2 搭建CSGO服务器 - 知乎 (zhihu.com)CS:GO服务器搭建进阶篇-管理员配置及插件的灵活运用 - 地皮小木屋 (dpii.club)CSGO比较好的serve 阅读全部