<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yaazhvendhan MS</title>
    <description>The latest articles on DEV Community by Yaazhvendhan MS (@yaazhvendhan_ms).</description>
    <link>https://dev.to/yaazhvendhan_ms</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3547910%2F9f362a06-2762-4bf3-b7c3-bc1ab16556b0.png</url>
      <title>DEV Community: Yaazhvendhan MS</title>
      <link>https://dev.to/yaazhvendhan_ms</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yaazhvendhan_ms"/>
    <language>en</language>
    <item>
      <title>MongoDB - Installation process</title>
      <dc:creator>Yaazhvendhan MS</dc:creator>
      <pubDate>Mon, 06 Oct 2025 10:26:21 +0000</pubDate>
      <link>https://dev.to/yaazhvendhan_ms/mongodb-installation-process-ckl</link>
      <guid>https://dev.to/yaazhvendhan_ms/mongodb-installation-process-ckl</guid>
      <description>&lt;p&gt;If you’ve ever wanted a visual way to explore your MongoDB databases without writing endless queries, MongoDB Compass is your best friend. It’s the official GUI for MongoDB and works across Linux, macOS, and Windows. This guide will walk you through installing it step by step.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo8ixed8e5v27jvami4q9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo8ixed8e5v27jvami4q9.png" alt=" " width="800" height="404"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Installing MongoDB Compass on Linux&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;MongoDB Compass comes in two package formats for Linux:RPM for Fedora, CentOS, and RHEL, and DEB for Ubuntu and Debian.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RPM-based distributions (Fedora, CentOS, RHEL)&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Download the RPM package:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;wget https://downloads.mongodb.com/compass/mongodb-compass-1.46.10.x86_64.rpm&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install the package using yum:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;sudo yum install mongodb-compass-1.46.10.x86_64.rpm&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Launch MongoDB Compass:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;mongodb-compass&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;After launching, you can sign into your MongoDB Atlas account and start exploring your databases.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;DEB-based distributions (Ubuntu, Debian)&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Download the DEB package:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;wget https://downloads.mongodb.com/compass/mongodb-compass_1.46.10_amd64.deb&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install using apt:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;sudo apt install ./mongodb-compass_1.46.10_amd64.deb&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Troubleshooting dependencies:&lt;/strong&gt;If the installation fails due to missing dependencies, fix it with:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo dpkg -i mongodb-compass_1.46.10_amd64.deb&lt;/code&gt;&lt;br&gt;
&lt;code&gt;sudo apt-get install -f&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Launch Compass:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;mongodb-compass&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Installing MongoDB Compass on macOS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Requirements&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;macOS 10.12 or later (64-bit)&lt;/p&gt;

&lt;p&gt;MongoDB 7.0 or later&lt;/p&gt;

&lt;p&gt;Supported architectures: x64 and ARM64 (M1 users, download the ARM64 version)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Steps&lt;/strong&gt;&lt;br&gt;
Download the .dmg file from the MongoDB Compass downloads page &lt;a href="https://www.mongodb.com/docs/compass/install/?operating-system=macos" rel="noopener noreferrer"&gt;link&lt;/a&gt; .&lt;/p&gt;

&lt;p&gt;Open the .dmg file and drag MongoDB Compass to your Applications folder.&lt;/p&gt;

&lt;p&gt;Eject the disk image.&lt;/p&gt;

&lt;p&gt;Open Compass from Applications. If you see a security warning about opening an application from the internet, click Open to continue.&lt;/p&gt;

&lt;p&gt;macOS may ask for your password or request permission for Compass to run—this is normal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Installing MongoDB Compass on Windows&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Requirements&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Windows 10 or later (64-bit)&lt;/p&gt;

&lt;p&gt;MongoDB 7.0 or later&lt;/p&gt;

&lt;p&gt;Microsoft .NET Framework 4.5 or later&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Steps&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Download the installer from the MongoDB Compass downloads page &lt;a href="https://www.mongodb.com/docs/compass/install/?operating-system=windows" rel="noopener noreferrer"&gt;link&lt;/a&gt; . You can choose between .exe, .msi, or .zip.&lt;/p&gt;

&lt;p&gt;Run the installer. If installing on a system like Azure Virtual Desktop, run it as Administrator.&lt;/p&gt;

&lt;p&gt;Follow the prompts and select your preferred installation location.&lt;/p&gt;

&lt;p&gt;After installation, launch Compass and configure privacy settings and update preferences.&lt;/p&gt;

&lt;p&gt;&lt;a class="mentioned-user" href="https://dev.to/santhoshnc"&gt;@santhoshnc&lt;/a&gt; &lt;/p&gt;

</description>
      <category>mongodb</category>
      <category>tutorial</category>
      <category>linux</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
