Skip to main content

Elasticsearch installation

Comments

8 comments

  • Jason Parms
    Hope these articles will help you to install Elasticsearch: elastic.co/guide/en/elasticsearch/client/curator/current/installation.html tecadmin.net/install-elasticsearch-on-linux/
    0
  • cPanelMichael
    Hello, You can follow a third-party guide as mentioned in the previous post. Let us know if you have any questions. Thank you.
    0
  • Nirjonadda
    Hello, You can follow a third-party guide as mentioned in the previous post. Let us know if you have any questions. Thank you.

    I am still cannot install. Please let me know the other steps?
    0
  • Nirjonadda
    Hello, You can follow a third-party guide as mentioned in the previous post. Let us know if you have any questions. Thank you.

    Does Elasticsearch work with ConfigServer Security & Firewall? On my hand Elasticsearch work if Disabled ConfigServer Security & Firewall but i Allow incoming TCP ports 9200,9300 but still are not work.
    0
  • cPanelMichael
    Does Elasticsearch work with ConfigServer Security & Firewall? On my hand Elasticsearch work if Disabled ConfigServer Security & Firewall but i Allow incoming TCP ports 9200,9300 but still are not work.

    Please keep in mind this is not a supported application. You may need to consult with the documentation of the application, or with a qualified system administrator for installation assistance. Thank you.
    0
  • Nirjonadda
    Please keep in mind this is not a supported application. You may need to consult with the documentation of the application, or with a qualified system administrator for installation assistance. Thank you.

    I have fixed this issue on here: Elasticsearch Installation/Update on CENTOS 6 (cPanel)
    0
  • cPanelMichael
    I'm happy to see you were able to address the issue. Thank you for updating us with the outcome.
    0
  • ayman qaidi
    use this script to do it . save it as .sh and run
    #!/bin/bash clear echo "running" rpm --import https://packages.elasticsearch.org/GPG-KEY-elasticsearch content = " [elasticsearch-1.4] name=Elasticsearch repository for 1.4.x packages baseurl=http://packages.elasticsearch.org/elasticsearch/1.4/centos gpgcheck=1 gpgkey=http://packages.elasticsearch.org/GPG-KEY-elasticsearch enabled=1" echo $content >> /etc/yum.repos.d/elasticsearch.repo yum -y install elasticsearch # open port 9200 (for http) and 9300 (for tcp) sudo iptables -L -n iptables -A INPUT -p tcp -m tcp --dport 9200 -j ACCEPT iptables -A INPUT -p tcp -m tcp --dport 9300 -j ACCEPT service iptables save chkconfig elasticsearch on # set min max memory variables export ES_MIN_MEM=5G export ES_MAX_MEM=5G # restart server service elasticsearch restart
    script from my own project
    0

Please sign in to leave a comment.