{"id":16053,"date":"2020-07-16T08:28:51","date_gmt":"2020-07-16T08:28:51","guid":{"rendered":"https:\/\/dbtut.com\/?p=16053"},"modified":"2020-07-16T08:57:23","modified_gmt":"2020-07-16T08:57:23","slug":"how-to-install-mongodb-on-ubuntu","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/","title":{"rendered":"How To Install MongoDb on Ubuntu"},"content":{"rendered":"<p>The main purpose of this article is how to install MongoDB on Ubuntu Server(single node). Follow the steps below for the installation one by one.<\/p>\n<h3>Step1:<\/h3>\n<h3>Install Mongodb Packages on Ubuntu<\/h3>\n<p>Ubuntu&#8217;s official package repositories contain an updated version of MongoDB; which means we can install the required packages using apt.<\/p>\n<p>First, update the package list to have the latest version of the repository lists:<\/p>\n<pre class=\"lang:default decode:true \">sudo apt update<\/pre>\n<p>Now install the MongoDB package.<\/p>\n<pre class=\"lang:default decode:true \">sudo apt install -y mongodb<\/pre>\n<p>This command installs several packages containing the latest version of MongoDB, as well as useful management tools for the MongoDB server. The database server is started automatically after installation.<\/p>\n<p>Next, let&#8217;s verify that the server is working correctly.<\/p>\n<h3>Step 2:<\/h3>\n<h3>Checking mongodb Service and Database on Ubuntu<\/h3>\n<p>The installation process started MongoDB automatically, but let&#8217;s verify that the service is started and the database is running.<\/p>\n<h4>Check mongodb status on ubuntu<\/h4>\n<pre class=\"lang:default decode:true \">sudo systemctl status mongodb<\/pre>\n<p>You will see this output:<\/p>\n<pre class=\"lang:default decode:true \">mongodb.service - An object\/document-oriented database\n   Loaded: loaded (\/lib\/systemd\/system\/mongodb.service; enabled; vendor preset: enabled)\n   Active: active (running) since Fri 2019-07-05 07:45:45 +03; 14min ago\n     Docs: man:mongod(1)\n Main PID: 39953 (mongod)\n   CGroup: \/system.slice\/mongodb.service\n           \u2514\u250039953 \/usr\/bin\/mongod --config \/etc\/mongodb.conf<\/pre>\n<p>MongoDB server is running.<\/p>\n<p>We can really verify this by connecting to the database server and executing a diagnostic command.<\/p>\n<p>Execute this command:<\/p>\n<pre class=\"lang:default decode:true \">mongo --eval 'db.runCommand({ connectionStatus: 1 })'\n<\/pre>\n<p>Command Output:<\/p>\n<pre class=\"lang:default decode:true \">MongoDB shell version: 2.6.10\nconnecting to: test\n[object Object]<\/pre>\n<h3>Step 3:<\/h3>\n<h3>Managing MongoDB Service<\/h3>\n<p>MongoDB is installed as a system service, so you can also manage it using standard system commands.<\/p>\n<h4>Check Mongodb Service Status<\/h4>\n<pre class=\"lang:default decode:true \">sudo systemctl status mongodb<\/pre>\n<h4>Stop Mongodb Service<\/h4>\n<pre class=\"lang:default decode:true \">sudo systemctl stop mongodb<\/pre>\n<h4>Start Mongodb Service<\/h4>\n<pre class=\"lang:default decode:true \">sudo systemctl start mongodb<\/pre>\n<h4>Restart Mongodb Service<\/h4>\n<pre class=\"lang:default decode:true \">sudo systemctl restart mongodb<\/pre>\n<p>By default, MongoDB is configured to start automatically with the server. If you want to disable auto start, type:<\/p>\n<pre class=\"lang:default decode:true \">sudo systemctl disable mongodb<\/pre>\n<p>It is very easy to re-enable. To do this, use:<\/p>\n<pre class=\"lang:default decode:true \">sudo systemctl enable mongodb<\/pre>\n<h4>Connect to Mongodb<\/h4>\n<p>After our installations are completed successfully, we provide Connection with mongo command.<\/p>\n<pre class=\"lang:default decode:true \">mongo<\/pre>\n<p id=\"qGIgFpN\"><img loading=\"lazy\" decoding=\"async\" width=\"409\" height=\"174\" class=\"size-full wp-image-16054  aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/img_5f100bca8bdc4.png\" alt=\"\" \/><\/p>\n<h4>List Mongodb Databases<\/h4>\n<pre class=\"lang:default decode:true \">show dbs<\/pre>\n<h4>Show Connected Mongodb Database Name<\/h4>\n<pre class=\"lang:default decode:true\">db<\/pre>\n<h4>Switch To Another Database<\/h4>\n<pre class=\"lang:default decode:true \">use demo<\/pre>\n<h4>List Mongodb Commands<\/h4>\n<pre class=\"lang:default decode:true \">db.help()<\/pre>\n<h4>Check MongoDB Statistics<\/h4>\n<pre class=\"lang:default decode:true \">db.stats()<\/pre>\n<p>Good luck with.<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_16053\" class=\"pvc_stats all  \" data-element-id=\"16053\" 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>The main purpose of this article is how to install MongoDB on Ubuntu Server(single node). Follow the steps below for the installation one by one. Step1: Install Mongodb Packages on Ubuntu Ubuntu&#8217;s official package repositories contain an updated version of MongoDB; which means we can install the required packages using apt. First, update the package &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_16053\" class=\"pvc_stats all  \" data-element-id=\"16053\" 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":16055,"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":[1306],"tags":[9775,9766,9777,9778,9771,9780,9781,9779,9767,9770,9776,9772,9769,9773,9774,9768],"class_list":["post-16053","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-mongodb","tag-check-mongodb-service-status","tag-check-mongodb-statistics","tag-check-mongodb-status-on-ubuntu","tag-checking-mongodb-service-and-database-on-ubuntu","tag-connect-to-mongodb","tag-how-to-install-mongodb-on-ubuntu","tag-install-mongodb-on-ubuntu","tag-install-mongodb-packages-on-ubuntu","tag-list-mongodb-commands","tag-list-mongodb-databases","tag-managing-mongodb-service","tag-restart-mongodb-service","tag-show-connected-mongodb-database-name","tag-start-mongodb-service","tag-stop-mongodb-service","tag-switch-to-another-database-mongodb"],"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 MongoDb on Ubuntu - Database Tutorials<\/title>\n<meta name=\"description\" content=\"How To Install MongoDb on Ubuntu\" \/>\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\/07\/16\/how-to-install-mongodb-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install MongoDb on Ubuntu - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"How To Install MongoDb on Ubuntu\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-16T08:28:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-16T08:57:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"497\" \/>\n\t<meta property=\"og:image:height\" content=\"312\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/\"},\"author\":{\"name\":\"Yusuf KAHVEC\u0130\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/695ad69b2bd896864842ba8772930150\"},\"headline\":\"How To Install MongoDb on Ubuntu\",\"datePublished\":\"2020-07-16T08:28:51+00:00\",\"dateModified\":\"2020-07-16T08:57:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/\"},\"wordCount\":276,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg\",\"keywords\":[\"Check Mongodb Service Status\",\"Check MongoDB Statistics\",\"Check mongodb status on ubuntu\",\"Checking mongodb Service and Database on Ubuntu\",\"Connect to Mongodb\",\"How To Install MongoDb on Ubuntu\",\"Install MongoDb on Ubuntu\",\"Install Mongodb Packages on Ubuntu\",\"List Mongodb Commands\",\"List Mongodb Databases\",\"Managing MongoDB Service\",\"Restart Mongodb Service\",\"Show Connected Mongodb Database Name\",\"Start Mongodb Service\",\"Stop Mongodb Service\",\"Switch To Another Database mongodb\"],\"articleSection\":[\"MongoDB\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/\",\"name\":\"How To Install MongoDb on Ubuntu - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg\",\"datePublished\":\"2020-07-16T08:28:51+00:00\",\"dateModified\":\"2020-07-16T08:57:23+00:00\",\"description\":\"How To Install MongoDb on Ubuntu\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg\",\"width\":497,\"height\":312},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install MongoDb on Ubuntu\"}]},{\"@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 MongoDb on Ubuntu - Database Tutorials","description":"How To Install MongoDb on Ubuntu","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\/07\/16\/how-to-install-mongodb-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How To Install MongoDb on Ubuntu - Database Tutorials","og_description":"How To Install MongoDb on Ubuntu","og_url":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/","og_site_name":"Database Tutorials","article_published_time":"2020-07-16T08:28:51+00:00","article_modified_time":"2020-07-16T08:57:23+00:00","og_image":[{"width":497,"height":312,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg","type":"image\/jpeg"}],"author":"Yusuf KAHVEC\u0130","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yusuf KAHVEC\u0130","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/"},"author":{"name":"Yusuf KAHVEC\u0130","@id":"https:\/\/dbtut.com\/#\/schema\/person\/695ad69b2bd896864842ba8772930150"},"headline":"How To Install MongoDb on Ubuntu","datePublished":"2020-07-16T08:28:51+00:00","dateModified":"2020-07-16T08:57:23+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/"},"wordCount":276,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg","keywords":["Check Mongodb Service Status","Check MongoDB Statistics","Check mongodb status on ubuntu","Checking mongodb Service and Database on Ubuntu","Connect to Mongodb","How To Install MongoDb on Ubuntu","Install MongoDb on Ubuntu","Install Mongodb Packages on Ubuntu","List Mongodb Commands","List Mongodb Databases","Managing MongoDB Service","Restart Mongodb Service","Show Connected Mongodb Database Name","Start Mongodb Service","Stop Mongodb Service","Switch To Another Database mongodb"],"articleSection":["MongoDB"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/","url":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/","name":"How To Install MongoDb on Ubuntu - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg","datePublished":"2020-07-16T08:28:51+00:00","dateModified":"2020-07-16T08:57:23+00:00","description":"How To Install MongoDb on Ubuntu","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/07\/Ads\u0131z-4.jpg","width":497,"height":312},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/07\/16\/how-to-install-mongodb-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Install MongoDb on Ubuntu"}]},{"@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\/16053","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=16053"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/16053\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/16055"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=16053"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=16053"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=16053"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}