{"id":2353,"date":"2016-08-03T13:21:02","date_gmt":"2016-08-03T17:21:02","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=2353"},"modified":"2017-04-19T15:58:29","modified_gmt":"2017-04-19T19:58:29","slug":"install-mongodb-ubuntu-14","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/","title":{"rendered":"How to Install MongoDB on Ubuntu 14"},"content":{"rendered":"<p>MongoDB is a document-oriented, NoSQL database. It features easy sharding for high availability, a variety of index types ranging from geospatial to full-text, an expressive query language, and a JSON superset for serializing records. MongoDB is used by a variety of large companies in mission-critical roles, but is still easy to start with and develop against. Its flexibility and features make MongoDB a database that will grow with you, accommodating your requirements as your application develops. In this guide we will install MongoDB on an Ubuntu 14.04 server, giving you MongoDB&#8217;s reliability along with Ubuntu&#8217;s stability and long-term support.<\/p>\n<h2>Getting Started<\/h2>\n<p>To complete this guide, you will need the following:<br \/>\n\u2022 1 Node (<a href=\"https:\/\/www.globo.tech\/cloud-server-pricing\" target=\"_blank\">Cloud Server<\/a> or <a href=\"http:\/\/www.globo.tech\/dedicated-server-hosting\" target=\"_blank\">Dedicated Server<\/a>) running Ubuntu 14. <\/p>\n<p>When we&#8217;re done, MongoDB will be running and ready to integrate into your app or service.<\/p>\n<h2>Tutorial<\/h2>\n<p>Let&#8217;s get started. Begin by updating your packages and package cache. Not only does this prevent download errors later, but it also applies all available bugfixes and security patches. Perform this step regularly on this server to keep it secure and performant.<\/p>\n<p><code>apt-get update && apt-get upgrade<\/code><\/p>\n<p>MongoDB is shipped in package repositories for a variety of distributions and versions. We&#8217;ll fetch the GPG key for their repositories so the packages can be verified on installation.<\/p>\n<p><code>apt-key adv --keyserver hkp:\/\/keyserver.ubuntu.com:80 --recv EA312927<\/code><\/p>\n<p>Now we&#8217;ll actually add the MongoDB repositories to your sources.list file so apt-get can retrieve the package list and install Mongo.<\/p>\n<p><code>echo \"deb http:\/\/repo.mongodb.org\/apt\/ubuntu trusty\/mongodb-org\/3.2 multiverse\" | sudo tee \/etc\/apt\/sources.list.d\/mongodb-org-3.2.list<\/code><\/p>\n<p>Having added the new repository, we&#8217;ll next need to update the list of packages.<\/p>\n<p><code>apt-get update<\/code><\/p>\n<p>Having done the update, we now install the MongoDB server and its command line tools.<\/p>\n<p><code>apt-get install -y --allow-unauthenticated mongodb-org<\/code><\/p>\n<p>In order for MongoDB to be launched on boot, we&#8217;ll need to create an init script.<\/p>\n<p>First, create the file using the command:<\/p>\n<p><code>nano \/etc\/init.d\/mongod<\/code><\/p>\n<p>The file should have the following content:<\/p>\n<p><code class=\"gris\">#! \/bin\/sh<br \/>\n### BEGIN INIT INFO<br \/>\n# Provides:          mongodb<br \/>\n# Default-Start:     2 3 4 5<br \/>\n# Default-Stop:      0 1 6<br \/>\n# Short-Description: Mongodb startup script<br \/>\n# Description:       Mongodb start stop daemon sends SIGINT to terminate<br \/>\n#                    say man signal to see details<br \/>\n# Please check the startup params and replication options<br \/>\n#Mongo db usage:<br \/>\n#  run                      run db<br \/>\n#  msg [msg] [port]         send a request to the db server listening on port (or default)<br \/>\n#  msglots                  send many test messages, and then wait for answer on the last one<br \/>\n#  longmsg                  send a long test message to the db server<br \/>\n#  quicktest                just check basic assertions and exit<br \/>\n#  test2                    run test2() - see code<br \/>\n#<br \/>\n#Options:<br \/>\n# --help                    show this usage information<br \/>\n# --port <portno>           specify port number, default is 27017<br \/>\n# --dbpath <root>           directory for datafiles, default is \/data\/db\/<br \/>\n# --quiet                   quieter output<br \/>\n# --cpu                     show cpu+iowait utilization periodically<br \/>\n# --noauth                  run without security<br \/>\n# --auth                    run with security<br \/>\n# --verbose<br \/>\n# -v+                       increase verbose level -v = --verbose<br \/>\n# --objcheck                inspect client data for validity on receipt<br \/>\n# --quota                   enable db quota management<br \/>\n# --appsrvpath <path>       root directory for the babble app server<br \/>\n# --nocursors               diagnostic\/debugging option<br \/>\n# --nohints                 ignore query hints<br \/>\n# --nohttpinterface         disable http interface<br \/>\n# --nojni<br \/>\n# --oplog<n>                0=off 1=W 2=R 3=both 7=W+some reads<br \/>\n# --oplogSize <size_in_MB>  custom size if creating new replication operation log<br \/>\n# --sysinfo                 print some diagnostic system information<br \/>\n#<br \/>\n#Replication:<br \/>\n# --master<br \/>\n# --slave<br \/>\n# --source <server:port>    when a slave, specifies master<br \/>\n# --only <dbname>           when a slave, only replicate db <dbname><br \/>\n# --pairwith <server:port> <arbiter><br \/>\n# --autoresync<br \/>\n### END INIT INFO<br \/>\n# Author: Kunthar <kunthar@gmail.com><br \/>\n#<br \/>\n# Do NOT \"set -e\"<br \/>\n# Check the paths and data dir with additional options at startup...<br \/>\nPATH=\/sbin:\/usr\/sbin:\/bin:\/usr\/bin:\/opt\/mongodb<br \/>\nDESC=\"Mongodb Service\"<br \/>\nNAME=mongod<br \/>\nMONGOPATH=\/opt\/mongodb<br \/>\nDAEMON=$MONGOPATH\/bin\/$NAME<br \/>\n#Please do not forget to give correct path<br \/>\nDBPATH=$MONGOPATH\/data\/<br \/>\n#If security matters, please change arg to --auth<br \/>\nDAEMON_ARGS=\"--dbpath $DBPATH --noauth\"<br \/>\nPIDFILE=\/var\/run\/$NAME.pid<br \/>\nSCRIPTNAME=\/etc\/init.d\/$NAME<br \/>\n# Exit if the package is not installed<br \/>\n[ -x \"$DAEMON\" ] || exit 0<br \/>\n# Load the VERBOSE setting and other rcS variables<br \/>\n. \/lib\/init\/vars.sh<br \/>\n# Define LSB log_* functions.<br \/>\n# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.<br \/>\n. \/lib\/lsb\/init-functions<br \/>\n#<br \/>\n# Function that starts the daemon\/service<br \/>\n#<br \/>\ndo_start()<br \/>\n{<br \/>\n    echo -e \"Starting $DESC \\n\"<br \/>\n        start-stop-daemon -Sbm -p $PIDFILE --exec $DAEMON -- $DAEMON_ARGS<br \/>\n    echo -e \"\\n started\"<br \/>\n}<br \/>\n#<br \/>\n# Function that stops the daemon\/service<br \/>\n#<br \/>\ndo_stop()<br \/>\n{<br \/>\n    echo -e \"Stopping $DESC by sending ctrl+c \\n\"<br \/>\n    #Be nice send ctrl+c to mongod daemon<br \/>\n    start-stop-daemon --stop --signal 2 -q --pidfile $PIDFILE --name $NAME<br \/>\n    # Many daemons don't delete their pidfiles when they exit.<br \/>\n    rm -f $PIDFILE<br \/>\n    echo -e \"\\n stopped\"<br \/>\n}<br \/>\n#<br \/>\n# Function that sends a SIGHUP to the daemon\/service<br \/>\n#<br \/>\ndo_reload() {<br \/>\n    #<br \/>\n    # If the daemon can reload its configuration without<br \/>\n    # restarting (for example, when it is sent a SIGHUP),<br \/>\n    # then implement that here.<br \/>\n    #<br \/>\n    start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME<br \/>\n    return 0<br \/>\n}<br \/>\ncase \"$1\" in<br \/>\n  start)<br \/>\n    [ \"$VERBOSE\" != no ] && log_daemon_msg \"Starting $DESC\" \"$NAME\"<br \/>\n    do_start<br \/>\n    case \"$?\" in<br \/>\n        0|1) [ \"$VERBOSE\" != no ] && log_end_msg 0 ;;<br \/>\n        2) [ \"$VERBOSE\" != no ] && log_end_msg 1 ;;<br \/>\n    esac<br \/>\n    ;;<br \/>\n  stop)<br \/>\n    [ \"$VERBOSE\" != no ] && log_daemon_msg \"Stopping $DESC\" \"$NAME\"<br \/>\n    do_stop<br \/>\n    case \"$?\" in<br \/>\n        0|1) [ \"$VERBOSE\" != no ] && log_end_msg 0 ;;<br \/>\n        2) [ \"$VERBOSE\" != no ] && log_end_msg 1 ;;<br \/>\n    esac<br \/>\n    ;;<br \/>\n  #reload|force-reload)<br \/>\n    #<br \/>\n    # If do_reload() is not implemented then leave this commented out<br \/>\n    # and leave 'force-reload' as an alias for 'restart'.<br \/>\n    #<br \/>\n    #log_daemon_msg \"Reloading $DESC\" \"$NAME\"<br \/>\n    #do_reload<br \/>\n    #log_end_msg $?<br \/>\n    #;;<br \/>\n  restart|force-reload)<br \/>\n    #<br \/>\n    # If the \"reload\" option is implemented then remove the<br \/>\n    # 'force-reload' alias<br \/>\n    #<br \/>\n    log_daemon_msg \"Restarting $DESC\" \"$NAME\"<br \/>\n    do_stop<br \/>\n    case \"$?\" in<br \/>\n      0|1)<br \/>\n        do_start<br \/>\n        case \"$?\" in<br \/>\n            0) log_end_msg 0 ;;<br \/>\n            1) log_end_msg 1 ;; # Old process is still running<br \/>\n            *) log_end_msg 1 ;; # Failed to start<br \/>\n        esac<br \/>\n        ;;<br \/>\n      *)<br \/>\n        # Failed to stop<br \/>\n        log_end_msg 1<br \/>\n        ;;<br \/>\n    esac<br \/>\n    ;;<br \/>\n  *)<br \/>\n    #echo \"Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}\" >&2<br \/>\n    echo \"Usage: $SCRIPTNAME {start|stop}\" >&2<br \/>\n    exit 3<br \/>\n    ;;<br \/>\nesac<br \/>\n:<\/code><\/p>\n<p>Now start MongoDB, and enable it to launch on boot.<\/p>\n<p><code>service mongod start<br \/>\nupdate-rc.d mongod defaults<\/code><\/p>\n<p>MongoDB should now be running. Let&#8217;s check the status of the daemon.<\/p>\n<p><code>service mongod status<\/code><\/p>\n<p><code>mongod start\/running, process 4921<\/code><\/p>\n<p>Let&#8217;s also check Mongo&#8217;s stats as recorded in its internal system database.<\/p>\n<p><code>Mongostat<\/code><\/p>\n<p><code class=\"gris\">insert query update delete getmore command % dirty % used flushes  vsize   res qr|qw ar|aw netIn netOut conn                 time<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:02Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:03Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:04Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:05Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:06Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:07Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:08Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:09Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:10Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 245.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:11Z<br \/>\ninsert query update delete getmore command % dirty % used flushes  vsize   res qr|qw ar|aw netIn netOut conn                 time<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 246.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:12Z<br \/>\n    *0    *0     *0     *0       0     1|0     0.0    0.0       0 246.0M 69.0M   0|0   0|0   79b    18k    1 2016-07-25T21:09:13Z<\/code><\/p>\n<h2>Conclusion<\/h2>\n<p>MongoDB is now installed, running successfully, and configured to launch on boot. You can now integrate it into a local application, or build out several more servers using this guide and cluster them together into a highly-available database setup. If this guide was helpful to you, kindly share it with others who may also be interested. <\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>MongoDB is a document-oriented, NoSQL database. It features easy sharding for high availability, a variety of index types ranging from geospatial to full-text, an expressive query language, and a JSON superset for serializing records. MongoDB is used by a variety of large companies in mission-critical roles, but is still easy to start with and develop<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[61],"tags":[],"class_list":["post-2353","post","type-post","status-publish","format-standard","hentry","category-database","operating_system-ubuntu-14-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install MongoDB on Ubuntu 14 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to install MongoDB on your Ubuntu 14 server. Read now &amp; Enjoy this document-oriented, NoSQL database.\" \/>\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.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/\" \/>\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 14 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to install MongoDB on your Ubuntu 14 server. Read now &amp; Enjoy this document-oriented, NoSQL database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2016-08-03T17:21:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-19T19:58:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/GloboTech-Logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"963\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/\"},\"author\":{\"name\":\"GloboTech Communications\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"headline\":\"How to Install MongoDB on Ubuntu 14\",\"datePublished\":\"2016-08-03T17:21:02+00:00\",\"dateModified\":\"2017-04-19T19:58:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/\"},\"wordCount\":394,\"commentCount\":0,\"articleSection\":[\"Database\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/\",\"name\":\"How to Install MongoDB on Ubuntu 14 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\"},\"datePublished\":\"2016-08-03T17:21:02+00:00\",\"dateModified\":\"2017-04-19T19:58:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"This tutorial will show you how to install MongoDB on your Ubuntu 14 server. Read now & Enjoy this document-oriented, NoSQL database.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-mongodb-ubuntu-14\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install MongoDB on Ubuntu 14\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\\\/\\\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install MongoDB on Ubuntu 14 - Globo.Tech","description":"This tutorial will show you how to install MongoDB on your Ubuntu 14 server. Read now & Enjoy this document-oriented, NoSQL database.","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.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/","og_locale":"en_US","og_type":"article","og_title":"How to Install MongoDB on Ubuntu 14 - Globo.Tech","og_description":"This tutorial will show you how to install MongoDB on your Ubuntu 14 server. Read now & Enjoy this document-oriented, NoSQL database.","og_url":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/","og_site_name":"Globo.Tech","article_published_time":"2016-08-03T17:21:02+00:00","article_modified_time":"2017-04-19T19:58:29+00:00","og_image":[{"width":1920,"height":963,"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2016\/09\/GloboTech-Logo.png","type":"image\/png"}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/#article","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/"},"author":{"name":"GloboTech Communications","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"headline":"How to Install MongoDB on Ubuntu 14","datePublished":"2016-08-03T17:21:02+00:00","dateModified":"2017-04-19T19:58:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/"},"wordCount":394,"commentCount":0,"articleSection":["Database"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/","url":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/","name":"How to Install MongoDB on Ubuntu 14 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"datePublished":"2016-08-03T17:21:02+00:00","dateModified":"2017-04-19T19:58:29+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"This tutorial will show you how to install MongoDB on your Ubuntu 14 server. Read now & Enjoy this document-oriented, NoSQL database.","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/install-mongodb-ubuntu-14\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to Install MongoDB on Ubuntu 14"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2353","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=2353"}],"version-history":[{"count":5,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2353\/revisions"}],"predecessor-version":[{"id":2948,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/2353\/revisions\/2948"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=2353"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=2353"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=2353"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}