{"id":39121,"date":"2021-10-27T12:30:00","date_gmt":"2021-10-27T17:30:00","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=39121"},"modified":"2024-03-06T05:10:22","modified_gmt":"2024-03-06T11:10:22","slug":"how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/","title":{"rendered":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud"},"content":{"rendered":"
<\/div>\n
\"how<\/figure>\n\n\n\n

In this tutorial, we are going to show you how to set up Elasticsearch Cluster on our cloud platform RoseHosting Cloud. Also, we will explain in more detail the deployment, launching, and connecting the endpoints of Elasticsearch offered by the platform.<\/p>\n\n\n\n

Elasticsearch is distributed, free, open-source, and real-time search engine written in Java used to search analyze, and explore your data with an HTTP web interface. It is based on Lucene (free and open-source search engine software library) and provides speed and scalability to index many types of content. Elasticsearch is the most popular search engine according to the DB-Engines rankings and is highly demanded among users.<\/p>\n\n\n\n\n\n\n\n

Installing and setting up the Elasticsearch environment on the RoseHosting Cloud platform should take up to 10 minutes and is very easy in just a few clicks. Let’s get started!<\/p>\n\n\n\n

1. Login to RoseHosting Cloud<\/b><\/h3>\n\n\n\n

To start with the setup you need first, to log in to our RoseHosting Cloud Platform using the URL https:\/\/app.rosehosting.cloud.<\/p>\n\n\n\n

\"setting<\/figure>\n\n\n\n

2. Installing the environment<\/b><\/h3>\n\n\n\n

On the top left pane navigate and click on the green “New Environment<\/b>” button:<\/p>\n\n\n\n

\"configuring<\/figure>\n\n\n\n

In the newly opened window select the “Docker<\/b>” tab located on the right and click on “Select Image<\/b>” as on the picture below:<\/p>\n\n\n\n

\"installing<\/figure>\n\n\n\n

In the “Docker Hub<\/b>” input field type “elasticsearch<\/b>” and click on the search icon right of the name.<\/p>\n\n\n\n

\"how<\/figure>\n\n\n\n

Choose the first image named “elasticsearch<\/b>” and then select the version you would like to install. In this tutorial, we are going to use the latest version 7.14.1. Once the version is selected click on the green “Next<\/b>” Button:<\/p>\n\n\n\n

\"how<\/figure>\n\n\n\n

The next window is the place where we can configure the general parameters of our environment such as cloudlets, disk limits, IPv4 addresses, and other variables. We are going to leave the default values and only increase the Public IPv4 address from zero to one and choose a name for our environment. Changing the Public IPv4 address will automatically disable the Access via SLB. Once this is done click on the green “Create<\/b>” button at the bottom of the window.<\/p>\n\n\n\n

\"configuration<\/figure>\n\n\n\n

These were the steps required for installing the Docker-based Elasticsearch environment on the RoseHosting Cloud platform. Now the environment is up and running and is listed as in the picture below:<\/p>\n\n\n\n

\"installation<\/figure>\n\n\n\n

After successful installation you will receive login credentials for Elasticsearch on your email account associated with the RoseHosting Cloud Platform:<\/p>\n\n\n\n

\"how<\/figure>\n\n\n\n

3. Elasticsearch Configuration<\/b><\/h3>\n\n\n\n

Although the environment is installed we can not access the Elasticsearch in the browser on port 9200<\/b> since the Elasticsearch service is not started in the background.<\/p>\n\n\n\n

Execute the following command to check that there is no running Elasticsearch service in the background:<\/p>\n\n\n\n

ps aux | grep elasticsearch | grep -v grep<\/pre>\n\n\n\n

Nothing will be displayed on the command prompt:<\/p>\n\n\n\n

[root@node1805-elasticsearch ~]# ps aux | grep elasticsearch | grep -v grep\n[root@node1805-elasticsearch ~]#<\/pre>\n\n\n\n

We need to do some configuration through the command line. To access the command line via SSH you need to click on the “Web SSH<\/b>” button right of the “Application Servers<\/b>” as shown on the picture below:<\/p>\n\n\n\n

\"how<\/figure>\n\n\n\n

The following window should appear at the bottom of the page:<\/p>\n\n\n\n

\"elasticsearch<\/figure>\n\n\n\n

Execute the following command to specify the discovery type<\/p>\n\n\n\n

echo \"discovery.type: single-node\" >> \/usr\/share\/elasticsearch\/config\/elasticsearch.yml<\/pre>\n\n\n\n

Check if the discovery type was added successfully:<\/p>\n\n\n\n

cat \/usr\/share\/elasticsearch\/config\/elasticsearch.yml<\/pre>\n\n\n\n

The following lines should appear in the output:<\/p>\n\n\n\n

[root@node1805-elasticsearch ~]# cat \/usr\/share\/elasticsearch\/config\/elasticsearch.yml\ncluster.name: \"docker-cluster\"\nnetwork.host: 0.0.0.0\ndiscovery.type: single-node<\/pre>\n\n\n\n

Now, the next step is to open the ports 9200 and 9300 in the firewall by executing the following commands:<\/p>\n\n\n\n

firewall-cmd --zone=public --permanent --add-port 9200\/tcp\nfirewall-cmd --zone=public --permanent --add-port 9300\/tcp\nfirewall-cmd --reload<\/pre>\n\n\n\n

The final step of the configuration is to restart the container for the changes to take effectivity:<\/p>\n\n\n\n

\"elasticsearch<\/figure>\n\n\n\n

Once the container is restarted we are ready to access the Elasticsearch with the URL of our application and adding the port “:9200” at the end of it. This example may help you:  http:\/\/elasticsearch.rosehosting.us:9200\/<\/b><\/p>\n\n\n\n

\"elasticsearch<\/figure>\n\n\n\n

You can also check via SS with the following command about the status of the Elasticsearch:<\/p>\n\n\n\n

curl 'http:\/\/\"enter_your_domain_here<\/b>\":9200\/_cluster\/health?pretty'<\/pre>\n\n\n\n

The output should be similar to this:<\/p>\n\n\n\n

{\n  \"cluster_name\" : \"docker-cluster\",\n  \"status\" : \"green\",\n  \"timed_out\" : false,\n  \"number_of_nodes\" : 1,\n  \"number_of_data_nodes\" : 1,\n  \"active_primary_shards\" : 1,\n  \"active_shards\" : 1,\n  \"relocating_shards\" : 0,\n  \"initializing_shards\" : 0,\n  \"unassigned_shards\" : 0,\n  \"delayed_unassigned_shards\" : 0,\n  \"number_of_pending_tasks\" : 0,\n  \"number_of_in_flight_fetch\" : 0,\n  \"task_max_waiting_in_queue_millis\" : 0,\n  \"active_shards_percent_as_number\" : 100.0\n}<\/pre>\n\n\n\n

Congratulations! You successfully installed and set up the Elasticsearch environment via our RoseHosting Cloud platform without any issues and difficulties. You learned how to use the GUI and the Web SSH access to your server within our platform.<\/p>\n\n\n\n

Of course, you can simply subscribe to our managed cloud hosting<\/a> plans and let our experts set up everything within minutes, completely free of charge. Our support is professional and we are available 24\/7.<\/p>\n\n\n\n

If you liked this post on how to set up ElasticSearch Cluster on RoseHosting Cloud, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this tutorial, we are going to show you how to set up Elasticsearch Cluster on our cloud platform RoseHosting … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":39312,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,13],"tags":[1905,1120,1957,1152],"yoast_head":"\nHow to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting<\/title>\n<meta name=\"description\" content=\"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-27T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-06T11:10:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting\" \/>\n<meta name=\"twitter:description\" content=\"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Set Up Elasticsearch Cluster on RoseHosting Cloud\",\"datePublished\":\"2021-10-27T17:30:00+00:00\",\"dateModified\":\"2024-03-06T11:10:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\"},\"wordCount\":728,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg\",\"keywords\":[\"cluster\",\"elasticsearch\",\"how to set up\",\"rosehosting\"],\"articleSection\":[\"RoseHosting Platform\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\",\"name\":\"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg\",\"datePublished\":\"2021-10-27T17:30:00+00:00\",\"dateModified\":\"2024-03-06T11:10:22+00:00\",\"description\":\"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg\",\"width\":742,\"height\":372,\"caption\":\"how to set up elasticsearch cluster on rosehosting cloud\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up Elasticsearch Cluster on RoseHosting Cloud\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting","description":"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting","og_description":"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2021-10-27T17:30:00+00:00","article_modified_time":"2024-03-06T11:10:22+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_title":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting","twitter_description":"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud","datePublished":"2021-10-27T17:30:00+00:00","dateModified":"2024-03-06T11:10:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/"},"wordCount":728,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg","keywords":["cluster","elasticsearch","how to set up","rosehosting"],"articleSection":["RoseHosting Platform","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/","name":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg","datePublished":"2021-10-27T17:30:00+00:00","dateModified":"2024-03-06T11:10:22+00:00","description":"Using our detailed guide, you will find out how to set up Elasticsearch cluster on RoseHosting cloud platform.","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2021\/10\/set-up-elasticsearch-cluster-on-rosehosting-cloud.jpg","width":742,"height":372,"caption":"how to set up elasticsearch cluster on rosehosting cloud"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-elasticsearch-cluster-on-rosehosting-cloud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set Up Elasticsearch Cluster on RoseHosting Cloud"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/39121"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=39121"}],"version-history":[{"count":67,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/39121\/revisions"}],"predecessor-version":[{"id":48213,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/39121\/revisions\/48213"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/39312"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=39121"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=39121"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=39121"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}