Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有我可以在 linux 中输入的命令来显示当前安装的 Sensu 版本?
dpkg -s sensu为我工作(linux,使用 apt-get 安装)
dpkg -s sensu
你没有提到你是如何安装它的或者你是在什么样的操作系统上,所以这可能是一个非常笼统的答案。
在 CentOS/RHEL 系列操作系统中,您可以使用yum info sensu,前提是您使用 yum 安装它。
yum info sensu
在 Ubuntu 中,您可以使用dpkg -s | grep <pkg_name>
dpkg -s | grep <pkg_name>