美文网首页
查看某个命令属于哪个rpm安装包

查看某个命令属于哪个rpm安装包

作者: 秋刀鱼杂记 | 来源:发表于2017-12-25 15:30 被阅读0次

    背景:

    在使用openshift的过程中,提示使用nodetool命令去配置些信息。

    而当前系统却没有这个命令。

    恰巧其他的os上有nodetool命令。那么如何查看nodetool是在什么包里存在的呢?

    解决方法一:

    # which nodetool

    /usr/bin/nodetool

    # rpm -qf /usr/bin/nodetool

    cassandra-3.11.1-1.noarch

    因此在系统上安装cassandra包即可。


    解决方法二:

    # yum whatprovides nodetool

    Loaded plugins: fastestmirror, langpacks

    Loading mirror speeds from cached hostfile

    * base: download.nus.edu.sg

    * extras: centos.usonyx.net

    * updates: centos.usonyx.net

    cassandra-3.11.0-1.noarch : Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store.

    Repo        : cassandra

    Matched from:

    Filename    : /usr/bin/nodetool

    相关文章

      网友评论

          本文标题:查看某个命令属于哪个rpm安装包

          本文链接:https://www.haomeiwen.com/subject/bimlgxtx.html