kibana 启动 关闭 和进程查找
程序员文章站
2022-04-18 23:16:40
...
</h2>
<div class="postbody">
启动kibana : nohup ./kibana &
查看启动日志 : tail -f nohup
kibana 使用 ps -ef|grep kibana 是查不到进程的,主要原因大概是因为 kibana 是node 写的。所以kibana 运行的时候是运行在node 里面。
所以 可以使用 ps -ef|grep kibana 查看到 进程。
但是.......,带有node 不一定就是 kibana的 进程。怎么办呢 ? 我们知道 kibana 是 5601 对外的 tcp 端口。
所以 使用 netstat -tunlp|grep 5601 就可以查到进程id 了 。
能耍的时候就一定要耍,不能耍的时候一定要学。
0
0
<div class="clear"></div>
<div id="post_next_prev">
<a href="https://www.cnblogs.com/cxygg/p/9468653.html" class="p_n_p_prefix">« </a> 上一篇: <a href="https://www.cnblogs.com/cxygg/p/9468653.html" title="发布于 2018-08-13 15:48">MD5 SHA1 SHA256 SHA512 SHA1WithRSA 的区别</a>
<br>
<a href="https://www.cnblogs.com/cxygg/p/9471372.html" class="p_n_p_prefix">» </a> 下一篇: <a href="https://www.cnblogs.com/cxygg/p/9471372.html" title="发布于 2018-08-13 22:09">elasticsearch 基础 语法总结</a>
上一篇: 在Linux环境下配置kibana-含网盘下载kibana
下一篇: Kibana5.5.1安装