# Uibuilder instance problem

**URL:** https://discourse.nodered.org/t/uibuilder-instance-problem/97254
**Category:** General
**Tags:** uibuilder
**Created:** [24 May 2025 18:47 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254 "2025-05-24T18:47:48Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [24 May 2025 18:47 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/1 "2025-05-24T18:47:48Z")

</div>

When i attempt to open my uibuilder instance i get this message

Cannot GET /uibindex

i am using the open function in uibuilder itself.

if i enter 127.0.0.1:1880/project it opens correctly

Anyone have any idea what i am doing wrong?

thank you in advance

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [24 May 2025 20:24 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/2 "2025-05-24T20:24:22Z")

</div>

What versions of node-red, node.js and uibuilder are you using?

I assume that you are using the "Full Details" button in the uibuilder node?

You should never be getting `/uibindex` any way. Here is the URL from my dev PC:

```auto
http://127.0.0.1:1880/red/uibuilder/uibindex

```

The extra `/red/` is in there because I deliberately move the Editor on my dev instance to test all of the different URL's you might get. So if you haven't done that, you might see `http://127.0.0.1:1880/uibuilder/uibindex`.

Also note that you cannot directly access the page unless you have already opened the Editor because it uses the same security settings so as to prevent unauthorised access. This is not an issue when using the button in the uibuilder node of course.

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [24 May 2025 21:11 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/3 "2025-05-24T21:11:06Z")

</div>

Hi .  
i am using uibuilder V7.2.0  
Node.js V20.19.1  
Node red V4.0.6

my url is `http://127.0.0.1:1880/uibuilder/uibindex` .

hope that helps

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [24 May 2025 21:14 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/4 "2025-05-24T21:14:33Z")

</div>

when i click open the url it is using is 127.0.0.1:1880/uibindex  
not sure why?  
if i click this it opens properly

UIBUILDER is using Node-RED's webserver at [http://127.0.0.1:1880/](http://127.0.0.1:1880/Project)

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [24 May 2025 23:35 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/5 "2025-05-24T23:35:03Z")

</div>

What do you get if you click on the "Node Details" button?

I note that an error has crept in somewhere when using that button but still, it will tell us something.

Also, what uibuilder url have you got set - can you post a screenshot of the uibuilders main config tab?

In addition, as you hover over the buttons, you should see the full url's shown at the bottom of the browser window.

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/6/2/62f97df621545f282e5850442cc601104722a6e0.png)

It would also be helpful if you could share the early part of the node-red log that shows uibuilder's global settings.

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/5/3/53591da4c0c8bc13fc17207e6b69f603e3cc3696.png)

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 12:52 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/6 "2025-05-25T12:52:00Z")

</div>

hi,  
if i click on the node details button i get this:-

Cannot GET /uibuilder/instance/_url_

Not sure how to capture the log details?

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [25 May 2025 15:36 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/7 "2025-05-25T15:36:32Z")

</div>

Please share a screenshot of your uibuilder node config.

> [@magicman](#):
>
> if i click on the node details button i get this:-
> 
> `Cannot GET /uibuilder/instance/_url_`

That is expected because of the error I mentioned.

> [@magicman](#):
>
> Not sure how to capture the log details?

What platform are you running Node-RED on?

For a standard Linux setup, a command such as `sudo journalctl -u node-red` should give you the log but you should also restart node-red first, so something like this:

```bash
sudo systemctl restart node-red && sudo journalctl -u node-red -f -n 500 -o cat --no-hostname

```

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 16:01 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/8 "2025-05-25T16:01:12Z")

</div>

i am running on Debian GNU/Linux 12 (bookworm)  
i stopped node red with node-red-stop  
then restarted with node-red-start  
on this command  
pi400@raspberrypi:~ $ sudo journalctl -u node-red i get

-- No entries --  
pi400@raspberrypi:~ $

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [25 May 2025 16:10 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/9 "2025-05-25T16:10:54Z")

</div>

Sorry, I use a custom name so I can't remember the default unit name for node-red. Might be `nodered` instead?

You may need to look it up, there are systemctl commands that will list running units - I don't remember the commands off the top of my head.

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 16:20 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/10 "2025-05-25T16:20:34Z")

</div>

i will get on it sorry to be a pain

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [25 May 2025 16:22 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/11 "2025-05-25T16:22:29Z")

</div>

It's OK, it can be hard to suddenly find yourself dumped into the depths of the OS when you "just" thought you were trying to use a "simple" graphical tool!

This is the joy of working with Node.js apps I'm afraid.

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 16:28 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/12 "2025-05-25T16:28:02Z")

</div>

ok used sudo journalctl -u nodered and go this? but date DEC 16?

pi400@raspberrypi:~ $ sudo journalctl -u nodered  
Dec 16 18:31:20 raspberrypi systemd[1]: Started nodered.service - Node-RED grap\>  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info]  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: Welcome to Node-RED  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: ===================  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Node-RED v\>  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Node.js v\>  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Linux 6.6.\>  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Loading pa\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Settings f\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Context st\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] User direc\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [warn] Projects d\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Flows file\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Creating n\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [warn] Encrypted \>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Server now\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Starting f\>  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Started fl\>  
Dec 16 18:39:48 raspberrypi Node-RED[3448]: 16 Dec 18:39:48 - [info] Installing\>  
Dec 16 18:40:35 raspberrypi Node-RED[3448]: 16 Dec 18:40:35 - [info] Installed \>  
Dec 16 18:40:40 raspberrypi Node-RED[3448]: 16 Dec 18:40:40 - [info] Added node\>  
Dec 16 18:40:40 raspberrypi Node-RED[3448]: 16 Dec 18:40:40 - [info] - node-re\>  
Dec 16 18:40:40 raspberrypi Node-RED[3448]: 16 Dec 18:40:40 - [info] - node-re\>  
lines 1-23

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 16:31 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/13 "2025-05-25T16:31:07Z")

</div>

Dec 16 18:31:20 raspberrypi systemd[1]: Started nodered.service - Node-RED graphical event wiring tool.  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info]  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: Welcome to Node-RED  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: ===================  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Node-RED version: v4.0.6  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Node.js version: v20.18.1  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Linux 6.6.62+rpt-rpi-v8 arm64 LE  
Dec 16 18:31:21 raspberrypi Node-RED[3448]: 16 Dec 18:31:21 - [info] Loading palette nodes  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Settings file : /home/pi400/.node-red/settings.js  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Context store : 'default' [module=memory]  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] User directory : /home/pi400/.node-red  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [warn] Projects disabled : editorTheme.projects.enabled=false  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Flows file : /home/pi400/.node-red/flows.json  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Creating new flow file  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [warn] Encrypted credentials not found  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Server now running at [http://127.0.0.1:1880/](http://127.0.0.1:1880/)  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Starting flows  
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Started flows  
Dec 16 18:39:48 raspberrypi Node-RED[3448]: 16 Dec 18:39:48 - [info] Installing module: node-red-contrib-zwave-js, version: 9.1.0  
Dec 16 18:40:35 raspberrypi Node-RED[3448]: 16 Dec 18:40:35 - [info] Installed module: node-red-contrib-zwave-js  
Dec 16 18:40:40 raspberrypi Node-RED[3448]: 16 Dec 18:40:40 - [info] Added node types:  
Dec 16 18:40:40 raspberrypi Node-RED[3448]: 16 Dec 18:40:40 - [info] - node-red-contrib-zwave-js:zwave-js  
Dec 16 18:40:40 raspberrypi Node-RED[3448]: 16 Dec 18:40:40 - [info] - node-red-contrib-zwave-js:zwave-device  
lines 1-23

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [25 May 2025 16:56 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/14 "2025-05-25T16:56:34Z")

</div>

Best, when sharing text or code to use the  
 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/a/a/aa1e61c0e9ed2366b781108fe4463c46a339f51f.png)  
option.

But I can see something critical missing from that log.

Here is what it should look like if you had UIBUILDER correctly installed (This from my test PC using PM2 so the log format slightly different):

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/b/9/b9fa47f297cb75d748d2acb209f48e0ea8c9ca51.png)

See how there is a box around the UIBUILDER startup information?

More critical is this line:

```auto
Dec 16 18:31:23 raspberrypi Node-RED[3448]: 16 Dec 18:31:23 - [info] Creating new flow file

```

Which tells me that something is seriously wrong with your Node-RED installation I'm afraid. Since you would only ever expect to see this on FIRST RUN.

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 17:48 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/15 "2025-05-25T17:48:40Z")

</div>

is there a way around this without me losing all my node red data?

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 17:56 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/16 "2025-05-25T17:56:47Z")

</div>

```auto
5 May 18:51:01 - [info] Node-RED version: v4.0.6
25 May 18:51:01 - [info] Node.js version: v20.19.2
25 May 18:51:01 - [info] Linux 6.12.25+rpt-rpi-v8 arm64 LE
25 May 18:51:01 - [info] Loading palette nodes
25 May 18:51:04 - [info] node-red-contrib-telegrambot version: v16.3.1
25 May 18:51:13 - [info] Settings file : /home/pi400/.node-red/settings.js
25 May 18:51:13 - [info] Context store : 'default' [module=memory]
25 May 18:51:13 - [info] User directory : /home/pi400/.node-red
25 May 18:51:13 - [warn] Projects disabled : editorTheme.projects.enabled=false
25 May 18:51:13 - [info] Flows file : /home/pi400/.node-red/flows.json
25 May 18:51:13 - [info] Server now running at http://127.0.0.1:1880/
25 May 18:51:13 - [info] +-----------------------------------------------------
25 May 18:51:13 - [info] | uibuilder v7.2.0 initialised 🌐
25 May 18:51:13 - [info] | root folder: /home/pi400/.node-red/uibuilder
25 May 18:51:13 - [info] | Using Node-RED's webserver at:
25 May 18:51:13 - [info] | http://0.0.0.0:1880/
25 May 18:51:13 - [info] | Installed packages:
25 May 18:51:13 - [info] | vue2
25 May 18:51:13 - [info] +-----------------------------------------------------
25 May 18:51:13 - [info] Starting flows
25 May 18:51:14 - [info] Started flows

```

powered off PI400  
powered on now get this boot up sequence  
looks better?

---

<div class="post-metadata">

### Author: ![Colin](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/colin/32/17040_2.png) [@Colin](https://discourse.nodered.org/u/Colin)
#### Post date: [25 May 2025 18:43 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/17 "2025-05-25T18:43:01Z")

</div>

Didn't the node-red-stop node-red-start show you the log?

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [25 May 2025 19:12 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/18 "2025-05-25T19:12:29Z")

</div>

yes it did.  
but still getting Cannot GET /uibindex when i attempt topen a uibulider instance using the open button

---

<div class="post-metadata">

### Author: ![TotallyInformation](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/totallyinformation/32/31_2.png) [@TotallyInformation](https://discourse.nodered.org/u/TotallyInformation)
#### Post date: [25 May 2025 20:01 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/19 "2025-05-25T20:01:44Z")

</div>

You still haven't shared a screenshot of your uibuilder node config. Just the main tab is fine.

---

<div class="post-metadata">

### Author: ![magicman](https://avatars.discourse-cdn.com/v4/letter/m/73ab20/32.png) [@magicman](https://discourse.nodered.org/u/magicman)
#### Post date: [26 May 2025 18:57 UTC](https://discourse.nodered.org/t/uibuilder-instance-problem/97254/20 "2025-05-26T18:57:48Z")

</div>

here is a screenshot as requested

 ![20250526_19h54m56s_grim](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/9/9/99010f6d064b5085e10b48d2610515c09e7c982a.jpeg)

[Next page](https://discourse.nodered.org/t/uibuilder-instance-problem/97254.md?page=2)
