<?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: Tarun Mhanta</title>
    <description>The latest articles on DEV Community by Tarun Mhanta (@tarunmhanta30).</description>
    <link>https://dev.to/tarunmhanta30</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4035034%2Fe45699ad-bba7-4cdd-a3a4-66e23f620ef4.jpg</url>
      <title>DEV Community: Tarun Mhanta</title>
      <link>https://dev.to/tarunmhanta30</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tarunmhanta30"/>
    <language>en</language>
    <item>
      <title>My Laptop Fought Me for an Hour Before SigNoz Finally Loaded...</title>
      <dc:creator>Tarun Mhanta</dc:creator>
      <pubDate>Sun, 19 Jul 2026 09:28:50 +0000</pubDate>
      <link>https://dev.to/tarunmhanta30/my-laptop-fought-me-for-an-hour-before-signoz-finally-loaded-4g0o</link>
      <guid>https://dev.to/tarunmhanta30/my-laptop-fought-me-for-an-hour-before-signoz-finally-loaded-4g0o</guid>
      <description>&lt;p&gt;&lt;strong&gt;Before I saw a single trace inside SigNoz&lt;/strong&gt;, my laptop said no to me three times in a row. First Docker said no. Then WSL said no. Then permissions said no. I had a completely empty Windows machine, a hackathon to prepare for, and a growing feeling that this was going to be a long evening. &lt;/p&gt;

&lt;p&gt;It was. But by the end I had my own SigNoz dashboard running locally, and every error had a fix that turned out to be simpler than the panic it caused. If you are self-hosting SigNoz on Windows &lt;strong&gt;for the first time&lt;/strong&gt;, this is the walkthrough I wish someone had handed me.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fscx1aozbfm4cei1t5qec.jpeg" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fscx1aozbfm4cei1t5qec.jpeg" alt="Frustrated developer waiting for SigNoz to load after repeated setup attempts" width="800" height="810"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  WHAT I DID...
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The plan and the tools that make it work&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The goal was simple on paper to get SigNoz an open-source, OpenTelemetry-native observability platform running on my own machine so I could build on top of it later. Three pieces make that happen, and it helps to know what each one does before things start breaking:&lt;/p&gt;

&lt;p&gt;• &lt;strong&gt;Docker&lt;/strong&gt; runs SigNoz's many parts inside isolated containers, so you don't install a dozen things by hand. &lt;br&gt;
• &lt;strong&gt;WSL 2&lt;/strong&gt; is a real Linux environment living inside Windows. Docker leans on it. &lt;br&gt;
• &lt;strong&gt;Foundry&lt;/strong&gt; is SigNoz's official installer. You hand it one config file and it brings the whole stack up.&lt;/p&gt;

&lt;p&gt;That config file is almost comically small. This is the entire thing that boots SigNoz and its MCP server:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;apiVersion: v1alpha1 
kind: Installation 
metadata: 
   name: signoz 
spec: 
   deployment: 
      mode: docker 
      flavor: compose 
   mcp:
   spec: 
      enabled: true
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I read that, thought "this looks easy," and confidently ran into my first wall. &lt;/p&gt;

&lt;h2&gt;
  
  
  👊Round 1 "WSL is not installed"
&lt;/h2&gt;

&lt;p&gt;I installed Docker Desktop, opened it, and it stopped almost instantly.. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;Windows Subsystem for Linux (WSL) is not installed.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;I hadn't even typed a single command yet, and something was already red on my screen. Not the confident start I had pictured. &lt;/p&gt;

&lt;p&gt;The fix is one line. Open PowerShell as administrator and run..&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;wsl --install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;It pulls down WSL 2 and Ubuntu, then asks you to create a Linux username and password. The password shows nothing as you type no dots, no stars which threw me for a second until I realised that is just how Linux takes passwords. Then it told me to restart.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The gotcha&lt;/strong&gt; 😌: you truly have to restart the PC here. I tried to skip it and reopen Docker straight away, and it simply refused to see WSL. Restart, then continue.&lt;/p&gt;

&lt;h2&gt;
  
  
  🖐️Round 2 "docker-compose could not be found"
&lt;/h2&gt;

&lt;p&gt;After the restart I set Foundry up downloaded it, made it runnable, dropped in the &lt;code&gt;casting.yaml&lt;/code&gt; from earlier and ran the install..&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;foundryctl cast -f casting.yaml
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;It Denied again:&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;code&gt;The command 'docker-compose' could not be found in this WSL 2 distro. We recommend to activate the WSL integration in Docker Desktop settings.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Second error&lt;/strong&gt;, and this one at least had the decency to tell me where to look. My Ubuntu and my Docker were installed, but they were not talking to each other yet. There is a switch for exactly this. &lt;/p&gt;

&lt;p&gt;In Docker Desktop: &lt;strong&gt;Settings&lt;/strong&gt; → &lt;strong&gt;Resources&lt;/strong&gt; → &lt;strong&gt;WSL Integration&lt;/strong&gt;. Turn on "Enable integration with my default WSL distro," flip the &lt;strong&gt;Ubuntu&lt;/strong&gt; toggle on, and hit &lt;strong&gt;Apply &amp;amp; restart&lt;/strong&gt;.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ft3wi65g56jpdscw5ix8u.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ft3wi65g56jpdscw5ix8u.png" alt="The WSL Integration page with Ubuntu switched on" width="799" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ✌️Round 3 "Permission denied"
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Confidence restored&lt;/strong&gt;, I ran the install a third time. And got hit a third time: &lt;/p&gt;

&lt;p&gt;&lt;code&gt;unable to get image 'signoz/signoz-mcp-server:latest': permission denied while trying to connect to the Docker API at unix:///var/run/docker.sock&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Three errors in a row&lt;/strong&gt;. At this point I was fully convinced I had broken something deep and was about to spend the night reinstalling everything.&lt;/p&gt;

&lt;p&gt;But look closely.. the error had changed. It was no longer "can't find docker," it was "&lt;strong&gt;not allowed to use docker&lt;/strong&gt;." That is progress in disguise: the previous fix had worked, and now Ubuntu just lacked permission. Two steps solve it. First, add your user to the docker group.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo usermod -aG docker $USER&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then the part that actually caught me you must fully restart WSL for that new permission to load. In PowerShell..&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;wsl --shutdown 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Wait ten seconds, reopen Ubuntu, and the permission is live.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Small thing worth knowing&lt;/strong&gt; 😉: group changes only apply to a fresh session. On most Linux systems you would run &lt;code&gt;newgrp docker&lt;/code&gt; to refresh instantly, but my Ubuntu didn't have it, so a full &lt;code&gt;wsl --shutdown&lt;/code&gt; is the clean way to force it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The moment I clicked...
&lt;/h2&gt;

&lt;p&gt;One more run of the same command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;foundryctl cast -f casting.yaml 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;And this time green&lt;/strong&gt;. Progress bars everywhere. Foundry pulled every image in the stack (postgres, ClickHouse, the SigNoz app, the OTel collector, the MCP server) and started them one by one. Then the line I had been fighting for.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[+] up 82/82 ...

Container signoz-signoz-0                        Started 
Container signoz-telemetrystore-clickhouse-0-0   Started 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;Eighty-two out of eighty-two. After an hour of "no," seeing everything come up green was genuinely satisfying.&lt;br&gt;
&lt;/code&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flobs52vo1qsj16ii7ucz.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flobs52vo1qsj16ii7ucz.png" alt="The up 82/82 terminal with everything Started/Healthy" width="800" height="409"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Finally I did it...
&lt;/h2&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9inv1l9wp79fq4rs1efr.jpeg" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9inv1l9wp79fq4rs1efr.jpeg" alt="Finally did it" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I opened &lt;code&gt;localhost:8080&lt;/code&gt;, created a local account, and there it was my own SigNoz workspace, running entirely on my laptop.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmg0vinelgw59ulruxjpg.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmg0vinelgw59ulruxjpg.png" alt="Welcome to your SigNoz workspace" width="800" height="403"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It politely notes "you're not sending any data yet," which is exactly right nothing is reporting to it so far. &lt;strong&gt;Wiring a real app into it is the next chapter&lt;/strong&gt;, during the hackathon build itself.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9ueeizczuatts1xnmwch.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9ueeizczuatts1xnmwch.png" alt="Docker Desktop showing " width="800" height="425"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd tell my past self...
&lt;/h2&gt;

&lt;p&gt;• &lt;strong&gt;Restarts are not optional&lt;/strong&gt;. Two of my three errors were really "you didn't restart the thing that needed restarting." After WSL installs, restart the PC. After permission changes, &lt;code&gt;wsl -- shutdown&lt;/code&gt; . &lt;/p&gt;

&lt;p&gt;• &lt;strong&gt;Read the error before you panic&lt;/strong&gt;. Every single message here basically told me the next move. The delay was me reacting, not the tool being cryptic. &lt;/p&gt;

&lt;p&gt;• &lt;strong&gt;A changed error means you're winning&lt;/strong&gt;. When "can't find docker" became "not allowed to use docker," that felt like another failure. It was actually the sound of the previous fix working.&lt;/p&gt;

&lt;h2&gt;
  
  
  In The End...
&lt;/h2&gt;

&lt;p&gt;So that's my honest first hour with SigNoz on Windows: three errors, three fixes, and a live dashboard waiting for data at the end. It worked on my setup (Windows 11 + WSL 2 + Docker Desktop); yours may differ a little, but these fixes should point you in the right direction. Next up, I feed it real telemetry and start building my actual hackathon project on top and yes, I'll write about that part too. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;If you hit these same three walls, I hope this saved you the hour it cost me. If it did, drop a comment and tell me what you're building with SigNoz.&lt;/code&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6t88csapeox02s92kagf.jpeg" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6t88csapeox02s92kagf.jpeg" alt="Thank you all" width="552" height="350"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Written by&lt;/strong&gt;...&lt;strong&gt;Tarun Mhanta&lt;/strong&gt; an MCA student in Cybersecurity &amp;amp; AI who likes building things and writing about what breaks along the way. Currently gearing up for the Agents of SigNoz hackathon. Say hi: &lt;code&gt;GitHub&lt;/code&gt; &lt;a class="mentioned-user" href="https://dev.to/tarunmhanta30"&gt;@tarunmhanta30&lt;/a&gt; · &lt;/p&gt;

</description>
      <category>signoz</category>
      <category>observability</category>
      <category>docker</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
