{"id":14909,"date":"2020-02-05T07:01:39","date_gmt":"2020-02-05T07:01:39","guid":{"rendered":"https:\/\/dbtut.com\/?p=14909"},"modified":"2020-02-06T14:13:39","modified_gmt":"2020-02-06T14:13:39","slug":"how-to-install-couchbase-server-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/","title":{"rendered":"How To Install Couchbase Server on Ubuntu 16.04"},"content":{"rendered":"<p>We will install\u00a0 couchbase Server on ubuntu 16.04 in this article. Please visit the link below for minimum system requirements.<\/p>\n<p><strong>Link :<\/strong>\u00a0<a href=\"https:\/\/docs.couchbase.com\/server\/current\/install\/plan-for-production.html\">https:\/\/docs.couchbase.com\/server\/current\/install\/plan-for-production.html<\/a><\/p>\n<p><strong>WARNING:<\/strong> Make sure to install Java before installing the Couchbase.<\/p>\n<pre class=\"lang:default decode:true \">sudo apt-get update\nsudo apt-get install default-jre\nsudo apt-get install default-jdk\n#Oracle jdk\nsudo add-apt-repository ppa:webupd8team\/java\nsudo apt-get update\n#Oracle JDK 8\nsudo apt-get install oracle-java8-installer<\/pre>\n<h2>Install Couchbase Server<\/h2>\n<p>Now we can now install Couchbase Server. In our example, we will install the Enterprise version.<br \/>\nYou can also install the Community Edition version in the same way. (Please contact whenever you have trouble installing Community Edition.)<\/p>\n<h3>Download Packages<\/h3>\n<p>First, we download and install the .deb meta package.<\/p>\n<pre class=\"lang:default decode:true \">curl -O https:\/\/packages.couchbase.com\/releases\/couchbase-release\/couchbase-release-1.0-6-amd64.deb<\/pre>\n<pre class=\"lang:default decode:true \">sudo dpkg -i .\/couchbase-release-1.0-6-amd64.deb\n<\/pre>\n<p>Then we run the update command.<\/p>\n<pre class=\"lang:default decode:true \">sudo apt-get update<\/pre>\n<h3>Install Couchbase Server<\/h3>\n<p>Now we are installing the latest version of Couchbase Server.<\/p>\n<pre class=\"lang:default decode:true\">sudo apt-get install couchbase-server<\/pre>\n<p>If we want to install a certain version of Couchbase Server, we can list the available versions with the command below.<\/p>\n<pre class=\"lang:default decode:true \">apt list -a couchbase-server<\/pre>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"http:\/\/sqlturkiye.com\/wp-content\/uploads\/2019\/12\/image-4.png\" \/><\/p>\n<p id=\"bMBQirM\">Then we install the specific package we want as follows.<\/p>\n<pre class=\"lang:default decode:true \">sudo apt-get install couchbase-server=&lt;version-string&gt;<\/pre>\n<p><strong>NOTE:<\/strong> In the &lt;version-string&gt; section, we write what version we want to install. As I explained above, you can decide which version you want to install by listing the versions.<\/p>\n<p><strong>Sample Command:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">sudo apt-get install couchbase-server=6.0.2-2413-1<\/pre>\n<h4>Check Couchbase Service Status<\/h4>\n<p>Let&#8217;s check the status of the service.<\/p>\n<pre class=\"lang:default decode:true \">systemctl status couchbase-server<\/pre>\n<p>Thank you.<\/p>\n<p>Good luck with.<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_14909\" class=\"pvc_stats all  \" data-element-id=\"14909\" 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>We will install\u00a0 couchbase Server on ubuntu 16.04 in this article. Please visit the link below for minimum system requirements. Link :\u00a0https:\/\/docs.couchbase.com\/server\/current\/install\/plan-for-production.html WARNING: Make sure to install Java before installing the Couchbase. sudo apt-get update sudo apt-get install default-jre sudo apt-get install default-jdk #Oracle jdk sudo add-apt-repository ppa:webupd8team\/java sudo apt-get update #Oracle JDK 8 sudo &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_14909\" class=\"pvc_stats all  \" data-element-id=\"14909\" 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":483,"featured_media":14911,"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":[1387],"tags":[8341,8339,8336,8337,8338,8340],"class_list":["post-14909","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-couchbase","tag-check-couchbase-service-status","tag-install-couchbase-on-ubuntu-16-04","tag-install-couchbase-server","tag-install-couchbase-server-ubuntu","tag-install-couchbase-server-ubuntu-16-04","tag-list-coucbase-server-versions"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":360,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Install Couchbase Server on Ubuntu 16.04 - Database Tutorials<\/title>\n<meta name=\"description\" content=\"How To Install Couchbase Server on Ubuntu 16.04\" \/>\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\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Couchbase Server on Ubuntu 16.04 - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"How To Install Couchbase Server on Ubuntu 16.04\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-05T07:01:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-06T14:13:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"271\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Yusuf KAHVEC\u0130\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yusuf KAHVEC\u0130\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\"},\"author\":{\"name\":\"Yusuf KAHVEC\u0130\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/695ad69b2bd896864842ba8772930150\"},\"headline\":\"How To Install Couchbase Server on Ubuntu 16.04\",\"datePublished\":\"2020-02-05T07:01:39+00:00\",\"dateModified\":\"2020-02-06T14:13:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\"},\"wordCount\":197,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png\",\"keywords\":[\"Check Couchbase Service Status\",\"install couchbase on ubuntu 16.04\",\"Install Couchbase Server\",\"install couchbase server ubuntu\",\"install couchbase server ubuntu 16.04\",\"List Coucbase Server Versions\"],\"articleSection\":[\"Couchbase\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\",\"name\":\"How To Install Couchbase Server on Ubuntu 16.04 - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png\",\"datePublished\":\"2020-02-05T07:01:39+00:00\",\"dateModified\":\"2020-02-06T14:13:39+00:00\",\"description\":\"How To Install Couchbase Server on Ubuntu 16.04\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png\",\"width\":500,\"height\":271},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Couchbase Server on Ubuntu 16.04\"}]},{\"@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\/695ad69b2bd896864842ba8772930150\",\"name\":\"Yusuf KAHVEC\u0130\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b7b4650ddb695869b13831d79f25c19ee915dc2151a7c8fcdf01538c295eb032?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b7b4650ddb695869b13831d79f25c19ee915dc2151a7c8fcdf01538c295eb032?s=96&d=mm&r=g\",\"caption\":\"Yusuf KAHVEC\u0130\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/yusufkahveci\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Couchbase Server on Ubuntu 16.04 - Database Tutorials","description":"How To Install Couchbase Server on Ubuntu 16.04","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\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Couchbase Server on Ubuntu 16.04 - Database Tutorials","og_description":"How To Install Couchbase Server on Ubuntu 16.04","og_url":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/","og_site_name":"Database Tutorials","article_published_time":"2020-02-05T07:01:39+00:00","article_modified_time":"2020-02-06T14:13:39+00:00","og_image":[{"width":500,"height":271,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png","type":"image\/png"}],"author":"Yusuf KAHVEC\u0130","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yusuf KAHVEC\u0130","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/"},"author":{"name":"Yusuf KAHVEC\u0130","@id":"https:\/\/dbtut.com\/#\/schema\/person\/695ad69b2bd896864842ba8772930150"},"headline":"How To Install Couchbase Server on Ubuntu 16.04","datePublished":"2020-02-05T07:01:39+00:00","dateModified":"2020-02-06T14:13:39+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/"},"wordCount":197,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png","keywords":["Check Couchbase Service Status","install couchbase on ubuntu 16.04","Install Couchbase Server","install couchbase server ubuntu","install couchbase server ubuntu 16.04","List Coucbase Server Versions"],"articleSection":["Couchbase"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/","url":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/","name":"How To Install Couchbase Server on Ubuntu 16.04 - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png","datePublished":"2020-02-05T07:01:39+00:00","dateModified":"2020-02-06T14:13:39+00:00","description":"How To Install Couchbase Server on Ubuntu 16.04","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z-3.png","width":500,"height":271},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/05\/how-to-install-couchbase-server-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Install Couchbase Server on Ubuntu 16.04"}]},{"@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\/695ad69b2bd896864842ba8772930150","name":"Yusuf KAHVEC\u0130","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b7b4650ddb695869b13831d79f25c19ee915dc2151a7c8fcdf01538c295eb032?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b7b4650ddb695869b13831d79f25c19ee915dc2151a7c8fcdf01538c295eb032?s=96&d=mm&r=g","caption":"Yusuf KAHVEC\u0130"},"url":"https:\/\/dbtut.com\/index.php\/author\/yusufkahveci\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/14909","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\/483"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=14909"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/14909\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/14911"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=14909"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=14909"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=14909"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}