<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ArcGIS Experience Builder  Uninstall in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1372854#M10444</link>
    <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/386769"&gt;@vijaybadugu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It appears that a process is currently running on port 3000 when the Experience Builder is attempting to use said port. You may need to find what the process is that is currently running, and terminate the process if possible, there is a way that we can find this, if we use this here in the Windows CMD:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;netstat -ano -p tcp |find "3000"&lt;/LI-CODE&gt;&lt;P&gt;The far right column is the PID of the process running, you will be able to then use this command to terminate the PID that you find, please ensure it is not something that will cause issue when stopped though:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;taskkill /F /PID &amp;lt;PID&amp;gt; &lt;/LI-CODE&gt;&lt;P&gt;So if my PID was 111 it would be taskkill /F /PID 111&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're using Linux, you may use&lt;/P&gt;&lt;LI-CODE lang="c"&gt;sudo lsof -i :3000 &lt;/LI-CODE&gt;&lt;P&gt;Then once found terminate the PID with:&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;kill -9 &amp;lt;PID&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;So if your PID was 111, it would be kill -9 111&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jan 2024 12:51:31 GMT</pubDate>
    <dc:creator>CodyPatterson</dc:creator>
    <dc:date>2024-01-22T12:51:31Z</dc:date>
    <item>
      <title>ArcGIS Experience Builder  Uninstall</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1372364#M10427</link>
      <description>&lt;P&gt;I have installed long back and been working on few apps. now i would like to upgrade it newer version of 1.13 or uninstall the current version and install newer version&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i try to install newer version using command prompt i am getting below error&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error: listen EADDRINUSE: address already in use :::3000&lt;BR /&gt;at Server.setupListenHandle [as _listen2] (node:net:1872:16)&lt;BR /&gt;at listenInCluster (node:net:1920:12)&lt;BR /&gt;at Server.listen (node:net:2008:7)&lt;BR /&gt;at Object.&amp;lt;anonymous&amp;gt; (D:\EXB\arcgis-experience-builder-1.13\ArcGISExperienceBuilder\server\src\server.js:1:3490)&lt;BR /&gt;at Module._compile (node:internal/modules/cjs/loader:1376:14)&lt;BR /&gt;at Module._extensions..js (node:internal/modules/cjs/loader:1435:10)&lt;BR /&gt;at Module.load (node:internal/modules/cjs/loader:1207:32)&lt;BR /&gt;at Module._load (node:internal/modules/cjs/loader:1023:12)&lt;BR /&gt;at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:135:12)&lt;BR /&gt;at node:internal/main/run_main_module:28:49&lt;BR /&gt;Emitted 'error' event on Server instance at:&lt;BR /&gt;at emitErrorNT (node:net:1899:8)&lt;BR /&gt;at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {&lt;BR /&gt;code: 'EADDRINUSE',&lt;BR /&gt;errno: -4091,&lt;BR /&gt;syscall: 'listen',&lt;BR /&gt;address: '::',&lt;BR /&gt;port: 3000&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please suggest&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 17:14:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1372364#M10427</guid>
      <dc:creator>vijaybadugu</dc:creator>
      <dc:date>2024-01-19T17:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder  Uninstall</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1372854#M10444</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/386769"&gt;@vijaybadugu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It appears that a process is currently running on port 3000 when the Experience Builder is attempting to use said port. You may need to find what the process is that is currently running, and terminate the process if possible, there is a way that we can find this, if we use this here in the Windows CMD:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;netstat -ano -p tcp |find "3000"&lt;/LI-CODE&gt;&lt;P&gt;The far right column is the PID of the process running, you will be able to then use this command to terminate the PID that you find, please ensure it is not something that will cause issue when stopped though:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;taskkill /F /PID &amp;lt;PID&amp;gt; &lt;/LI-CODE&gt;&lt;P&gt;So if my PID was 111 it would be taskkill /F /PID 111&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're using Linux, you may use&lt;/P&gt;&lt;LI-CODE lang="c"&gt;sudo lsof -i :3000 &lt;/LI-CODE&gt;&lt;P&gt;Then once found terminate the PID with:&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;kill -9 &amp;lt;PID&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;So if your PID was 111, it would be kill -9 111&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 12:51:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1372854#M10444</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2024-01-22T12:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder  Uninstall</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1374358#M10499</link>
      <description>&lt;P&gt;I tried to kill the process based on process id and it keeps showing on task manager with different PID .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 14:22:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1374358#M10499</guid>
      <dc:creator>vijaybadugu</dc:creator>
      <dc:date>2024-01-25T14:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder  Uninstall</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1374679#M10516</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/386769"&gt;@vijaybadugu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was curious if you could share what the process may be? If it's an important one, your IT department or similar may be the best to contact in order to move this process out of the way so you can place your own process down. I apologize that I can't be much help, but process involved issues can be very interesting.&lt;/P&gt;&lt;P&gt;Cody&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jan 2024 21:37:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1374679#M10516</guid>
      <dc:creator>CodyPatterson</dc:creator>
      <dc:date>2024-01-25T21:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Experience Builder  Uninstall</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1589264#M17590</link>
      <description>&lt;P&gt;Had the same issue. The issue for me was that I installed it also as a Windows Service. So I had to go and disable and stop the windows service (in the Services app - service called 'exb-server'). Then I was able to npm start on the folder location.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 02:58:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/arcgis-experience-builder-uninstall/m-p/1589264#M17590</guid>
      <dc:creator>BTW</dc:creator>
      <dc:date>2025-02-26T02:58:52Z</dc:date>
    </item>
  </channel>
</rss>

