I will run elasticsearch it will getting error

How did you start them?

Otherwise run kill -9 PID

1 Like

Ok dadoonet ,

But 7 nodes runing .server any problem. elasticsearch listing only one port right.

I don't really know what you are trying to do to be honest.

You are giving a very little details so it's hard to help.

Basically run only one node per physical machine unless you are doing tests in development or you have more than 64gb of RAM on your machine.

Thanks , Dadoonet

I have one question in my side.

How to configure elastic search and kibana in nginx server.

nginx --> conf.d-->kibana.conf

In that kiabana we adding bellow script.

server {
listen 80;

server_name Linux;

auth_basic "Restricted Access";

auth_basic_user_file /etc/nginx/htpasswd.users;

location / {
    proxy_pass http://localhost:5601;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;
 }

#auth_basic "Restricted Access";
#auth_basic_user_file /etc/nginx/htpasswd.users;

location /es/ {
   auth_basic "Restricted Access";
   auth_basic_user_file /etc/nginx/htpasswd.users;
   proxy_pass http://localhost:9200/;
 }

}

Above configuration after I run the nginx , elastic, kibana. But here nginx is working ,kibana ,elastic is getting error.
404 error.

We download the elastic search tar and kibana tar .we unzipped and run the kibana and elastic search. we are not changing in kibana.yml file .it is required or not.

Here anything pending .

could you please tell me.

Open a new question in #kibana it's not related to your initial post. Thanks !

1 Like

Thanks

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.