{"id":2441,"date":"2016-11-28T23:44:31","date_gmt":"2016-11-28T23:44:31","guid":{"rendered":"https:\/\/www.couchbase.com\/blog\/?p=2441"},"modified":"2025-06-13T19:29:43","modified_gmt":"2025-06-14T02:29:43","slug":"comfortable-couchbase-mobile-couchbase-web-console","status":"publish","type":"post","link":"https:\/\/www.couchbase.com\/blog\/es\/comfortable-couchbase-mobile-couchbase-web-console\/","title":{"rendered":"C\u00f3mo sentirse c\u00f3modo con Couchbase Mobile: Consola Web de Couchbase"},"content":{"rendered":"<p><img decoding=\"async\" src=\"\/wp-content\/original-assets\/2016\/november\/comfortable-couchbase-mobile-couchbase-web-console\/couchbase-mobile-stack_1920.png\" \/><\/p>\n<h2 id=\"introduction\">Introduction<\/h2>\n<p>This post marks the second in a series about the\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/developer.couchbase.com\/mobile?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">Couchbase Mobile<\/a>\u00a0stack. You can find the first post\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/www.couchbase.com\/blog\/getting-comfortable-with-couchbase-mobile-installing-couchbase-server\/\">here<\/a>. It covers installing\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/www.couchbase.com\/nosql-databases\/couchbase-server?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">Couchbase Server<\/a>. In this post, we\u2019ll examine part of the <a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/developer.couchbase.com\/documentation\/server\/current\/admin\/ui-intro.html?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">Couchbase Web Console<\/a>\u00a0(CWC).<\/p>\n<h2 id=\"background\">Background<\/h2>\n<p>To get comfortable with the whole stack, it\u2019s great to install and run everything on your development machine. In this series of posts, I\u2019ll walk through the steps get to started with each component. I\u2019ll show how to do a little extra exploring along the way, too.<\/p>\n<p>I\u2019ll only do minimal configuration. This is not intended to explain what you need for a production environment. I assume you\u2019re familiar with some basics of NoSQL, have some understanding of Couchbase, and know how to build apps in something like Java, Android, or iOS. If you want to read up on NoSQL databases or Couchbase, you can find lots of resources on the\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/www.couchbase.com\/?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">Couchbase<\/a>\u00a0site.<\/p>\n<p>Couchbase is open-source. Everything I\u2019ll use here is free to try out. See the end of the post for more resources if you need help.<\/p>\n<h2 id=\"exploring-couchbase-server\">Exploring Couchbase Server<\/h2>\n<p>Now that we have an instance up and running<span style=\"font-size: 12px;line-height: 0;vertical-align: baseline\"><a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/www.couchbase.com\/blog\/getting-comfortable-with-couchbase-mobile-installing-couchbase-server\/\">1<\/a><\/span>, we can try a few things out. Couchbase Server has a built-in web-based administration interface (<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/developer.couchbase.com\/documentation\/server\/current\/admin\/ui-intro.html?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">Couchbase Web Console<\/a>) and a large number of command line tools. You can also perform interesting manipulations through its REST interfaces easily. This gives us three ways to delve in without writing any code. In this post, we\u2019ll start with CWC.<\/p>\n<h3 id=\"the-couchbase-web-console\">The Couchbase Web Console<\/h3>\n<p>We saw the Overview panel of the Web Console during our initial installation. The interface has nine main panels in total. For the purpose of understanding Couchbase Mobile, we only need to concern ourselves with the Data Buckets panel.<\/p>\n<h3 id=\"data-buckets\">Data Buckets<\/h3>\n<p>Click on the Data Buckets tab in the navigation bar. If you loaded the beer sample bucket, click on the arrow to the left of the bucket tile \u201cbeer-sample\u201d. You should see information similar to what\u2019s shown in the following screenshot.<\/p>\n<p><img decoding=\"async\" style=\"max-width: 600px !important\" src=\"\/wp-content\/original-assets\/2016\/november\/comfortable-couchbase-mobile-couchbase-web-console\/cbsbuckets.png\" alt=\"Couchbase Server Data Buckets\" align=\"middle\" \/><\/p>\n<p>This gives general information about the bucket. You can see some of the parameters used during setup reflected here.<\/p>\n<h3 id=\"documents\">Documents<\/h3>\n<p>In the upper right corner, you\u2019ll see two buttons, \u201cDocuments\u201d and \u201cViews\u201d. Select \u201cDocuments\u201d. This brings up a list of documents in the bucket. Each entry shows a limited version of the document id and contents.<\/p>\n<p><img decoding=\"async\" style=\"max-width: 600px !important\" src=\"\/wp-content\/original-assets\/2016\/november\/comfortable-couchbase-mobile-couchbase-web-console\/cbsdocuments.png\" alt=\"Couchbase Server Bucket Documents\" align=\"middle\" \/><\/p>\n<p>Click on the document id to bring up the full document contents. You can also directly edit and save changes to documents here.<\/p>\n<p><img decoding=\"async\" style=\"max-width: 600px !important\" src=\"\/wp-content\/original-assets\/2016\/november\/comfortable-couchbase-mobile-couchbase-web-console\/cbsdocumentsample.png\" alt=\"Couchbase Server Document Sample\" align=\"middle\" \/><\/p>\n<h3 id=\"views\">Views<\/h3>\n<p>Views define a static index in your database. Couchbase achieves this using a\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/en.wikipedia.org\/wiki\/MapReduce\">map\/reduce<\/a>\u00a0approach.<\/p>\n<p>Every time a document gets created or updated, Couchbase processes it through the map\/reduce code associated with a View. In Couchbase, you write these functions in JavaScript. You choose what values to output for your index.<\/p>\n<p>Since the index gets created at the time of processing the document, we call this a \u201cstatic\u201d index. This speeds up queries. In contrast, with Couchbase, you can use the N1QL query language to create queries on the fly. N1QL queries are overall more powerful and flexible, but will typically be slower to execute.<\/p>\n<p>You can read more about Views\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/developer.couchbase.com\/documentation\/server\/current\/architecture\/incremental-map-reduce-views.html?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">here<\/a>. I emphasize Views because Couchbase Lite uses them for queries. Currently Couchbase Lite doesn\u2019t support N1QL.<\/p>\n<p>The beer sample has two Views already defined. To see them, click on the Data Buckets tab again. Now, instead of clicking \u201cDocuments\u201d in the upper right, click \u201cViews\u201d. You\u2019ll see the following information.<\/p>\n<p><img decoding=\"async\" style=\"max-width: 600px !important\" src=\"\/wp-content\/original-assets\/2016\/november\/comfortable-couchbase-mobile-couchbase-web-console\/cbsviews.png\" alt=\"Couchbase Server Bucket Views\" align=\"middle\" \/><\/p>\n<p>Click on \u201cProduction Views\u201d. In the list of Views, click \u201cbrewery_beers\u201d to get to this page.<\/p>\n<p><img decoding=\"async\" style=\"max-width: 600px !important\" src=\"\/wp-content\/original-assets\/2016\/november\/comfortable-couchbase-mobile-couchbase-web-console\/cbsviewsample.png\" alt=\"Couchbase Server View Sample\" align=\"middle\" \/><\/p>\n<p>To see the index created by the View, click \u201cShow Results\u201d to the right, above the third pane shown.<\/p>\n<p>To try out Views yourself, you can copy a Production View and modify it. Jump back two steps to the introduction to Views. Look for the \u201cCopy to Dev\u201d button. Click that. Hit \u201cCopy\u201d in the dialog that pops up. You\u2019ll be taken to \u201cDevelopment Views\u201d where you can edit views and documents and test out the results.<\/p>\n<h2 id=\"next-steps\">Next Steps<\/h2>\n<p>In the next post in this series I\u2019ll show some ways to work with Couchbase Server from the command line. After that I\u2019ll move on to Sync Gateway. Then we\u2019ll look at a sample app using Couchbase Lite. Finally, we\u2019ll use that sample app to loop back and see how everything ties together.<\/p>\n<p style=\"font-family: sans-serif\">[buttongroup][button style=&#8221;btn-link btn-lg&#8221; icon=&#8221;fa fa-arrow-left&#8221; align=&#8221;left&#8221; iconcolor=&#8221;#dd3333&#8243; type=&#8221;link&#8221; target=&#8221;false&#8221; title=&#8221;Previous: Installing Couchbase Server&#8221; link=&#8221;https:\/\/www.couchbase.com\/blog\/getting-comfortable-with-couchbase-mobile-installing-couchbase-server\/&#8221; linkrel=&#8221;&#8221;][button style=&#8221;btn-link btn-lg&#8221; icon=&#8221;fa fa-arrow-right&#8221; align=&#8221;left&#8221; iconcolor=&#8221;#dd3333&#8243; type=&#8221;link&#8221; target=&#8221;false&#8221; title=&#8221;Next: Couchbase Server via the Command Line&#8221; link=&#8221;https:\/\/www.couchbase.com\/blog\/getting-comfortable-couchbase-mobile-couchbase-server-command-line\/&#8221; linkrel=&#8221;&#8221;][\/buttongroup]<\/p>\n<h2 id=\"postscript\">Postscript<\/h2>\n<p>Check out more resources on our\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/developer.couchbase.com\/community?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">developer portal<\/a>\u00a0and follow us on Twitter\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/twitter.com\/CouchbaseDev\">@CouchbaseDev<\/a>.<\/p>\n<p>You can post questions on our\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/www.couchbase.com\/forums\/?utm_source=blogs&amp;utm_medium=link&amp;utm_campaign=blogs\">forums<\/a>. And we actively participate on\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/stackoverflow.com\/questions\/tagged\/couchbase\">Stack Overflow<\/a>.<\/p>\n<p>You can follow me personally at\u00a0<a style=\"color: #265778;text-decoration: none\" href=\"https:\/\/twitter.com\/HodGreeley\">@HodGreeley<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction This post marks the second in a series about the\u00a0Couchbase Mobile\u00a0stack. You can find the first post\u00a0here. It covers installing\u00a0Couchbase Server. In this post, we\u2019ll examine part of the Couchbase Web Console\u00a0(CWC). Background To get comfortable with the whole [&hellip;]<\/p>\n","protected":false},"author":73,"featured_media":2554,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1810,1816],"tags":[],"ppma_author":[9042],"class_list":["post-2441","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-couchbase-mobile","category-couchbase-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Couchbase Mobile Stack: Couchbase Web Console<\/title>\n<meta name=\"description\" content=\"This post belongs to Couchbase Mobile stack. It covers installing Couchbase Server and also a part of Couchbase Web Console (CWC).\" \/>\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.couchbase.com\/blog\/es\/comfortable-couchbase-mobile-couchbase-web-console\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting Comfortable with Couchbase Mobile: Couchbase Web Console\" \/>\n<meta property=\"og:description\" content=\"This post belongs to Couchbase Mobile stack. It covers installing Couchbase Server and also a part of Couchbase Web Console (CWC).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.couchbase.com\/blog\/es\/comfortable-couchbase-mobile-couchbase-web-console\/\" \/>\n<meta property=\"og:site_name\" content=\"The Couchbase Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-11-28T23:44:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-14T02:29:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2017\/02\/couchbase-mobile-stack_1920.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"621\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hod Greeley, Developer Advocate, Couchbase\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@HodGreeley\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hod Greeley, Developer Advocate, Couchbase\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/\"},\"author\":{\"name\":\"Hod Greeley, Developer Advocate, Couchbase\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/9b62593c8a13531e53d52fcd5aabbca4\"},\"headline\":\"Getting Comfortable with Couchbase Mobile: Couchbase Web Console\",\"datePublished\":\"2016-11-28T23:44:31+00:00\",\"dateModified\":\"2025-06-14T02:29:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/\"},\"wordCount\":849,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2017\\\/02\\\/couchbase-mobile-stack_1920.png\",\"articleSection\":[\"Couchbase Mobile\",\"Couchbase Server\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/\",\"name\":\"Couchbase Mobile Stack: Couchbase Web Console\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2017\\\/02\\\/couchbase-mobile-stack_1920.png\",\"datePublished\":\"2016-11-28T23:44:31+00:00\",\"dateModified\":\"2025-06-14T02:29:43+00:00\",\"description\":\"This post belongs to Couchbase Mobile stack. It covers installing Couchbase Server and also a part of Couchbase Web Console (CWC).\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2017\\\/02\\\/couchbase-mobile-stack_1920.png\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/1\\\/2017\\\/02\\\/couchbase-mobile-stack_1920.png\",\"width\":1920,\"height\":621,\"caption\":\"Couchbase Mobile Stack\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/comfortable-couchbase-mobile-couchbase-web-console\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Comfortable with Couchbase Mobile: Couchbase Web Console\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"name\":\"The Couchbase Blog\",\"description\":\"Couchbase, the NoSQL Database\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#organization\",\"name\":\"The Couchbase Blog\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/admin-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/admin-logo.png\",\"width\":218,\"height\":34,\"caption\":\"The Couchbase Blog\"},\"image\":{\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/#\\\/schema\\\/person\\\/9b62593c8a13531e53d52fcd5aabbca4\",\"name\":\"Hod Greeley, Developer Advocate, Couchbase\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g21eb69cb5d4a401fb23b149e4f4e9e87\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g\",\"caption\":\"Hod Greeley, Developer Advocate, Couchbase\"},\"description\":\"Hod Greeley is a Developer Advocate for Couchbase, living in Silicon Valley. He has over two decades of experience as a software engineer and engineering manager. He has worked in a variety of software fields, including computational physics and chemistry, computer and network security, finance, and mobile. Prior to joining Couchbase in 2016, Hod led developer relations for mobile at Samsung. Hod holds a Ph.D. in chemical physics from Columbia University.\",\"sameAs\":[\"https:\\\/\\\/hod.greeley.org\\\/blog\",\"https:\\\/\\\/x.com\\\/HodGreeley\"],\"url\":\"https:\\\/\\\/www.couchbase.com\\\/blog\\\/es\\\/author\\\/hod-greeley\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Couchbase Mobile Stack: Couchbase Web Console","description":"Este post pertenece a Couchbase Mobile stack. Cubre la instalaci\u00f3n de Couchbase Server y tambi\u00e9n una parte de Couchbase Web Console (CWC).","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.couchbase.com\/blog\/es\/comfortable-couchbase-mobile-couchbase-web-console\/","og_locale":"es_MX","og_type":"article","og_title":"Getting Comfortable with Couchbase Mobile: Couchbase Web Console","og_description":"This post belongs to Couchbase Mobile stack. It covers installing Couchbase Server and also a part of Couchbase Web Console (CWC).","og_url":"https:\/\/www.couchbase.com\/blog\/es\/comfortable-couchbase-mobile-couchbase-web-console\/","og_site_name":"The Couchbase Blog","article_published_time":"2016-11-28T23:44:31+00:00","article_modified_time":"2025-06-14T02:29:43+00:00","og_image":[{"width":1920,"height":621,"url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2017\/02\/couchbase-mobile-stack_1920.png","type":"image\/png"}],"author":"Hod Greeley, Developer Advocate, Couchbase","twitter_card":"summary_large_image","twitter_creator":"@HodGreeley","twitter_misc":{"Written by":"Hod Greeley, Developer Advocate, Couchbase","Est. reading time":"5 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#article","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/"},"author":{"name":"Hod Greeley, Developer Advocate, Couchbase","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/9b62593c8a13531e53d52fcd5aabbca4"},"headline":"Getting Comfortable with Couchbase Mobile: Couchbase Web Console","datePublished":"2016-11-28T23:44:31+00:00","dateModified":"2025-06-14T02:29:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/"},"wordCount":849,"commentCount":1,"publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2017\/02\/couchbase-mobile-stack_1920.png","articleSection":["Couchbase Mobile","Couchbase Server"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/","url":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/","name":"Couchbase Mobile Stack: Couchbase Web Console","isPartOf":{"@id":"https:\/\/www.couchbase.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#primaryimage"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#primaryimage"},"thumbnailUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2017\/02\/couchbase-mobile-stack_1920.png","datePublished":"2016-11-28T23:44:31+00:00","dateModified":"2025-06-14T02:29:43+00:00","description":"Este post pertenece a Couchbase Mobile stack. Cubre la instalaci\u00f3n de Couchbase Server y tambi\u00e9n una parte de Couchbase Web Console (CWC).","breadcrumb":{"@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#primaryimage","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2017\/02\/couchbase-mobile-stack_1920.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/sites\/1\/2017\/02\/couchbase-mobile-stack_1920.png","width":1920,"height":621,"caption":"Couchbase Mobile Stack"},{"@type":"BreadcrumbList","@id":"https:\/\/www.couchbase.com\/blog\/comfortable-couchbase-mobile-couchbase-web-console\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.couchbase.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Getting Comfortable with Couchbase Mobile: Couchbase Web Console"}]},{"@type":"WebSite","@id":"https:\/\/www.couchbase.com\/blog\/#website","url":"https:\/\/www.couchbase.com\/blog\/","name":"El blog de Couchbase","description":"Couchbase, la base de datos NoSQL","publisher":{"@id":"https:\/\/www.couchbase.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.couchbase.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.couchbase.com\/blog\/#organization","name":"El blog de Couchbase","url":"https:\/\/www.couchbase.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png","contentUrl":"https:\/\/www.couchbase.com\/blog\/wp-content\/uploads\/2023\/04\/admin-logo.png","width":218,"height":34,"caption":"The Couchbase Blog"},"image":{"@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.couchbase.com\/blog\/#\/schema\/person\/9b62593c8a13531e53d52fcd5aabbca4","name":"Hod Greeley, Defensor del Desarrollador, Couchbase","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g21eb69cb5d4a401fb23b149e4f4e9e87","url":"https:\/\/secure.gravatar.com\/avatar\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g","caption":"Hod Greeley, Developer Advocate, Couchbase"},"description":"Hod Greeley es desarrollador de Couchbase y vive en Silicon Valley. Tiene m\u00e1s de dos d\u00e9cadas de experiencia como ingeniero de software y director de ingenier\u00eda. Ha trabajado en una variedad de campos de software, incluyendo f\u00edsica computacional y qu\u00edmica, seguridad inform\u00e1tica y de redes, finanzas y m\u00f3viles. Antes de unirse a Couchbase en 2016, Hod dirigi\u00f3 las relaciones con desarrolladores para m\u00f3viles en Samsung. Hod es doctor en f\u00edsica qu\u00edmica por la Universidad de Columbia.","sameAs":["https:\/\/hod.greeley.org\/blog","https:\/\/x.com\/HodGreeley"],"url":"https:\/\/www.couchbase.com\/blog\/es\/author\/hod-greeley\/"}]}},"acf":[],"authors":[{"term_id":9042,"user_id":73,"is_guest":0,"slug":"hod-greeley","display_name":"Hod Greeley, Developer Advocate, Couchbase","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/52d0018695c0ced0d1c68cf64a6195c81dbac03dce5983f98eb209e7c84350df?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2441","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/users\/73"}],"replies":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/comments?post=2441"}],"version-history":[{"count":0,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/posts\/2441\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/media\/2554"}],"wp:attachment":[{"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/media?parent=2441"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/categories?post=2441"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/tags?post=2441"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.couchbase.com\/blog\/es\/wp-json\/wp\/v2\/ppma_author?post=2441"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}