Navigation

    ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. mongodb
    Log in to post

    • Deploying NodeBB 1.14 on CentOS 8 with MongoDB 4.2
      IT Discussion • linux centos nodebb mongodb centos 8 mongodb 4.2 nodebb 1.14 • • scottalanmiller  

      7
      0
      Votes
      7
      Posts
      538
      Views

      @scottalanmiller said in Deploying NodeBB 1.14 on CentOS 8 with MongoDB 4.2: By default, NodeBB uses the REDIS NoSQL database, By default, in 1.15.x it uses Mongo I'm pretty sure it did in the last version I installed also. But that was months ago and I do not recall clearly.
    • Deploying NodeBB 1.13 on CentOS 8 with MongoDB 4.2
      IT Discussion • linux centos nodebb mongodb centos 8 howto mongodb 4.2 nodebb 1.13 • • scottalanmiller  

      7
      1
      Votes
      7
      Posts
      801
      Views

      @JaredBusch said in Deploying NodeBB 1.13 on CentOS 8 with MongoDB 4.2: You can only remove this line if you are going to host the reverse proxy on the same instance. No reverse proxy needed if you are going to just look at it locally without going over the network.
    • NoSQL for IT at MangoCon 2019 Topic
      MangoCon • scott alan miller mangocon database mongodb nosql mangocon 2019 redis scylladb dgraph dba cassandra • • scottalanmiller  

      1
      3
      Votes
      1
      Posts
      196
      Views

      No one has replied

    • Deploying NodeBB 1.11.1 on CentOS 7 with MongoDB 4
      IT Discussion • linux centos centos 7 nodebb mongodb howto mongodb 4.0 nodebb 1.11 • • scottalanmiller  

      20
      2
      Votes
      20
      Posts
      1255
      Views

      @bnrstnr said in Deploying NodeBB 1.11.1 on CentOS 7 with MongoDB 4: What specific reasons for the CentOS recommendation here? Revisiting a little... Basically the three main Linux releases supported by MongoDB are CentOS, Ubuntu, and Debian. CentOS and Ubuntu here are mostly six of one. But CentOS 8 Stream I like a little more than the Ubuntu LTS options. We use Ubuntu a little more often than CentOS today, but in this case I feel that CentOS is slightly better for us. But really, all three options are perfectly fine. We just have to pick one.
    • MongoDB Major Change to Licensing
      Developer Discussion • open source database licensing mongodb nosql • • scottalanmiller  

      78
      1
      Votes
      78
      Posts
      1606
      Views

      @StorageNinja said in MongoDB Major Change to Licensing: @scottalanmiller said in MongoDB Major Change to Licensing: if you are a SaaS vendor looking at building software that uses MongoDB somewhere, you'd better get a lawyer looking over this license and how it applies to you. This is becoming a bigger issue as the biggest SaaS vendors hide behind this clause more and more with incredibly proprietary forks. They offer very little to no actual core development or contribution and it goes against the previous method of GPL code getting funding. It annoys me, as the legal headaches of contributing internal only use code back will block some companies from using OSS, but I see it both ways. The startups who are doing a lot of the core housekeeping of NOSQL platforms are learning they can't find a business model. This is getting messier and messier. Partially because there are just too any vendors involved. What's amazing, though, is that a move like this took a customer who was very into MongoDB and using it in projects and was literally working with MongoDB's own hosted product and now looking to avoid it like the plague. So at least in this one case, they are likely losing hosted product from this. And gaining nothing. I imagine a lot of customers going through this same process.
    • Install NodeBB 1.10.2 on Fedora 28 with Mongo
      IT Discussion • fedora nodebb fedora 28 mongodb nodebb 1.10.2 mongo • • JaredBusch  

      30
      2
      Votes
      30
      Posts
      1582
      Views

      @mattbagan said in Install NodeBB 1.10.2 on Fedora 28 with Mongo: @JaredBusch worked like a charm. Thank you! Thanks, great to hear.
    • MongoDB Storage Engine Error Detected MMapV1 and wiredTiger
      IT Discussion • database mongodb nosql mongodb 3 mmapv1 wiredtiger • • scottalanmiller  

      3
      0
      Votes
      3
      Posts
      1575
      Views

      @jaredbusch said in MongoDB Storage Engine Error Detected MMapV1 and wiredTiger: @scottalanmiller okay, they totally fucked this up. Yeah, this is some weird stuff.
    • MongoDB 3.6 Update Issues
      IT Discussion • mongodb mongodb 3.6 • • scottalanmiller  

      8
      2
      Votes
      8
      Posts
      847
      Views

      @black3dynamite said in MongoDB 3.6 Update Issues: @scottalanmiller said in MongoDB 3.6 Update Issues: @black3dynamite said in MongoDB 3.6 Update Issues: Is this an issue when using the packages from Fedora and Ubuntu repo or from MongoDB repo or both? Fedora and Ubuntu repos will cause this issue. If you just do your normal 27 -> 28, or 16.04 -> 18.04, or 17.10 -> 18.04 updates, it gets you. No warnings (within the system.) This will be a big problem for people who get MongoDB installed as part of an app in the background and don't know that they are running it! Wiki.js That, too, would be affected. Yes. But only in the 1.x series. Once they go to 2.0, they are dumping MongoDB.
    • SOLVED Unifi 5.7 on Ubuntu 18.04
      IT Discussion • ubuntu ubiquiti ubnt unifi mongodb ubuntu 18.04 mongodb 3.6 unifi 5.7 • • scottalanmiller  

      23
      1
      Votes
      23
      Posts
      6397
      Views

      @ccwtech said in Unifi 5.7 on Ubuntu 18.04: Scott, why did you go with Ubuntu vs. Fedora? (Asking for a friend) Because it's the official OS of the product. Absolutely no reason to use Fedora here. Unifi only supports Ubuntu and Debian, and Jared and I have opposite views here. Ubuntu is the business product of the Debian family, Debian is the hobby project that is used as the basis for it. Debian is great, I love the project and they do great work, but it doesn't have primary vendor support, you are at the mercy of a hobby project. Ubuntu uses that basis and turns it into a production ready release with vendor and market support options. Ubuntu isn't Fedora, but it's still extremely good.
    • Remove Duplicate Entries from MongDB Collection
      IT Discussion • mongodb nosql aggregate • • scottalanmiller  

      3
      1
      Votes
      3
      Posts
      377
      Views

      @scottalanmiller said in Remove Duplicate Entries from MongDB Collection: You can add an index as well, to avoid having duplicates occur in the future: db.myCollection.createIndex({"my_field_to_be_unique":1},{unique:true}) Good idea.
    • Find Duplicate Value Entries in MongoDB Collection
      IT Discussion • javascript mongodb nosql aggregate • • scottalanmiller  

      2
      3
      Votes
      2
      Posts
      3244
      Views

      For more detail, showing the UIDs of each of the duplicates in question, try this little extension: db.myCollection.aggregate([ {$group: { _id: "$field_to_search", "dups": { "$push": "$_id" }, count: { $sum: 1}}}, {$match: { count: { $gt: 1 }}}])
    • MongoDB Most Wanted Database by Developers
      News • mongodb nosql databases • • mlnews  

      1
      2
      Votes
      1
      Posts
      348
      Views

      No one has replied

    • MongoDB Drops ACID
      News • mongodb nosql databases mongodb 4.0 acid • • mlnews  

      2
      1
      Votes
      2
      Posts
      308
      Views

      Gotta love that MongoDB
    • SOLVED SELinux issue with MongoDB on Fedora 27
      IT Discussion • fedora 27 mongodb selinux • • JaredBusch  

      11
      0
      Votes
      11
      Posts
      1565
      Views

      @brrabill said in SELinux issue with MongoDB on Fedora 27: @jaredbusch said in SELinux issue with MongoDB on Fedora 27: @black3dynamite said in SELinux issue with MongoDB on Fedora 27: Have not see that issue but I'm also using mongodb that is available from Fedora instead. /var/lib/mongo/ doesn't exist for me. But /var/lib/mongodb does exist. I also do have local.ns too. /sigh FFS @jaredbusch pay attention to what you are doing. don't use old versions. Long day when you have to sigh and FFS at yourself. Something like that, yes.
    • MongoDB 3.2 Update Issues on CentOS 7
      IT Discussion • linux centos 7 mongodb mongodb 3.2 • • scottalanmiller  

      1
      0
      Votes
      1
      Posts
      541
      Views

      No one has replied

    • MongoDB 3.6 Released
      News • mongodb mongodb 3.6 • • mlnews  

      8
      3
      Votes
      8
      Posts
      699
      Views

      @scottalanmiller Well you know, let's break it
    • Unable to update UniFi Controller due to Mongo GPG Error
      IT Discussion • ubuntu ubiquiti mongodb error unifi controller • • JaredBusch  

      6
      2
      Votes
      6
      Posts
      1525
      Views

      @JaredBusch not necessarily abnormal but surely a mix of 3 independent repos.
    • Extortionists competing to get paid for the same databases!
      News • mongodb default unsecured • • travisdh1  

      12
      0
      Votes
      12
      Posts
      1368
      Views

      @Romo said in Extortionists competing to get paid for the same databases!: Explanation of the vulnerability Understanding the hack The hack itself is alarmingly simple. In versions >= 2.6.0, MongoDB includes a default configuration file that binds MongoDB to 127.0.0.1 by default. As a result, the database will only listen to local connections. Before version 2.6.0, that wasn’t true. By default, MongoDB was left open to remote connections. Authentication is also not required by default, which means that out of the box installs of MongoDB before version 2.6.0 happily accept unauthenticated remote connections. Users could still restrict access to local connections if they took the time to configure the install but that meant manually adding a line to their mongodb.conf file. Since that wasn’t the default configuration, many existing installs never included this critical step. Making matters worse is that it’s easy to identify potential MongoDB attack candidates. MongoDB’s default port is 27017. Using a search engine such as ZoomEye, you can query for MongoDB installs, see what port they’re available over, and find around 100,000 vulnerable candidates. The vulnerability itself is hardly new. The issue was first raised back in 2012 and released somewhere around 2015. Also, in early 2015, John Matherly made some noise when he reported finding around 30,000 insecure installs of MongoDB. In other words, this is something that everyone could have known about for a while. That's not a vulnerability, that is STILL a half configured system AND no firewall on the server. And MongoDB 2.6 is relatively old, we are on 3.3 these days. This is a database cluster component, not a complete database piece on its own. Whatever "security" professional is writing this piece clearly isn't aware of what they are writing about. What they write is half true, 27017 is listening on 0.0.0.0, but it does so for a reason and is only vulnerable in places where someone did not finish setting up their database AND their server. It's not a vulnerability in the product.
    • NodeBB 1.4.0 Update Dies with MongoDB
      IT Discussion • centos 7 nodebb mongodb nvm nodebb 1.4 • • scottalanmiller  

      2
      0
      Votes
      2
      Posts
      777
      Views

      For those looking through the logs, this is the key entry to notice: error: Error creating index Index with name: _key_1_value_-1 already exists with different options
    • MangoLassi MangoDB Performance
      IT Discussion • mangolassi mongodb • • mlnews  

      4
      1
      Votes
      4
      Posts
      821
      Views

    • RockMongo: A GUI for MongoDB
      News • open source database mongodb nosql rockmongo • • mlnews  

      1
      4
      Votes
      1
      Posts
      828
      Views

      No one has replied

    • Installing MongoDB 3.2 on CentOS 7
      IT Discussion • linux centos scale scale hc3 centos 7 ntg lab rhel 7 mongodb linux server nosql mongodb 3.2 mongodb 3 • • scottalanmiller  

      7
      5
      Votes
      7
      Posts
      4123
      Views

      @scottalanmiller said in Installing MongoDB 3.2 on CentOS 7: Just tested and deployed to CentOS 7.2 on Linode. This failed me, so I went to the mongo docs and the baseurl contains the variable $releasever. using that results in redhat//mongodb in the file, which is why I assume you hard coded that bit. Escaping the $ fixes it. cat > /etc/yum.repos.d/mongodb-org-3.2.repo <<EOF [mongodb-org-3.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/\$releasever/mongodb-org/3.2/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-3.2.asc EOF
    • Accessing View Data from MongoDB for NodeBB
      Developer Discussion • nodebb javascript mongodb • • scottalanmiller  

      2
      0
      Votes
      2
      Posts
      2072
      Views

      gte and lte values create the "bounds" of the query. Adjust accordingly to change the date range. Value is "epoch time."
    • SOLVED MongoDB 2.6 Failed global initialization: BadValue Invalid or no user locale set. Please ensure LANG and/or LC_* environment variables are set correctly.
      IT Discussion • mongodb mongodb 2.6 • • scottalanmiller  

      2
      0
      Votes
      2
      Posts
      3518
      Views

      Fix was pretty easy: export LC_ALL=C
    • CloudatCost Project: Node Application Server
      IT Discussion • linux ubuntu nodebb cloudatcost mongodb node.js ubuntu 14.10 • • scottalanmiller  

      4
      1
      Votes
      4
      Posts
      1883
      Views

      Aww.. I thought someone reached out to them and said "hey we are talking about you over at ML, why not stick your head in?"
    • MongoDB 3.0 Speed Increases Coming in March
      Announcements • nodebb mongodb • • scottalanmiller  

      5
      4
      Votes
      5
      Posts
      2044
      Views

      Sucks that we will not have a chance to get MongoDB 3 ahead of Friday's event. Would have been awesome to put it through its paces.
    • Chat Fixed
      Announcements • nodebb mongodb • • steve  

      8
      2
      Votes
      8
      Posts
      1847
      Views

      I never even had a chance to know that it was broken.
    • MongoDB vs. Redis
      IT Discussion • database mongodb nosql databases redis • • scottalanmiller  

      25
      1
      Votes
      25
      Posts
      1808
      Views

      @dyasny said in MongoDB vs. Redis: @jmoore said in MongoDB vs. Redis: ... I don't see how just using some flashy marketing terms would actually get good talent. my point exactly! Not really what companies using recruiters like that want. It's mostly a myth that people want to hire great talent. Most places want to hire cool sounding, middling talent.