2022-04-06 10:24:20 update
今天又安装了一个 Debian11,发现 YunJing 服务的卸载又变得不同了。uninst.sh 被改成了一个 binary file,目的是为了防止大家卸载吧。所以新的办法还是很简单,直接 cd 到路径执行 ./uninst.sh 即可完成卸载。
另外发现一篇博客,大家可查看一下,这里作者提供了其他一些腾讯云镜像可能默认提供的服务的卸载方式: 如何将良心云的良心功能清理干净
我安装的镜像是 Debian 11,使用 sudo htop... 阅读全文
windows 下 traceroute 工具一般用下面这两个
winmtr
官网: http://winmtr.net/download-winmtr/
优点: 图形界面,速度快
缺点: 没有地图显示,不够直观
备注: 比 Windows dos 自带的 tracert 工具更加好用
besttrace
官网(下载地址): https://www.ipip.net/product/client.html
优点: 可以识别每一跳 ip 的地理位置,自带地图,显示非常直观。可以选择 goo... 阅读全文
docker-compose.yml (path is: /docker/docker-compose/chevereto/docker-compose.yml)
参考安装教程:使用 Docker 安装 Chevereto https://juejin.cn/post/6857029114718355463
version: '3'
services:
db:
image: mariadb
container_name: chevereto-mysql
# 挂载容器... 阅读全文
写下面文本到文件 /home/sftp/check_frps.sh
#!/bin/bash
# author: hellodk
# time: 2021-05-28 16:14:26
# script feature description: check if frps is running, if not, start it
function check_frps(){
time3=$(date "+%Y-%m-%d %H:%M:%S")
frpsCount=`ps aux... 阅读全文
本文也算是一种解决 typecho 报 error establishing a database connection 的方法
以下正文
给 vps 新建 snapshot 做备份后重新启动机器,访问此站,看到如下页面
typecho 提示 error establishing a database connection
这很明显是 数据库连接没有建立起来,很可能是 mysqld 服务没有启。
重启了 mysqld 服务依然还是不行
systemctl restart mysqld
查看... 阅读全文