zoukankan      html  css  js  c++  java
  • 全文检索ES 服务启动和关闭

    nohup ./elasticsearch &  可以后台开启elasticsearch服务

    ps-ef列出所有进程

    ps-ef | grep elastic...查找elastic。。的进程

    kill  进程数字(如:1932,对应java开头的进程)

    例子如下:

    login as: elasticsearch

    elasticsearch@192.168.10.29's password:

    Last login: Wed Sep 21 11:29:06 2016 from 172.16.42.225

    [elasticsearch@centos29 ~]$ cd elasticsearch

    [elasticsearch@centos29 elasticsearch]$ cd bin

    [elasticsearch@centos29 bin]$ ps -ef | grep elas

    root      1233  1646  0 10:26 ?        00:00:00 sshd: elasticsearch [priv]

    500       1237  1233  0 10:26 ?        00:00:00 sshd: elasticsearch@pts/2

    500       2468     1 23 11:30 ?        00:00:16 /usr/bin/java -Xms256m -Xmx1g -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError -XX:+DisableExplicitGC -Dfile.encoding=UTF-8 -Djna.nosys=true -Des.path.home=/usr/elasticsearch/elasticsearch -cp /usr/elasticsearch/elasticsearch/lib/elasticsearch-2.1.1.jar:/usr/elasticsearch/elasticsearch/lib/* org.elasticsearch.bootstrap.Elasticsearch start

    root      2567  1646  0 11:30 ?        00:00:00 sshd: elasticsearch [priv]

    500       2572  2567  0 11:31 ?        00:00:00 sshd: elasticsearch@pts/0

    500       2598  2573  0 11:31 pts/0    00:00:00 grep elas

    [elasticsearch@centos29 bin]$ kill 2468

    [elasticsearch@centos29 bin]$ nohup ./elasticsearch &

    [1] 2608

    [elasticsearch@centos29 bin]$ nohup: ignoring input and appending output to `nohup.out

    版权声明:如需转载,请注明!PS:如是转载随便,请忽略
  • 相关阅读:
    React 高阶组件
    Facebook Graph API 接口请求
    (转载)HTML:模拟链接被按下,在新标签页打开页面,不使用window.open(可能被拦截)
    php file_put_contents() 写入回车
    mysql 慢查询开启
    FB接口之 js调用支付窗口
    8 个必备的PHP功能开发
    linux 负载 待读
    大话团队管理。
    API编排
  • 原文地址:https://www.cnblogs.com/zwdx/p/7193087.html
Copyright © 2011-2022 走看看