{"id":11772,"date":"2019-05-26T21:17:09","date_gmt":"2019-05-26T21:17:09","guid":{"rendered":"https:\/\/dbtut.com\/?p=11772"},"modified":"2019-07-23T13:36:49","modified_gmt":"2019-07-23T13:36:49","slug":"how-to-install-kibana-on-centos","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/","title":{"rendered":"How To Install Kibana On Centos"},"content":{"rendered":"<p>In this article I will tell the installation of Kibana on Centos 7. Before reading this article, I suggest you read the following article about Kibana.<\/p>\n<p>&#8220;<a href=\"https:\/\/dbtut.com\/index.php\/2019\/05\/22\/what-is-kibana\/\" target=\"_blank\" rel=\"noopener noreferrer\">What is Kibana<\/a>&#8221;<\/p>\n<h2>Installation Steps<\/h2>\n<h3>Java Installation<\/h3>\n<p>First, we are installing java. To install Java you must download the file that is compatible with your system from the link below. If you have already installed, you can skip this step.<\/p>\n<p><a href=\"https:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/jdk8-downloads-2133151.html\">https:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/jdk8-downloads-2133151.html<\/a><\/p>\n<p>Since we are going to install on 64 bit linux system, we are downloading the file below.<\/p>\n<p id=\"dpFRGtf\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11774  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc170c352ad3.png\" alt=\"\" width=\"771\" height=\"451\" \/><\/p>\n<p>Then we create a folder like below to install java. The Java installation is done under the usr\/bin folder by default. I&#8217;ll make installation in the folder I&#8217;ll create below for easier use.<\/p>\n<p><strong>as root:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">mkdir \/opt\/jdk<\/pre>\n<p>We extract the downloaded java files into the \/opt\/jdk directory and ensure that the java works from this directory.<\/p>\n<pre class=\"lang:default decode:true\">tar -zxf server-jre-8u161-linux-x64.tar.gz -C \/opt\/jdk<\/pre>\n<pre class=\"lang:default decode:true\">update-alternatives --install \/usr\/bin\/java java \/opt\/jdk\/jdk1.8.0_161\/bin\/java 100<\/pre>\n<pre class=\"lang:default decode:true\">update-alternatives --install \/usr\/bin\/javac javac \/opt\/jdk\/jdk1.8.0_161\/bin\/javac 100<\/pre>\n<p>We set JAVA_HOME using the following commands.<\/p>\n<pre class=\"lang:default decode:true\">export JAVA_HOME=\/opt\/jdk\/jdk1.8.0_201\/\nexport PATH=$JAVA_HOME\/bin:$PATH<\/pre>\n<h3>Kibana Installation<\/h3>\n<p>You can download the installation file from the link below.<\/p>\n<p><a href=\"https:\/\/www.elastic.co\/downloads\/kibana\">https:\/\/www.elastic.co\/downloads\/kibana<\/a><\/p>\n<p id=\"ncPJEAX\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11776  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc1715abb792.png\" alt=\"\" width=\"740\" height=\"513\" \/><\/p>\n<p>Since we will install on CENTOS, we download the RPM package and copy it to the server.<\/p>\n<p>You can go to the directory where you copied the RPM package on the server and install Kibana using the following command.<\/p>\n<p><strong>as root:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">yum install kibana-6.5.4-x86_64.rpm<\/pre>\n<p id=\"SZxcVDj\"><img loading=\"lazy\" decoding=\"async\" width=\"675\" height=\"654\" class=\"size-full wp-image-11778  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc17183a019c.png\" alt=\"\" \/><\/p>\n<p>If you have internet access via the server, you can perform Kibana installation as below.<\/p>\n<pre class=\"lang:default decode:true\">yum install https:\/\/artifacts.elastic.co\/downloads\/kibana\/kibana-6.5.4-x86_64.rpm<\/pre>\n<h3>Necessary Configurations After Installation<\/h3>\n<h4>Enable kibana service<\/h4>\n<p>We enable kibana service using the command below.<\/p>\n<pre class=\"lang:default decode:true \">systemctl enable kibana.service<\/pre>\n<p id=\"cbXVhFH\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11780  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc171b6922b7.png\" alt=\"\" width=\"742\" height=\"47\" \/><\/p>\n<p>We are editing the kibana.yml file which is the elasticsearch configuration file using the command below.<\/p>\n<pre class=\"lang:default decode:true\">vi \/etc\/kibana\/kibana.yml<\/pre>\n<p>After opening the file, we configure it as follows. If there is # at the beginning of the line, this line is a comment line or contains an inactive configuration information.<\/p>\n<p><strong>Note:<\/strong> I recommend that you read the lines beginning with #. Because I&#8217;ve written some notes.<\/p>\n<p>Do not copy the below yml file. Just change the necessary parameters according to your system.<\/p>\n<pre class=\"lang:default decode:true \"># Kibana is served by a back end server. This setting specifies the port to use.\n#This is my note-&gt;your kibana port\nserver.port: 5601\n\u00a0\n# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.\n# The default is 'localhost', which usually means remote machines will not be able to connect.\n# To allow connections from remote users, set this parameter to a non-loopback address.\n#This is my note-&gt;Set Your Kibana IP\nserver.host: \"your_kibana_ip\"\n\u00a0\n# Enables you to specify a path to mount Kibana at if you are running behind a proxy.\n# Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath\n# from requests it receives, and to prevent a deprecation warning at startup.\n# This setting cannot end in a slash.\n#server.basePath: \"\"\n\u00a0\n# The maximum payload size in bytes for incoming server requests.\n#server.maxPayloadBytes: 1048576\n\u00a0\n# The Kibana server's name.\u00a0 This is used for display purposes.\n#server.name: \"your-hostname\"\n\u00a0\n# The URL of the Elasticsearch instance to use for all your queries.\nelasticsearch.url: \"http:\/\/your_elasticsearch_master_ip:elasticsearch_master_port\"\n\u00a0\n# When this setting's value is true Kibana uses the hostname specified in the server.host\n# setting. When the value of this setting is false, Kibana uses the hostname of the host\n# that connects to this Kibana instance.\n#elasticsearch.preserveHost: true\n\u00a0\n# Kibana uses an index in Elasticsearch to store saved searches, visualizations and\n# dashboards. Kibana creates a new index if the index doesn't already exist.\n#kibana.index: \".kibana\"\n\u00a0\n# The default application to load.\n#kibana.defaultAppId: \"home\"\n\u00a0\n# If your Elasticsearch is protected with basic authentication, these settings provide\n# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which\n# is proxied through the Kibana server.\n#This is my note-&gt;the below user is the user that connect to elasticsearch from kibana. You should use search guard or xpack for #user management in Elasticsearch. Otherwise, anyone who has access to the master node through #the corresponding port can access to elasticsearch. you should read the article named \"How To #Install Searchguard For Elasticsearch and Kibana(Managing Multiple Indice In Elasticsearch #Seperately and Password Protection on Elasticsearch)\"\n# If you add the below two line and do not install search guard plugin for kibana, you may receive an error when #you try to start the kibana. That's why if you want to add below two lines, install search guard plugin for kibana.\n\nelasticsearch.username: \"kibanaserver\"\nelasticsearch.password: \"kibanaserver\"\n\u00a0\n# These settings enable SSL for outgoing requests from the Kibana server to the browser.\n#server.ssl.enabled: false\n#server.ssl.certificate: \/path\/to\/your\/server.crt\n#server.ssl.key: \/path\/to\/your\/server.key\n#This is my note-&gt;If you are not going to use xpack, you should set it to false as follows.\nxpack.security.enabled: false\nxpack.spaces.enabled: false\n<\/pre>\n<h3>Start the Kibana<\/h3>\n<p>Then, we start the kibana service and check the status.<\/p>\n<pre class=\"lang:default decode:true\">systemctl start kibana<\/pre>\n<h3>Check the service status<\/h3>\n<pre class=\"lang:default decode:true\">systemctl status kibana<\/pre>\n<p>When you check the status of the service, you may encounter an error as follows.<\/p>\n<p><span style=\"color: #ff0000;\"><em>FATAL\u00a0 Error: EACCES: permission denied, rmdir &#8216;\/usr\/share\/kibana\/optimize\/bundles\/src\/ui&#8217;<\/em><\/span><\/p>\n<p id=\"tMdyLSN\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11783  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc1724c8d6a4.png\" alt=\"\" width=\"817\" height=\"55\" \/><\/p>\n<p>In this case, run the following commands to restart the kibana service.<\/p>\n<pre class=\"lang:default decode:true\">rmdir \/usr\/share\/kibana\/optimize\/bundles\/src\/ui\nchown -R kibana:kibana \/etc\/kibana\/\nchown -R kibana:kibana \/usr\/share\/kibana\/<\/pre>\n<p>Then, you may encounter another error as follows.<\/p>\n<p><span style=\"color: #ff0000;\"><em>Browserslist: caniuse-lite is outdated. Please run next command `npm update caniuse-lite browserslist`<\/em><\/span><\/p>\n<p>We&#8217;re running the following command as it tells us, and then we execute the command below and restart it.<\/p>\n<pre class=\"lang:default decode:true\">npm update caniuse-lite browserslist<\/pre>\n<pre class=\"lang:default decode:true\">npm update autoprefixer<\/pre>\n<pre class=\"lang:default decode:true \">systemctl restart kibana<\/pre>\n<p id=\"EdJPLIw\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11785  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc172ba7eccd.png\" alt=\"\" width=\"779\" height=\"36\" \/><\/p>\n<h3>Open Kibana<\/h3>\n<p>After Kibana installation is completed, you can open a browser and connect as follows.<\/p>\n<p>IP:Port<\/p>\n<p id=\"pKLgDna\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-11788  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/img_5cc172f93b618.png\" alt=\"\" width=\"725\" height=\"156\" \/><\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_11772\" class=\"pvc_stats all  \" data-element-id=\"11772\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this article I will tell the installation of Kibana on Centos 7. Before reading this article, I suggest you read the following article about Kibana. &#8220;What is Kibana&#8221; Installation Steps Java Installation First, we are installing java. To install Java you must download the file that is compatible with your system from the link &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_11772\" class=\"pvc_stats all  \" data-element-id=\"11772\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":11790,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[3654,3652],"tags":[3600,3596,3601,3598,3597,3599],"class_list":["post-11772","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-analyticdashboard","category-elk","tag-elastic-co-install-kibana","tag-install-kibana-6-centos-7","tag-install-kibana-and-elastic-search","tag-install-kibana-in-elasticsearch","tag-kibana-6-3-install","tag-kibana-manual-install"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Install Kibana On Centos - Database Tutorials<\/title>\n<meta name=\"description\" content=\"How To Install Kibana On Centos\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Kibana On Centos - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"How To Install Kibana On Centos\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-26T21:17:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-23T13:36:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png\" \/>\n\t<meta property=\"og:image:width\" content=\"669\" \/>\n\t<meta property=\"og:image:height\" content=\"347\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"dbtut\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"dbtut\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\"},\"author\":{\"name\":\"dbtut\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408\"},\"headline\":\"How To Install Kibana On Centos\",\"datePublished\":\"2019-05-26T21:17:09+00:00\",\"dateModified\":\"2019-07-23T13:36:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\"},\"wordCount\":447,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png\",\"keywords\":[\"elastic co install kibana\",\"install kibana 6 centos 7\",\"install kibana and elastic search\",\"install kibana in elasticsearch\",\"kibana 6.3 install\",\"kibana manual install\"],\"articleSection\":[\"Analytic&amp;&amp;Dashboard\",\"ELK\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\",\"name\":\"How To Install Kibana On Centos - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png\",\"datePublished\":\"2019-05-26T21:17:09+00:00\",\"dateModified\":\"2019-07-23T13:36:49+00:00\",\"description\":\"How To Install Kibana On Centos\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png\",\"width\":669,\"height\":347},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Kibana On Centos\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408\",\"name\":\"dbtut\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g\",\"caption\":\"dbtut\"},\"description\":\"We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.\",\"sameAs\":[\"http:\/\/NurullahCAKIR\"],\"url\":\"https:\/\/dbtut.com\/index.php\/author\/dbtut\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Kibana On Centos - Database Tutorials","description":"How To Install Kibana On Centos","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:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Kibana On Centos - Database Tutorials","og_description":"How To Install Kibana On Centos","og_url":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/","og_site_name":"Database Tutorials","article_published_time":"2019-05-26T21:17:09+00:00","article_modified_time":"2019-07-23T13:36:49+00:00","og_image":[{"width":669,"height":347,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png","type":"image\/png"}],"author":"dbtut","twitter_card":"summary_large_image","twitter_misc":{"Written by":"dbtut","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/"},"author":{"name":"dbtut","@id":"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408"},"headline":"How To Install Kibana On Centos","datePublished":"2019-05-26T21:17:09+00:00","dateModified":"2019-07-23T13:36:49+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/"},"wordCount":447,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png","keywords":["elastic co install kibana","install kibana 6 centos 7","install kibana and elastic search","install kibana in elasticsearch","kibana 6.3 install","kibana manual install"],"articleSection":["Analytic&amp;&amp;Dashboard","ELK"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/","url":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/","name":"How To Install Kibana On Centos - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png","datePublished":"2019-05-26T21:17:09+00:00","dateModified":"2019-07-23T13:36:49+00:00","description":"How To Install Kibana On Centos","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2019\/04\/Ads\u0131z-51.png","width":669,"height":347},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2019\/05\/26\/how-to-install-kibana-on-centos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Install Kibana On Centos"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408","name":"dbtut","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g","caption":"dbtut"},"description":"We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.","sameAs":["http:\/\/NurullahCAKIR"],"url":"https:\/\/dbtut.com\/index.php\/author\/dbtut\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/11772","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=11772"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/11772\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/11790"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=11772"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=11772"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=11772"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}