腾讯云轻量应用服务器卸载 YunJing Service

2022-04-06 10:24:20 update 今天又安装了一个 Debian11,发现 YunJing 服务的卸载又变得不同了。uninst.sh 被改成了一个 binary file,目的是为了防止大家卸载吧。所以新的办法还是很简单,直接 cd 到路径执行 ./uninst.sh 即可完成卸载。 另外发现一篇博客,大家可查看一下,这里作者提供了其他一些腾讯云镜像可能默认提供的服务的卸载方式: 如何将良心云的良心功能清理干净 我安装的镜像是 Debian 11,使用 sudo htop... 阅读全文

使用 besttrace 查看 VPS 去程和回程的路由线路

windows 下 traceroute 工具一般用下面这两个 winmtr 官网: http://winmtr.net/download-winmtr/ 优点: 图形界面,速度快 缺点: 没有地图显示,不够直观 备注: 比 Windows dos 自带的 tracert 工具更加好用 besttrace 官网(下载地址): https://www.ipip.net/product/client.html 优点: 可以识别每一跳 ip 的地理位置,自带地图,显示非常直观。可以选择 goo... 阅读全文

vps 上通过 docker compose 安装 chevereto 图床服务并配置 nginx 反代 https 访问教程

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 # 挂载容器... 阅读全文

解决mysql服务(mysqld)启动失败 提示/etc/my.conf 被忽略的问题 Warning: World-writable config file '/etc/my.cnf' is ignored

本文也算是一种解决 typecho 报 error establishing a database connection 的方法 以下正文 给 vps 新建 snapshot 做备份后重新启动机器,访问此站,看到如下页面 typecho 提示 error establishing a database connection 这很明显是 数据库连接没有建立起来,很可能是 mysqld 服务没有启。 重启了 mysqld 服务依然还是不行 systemctl restart mysqld 查看... 阅读全文