Openresty 初见 openresty安装 ! 由于ubuntu已经不再在APT源里保留带有LUA的NGINX,因此使用openresty (或者你选择自行编译) 参考文档 https://openresty.org/cn/installation.html 参考文档2 https://openresty.org/en/linux-packages.html 这里以 ubuntu server 22 (x86_64 2024-11-11 default #log #openresty
tailscale 初见 tailscale安装 官网快速安装指南 https://tailscale.com/kb/1415/quick-guides 卸载文档 https://tailscale.com/kb/1069/uninstall OpenSUS Leap 安装 https://tailscale.com/kb/1303/install-opensuse-leap 一键安装脚本1curl -fsSL http 2024-11-11 default #log #dns #tailscale
随手写了点 根据端口号查询服务12345678910>> 获得PIDnetstat -antp | grep <Port>lsof -i:<Port>>> 查询工作路径ps -ef <PID>pwdx <PID>cat /proc/<PID>/[cwd|cmdline]# 延伸阅读 : 查看进程树pstree <PID& 2024-11-11 default #shell
尝试驯服etcd Etcd 参考文档 https://www.baeldung.com/java-etcd-guide 基于 Raft协议的服务发现程序 安装使用ubuntu22可以直接安装 1apt install etcd 你也可以单独安装部分模块 12apt install etcd-serverapt install etcd-client 如果只使用单服务, 一台机器是server即可, 其他机器使 2024-08-09 default #log #随手记 #etcd