如何在 Debian 中通过 telnet 连接到 Unix 套接字来测试 Memcached

如何在 Debian 中通过 telnet 连接到 Unix 套接字来测试 Memcached

为了在 Ubuntu 上测试 memcached,我将运行以下命令:

echo "stats settings" | nc -U /run/mydir/memcached.sock

但是现在我已经换到Debian了,而Debiannc不支持该-U选项。

我已尝试过ss,,listentelnet -b /run/mydir/memcached.sock没有成功。

Debian 中的等效命令是什么?

答案1

安装ncat或包,两者都提供支持netcat-openbsd的版本。nc-U

如果你没有nc,你可以像这样连接到 unix 套接字socat

socat - UNIX-CONNECT:/the/path/to/the/socket

相关内容