# Error Fixes When Running Atlassian Forge Create

Atlassian Forge is a powerful platform for building, hosting and deploying cloud applications within the Atlassian ecosystem. With its rich set of APIs, Forge simplifies the development process, allowing developers to focus on building innovative applications that extend the functionality of Atlassian products.

In this blog post, we will discuss two errors experienced when running forge create.

### Platform Details

* Windows 11
    
* WSL2 (Ubuntu)
    
* Atlassian JIRA (Test)
    

## **Error #1**

**Error: Keytar error detected: Cannot spawn a message bus without a machine-id: Invalid machine ID in /var/lib/dbus/machine-id or /etc/machine-id**

![Cannot spawn a message bus without a machine-id](https://t42646153.p.clickup-attachments.com/t42646153/791ce8a7-1ddf-4259-9a1c-502c7b50cf05_large.png align="left")

As you can see from the screenshot, do the following steps:

1. `rm /etc/machine-id`
    
2. `sudo systemd-machine-id-setup`  
      
    Check [this page](https://www.freedesktop.org/software/systemd/man/systemd-machine-id-setup.html) for more details on `systemd-machine-id-setup`.
    

## **Error #2**

**Error: Keytar error detected: The name** `org.freedesktop.secrets` **was not provided by any .service files. Something went wrong while accessing Secret Service API.**

![](https://t42646153.p.clickup-attachments.com/t42646153/b47ced4e-5e19-4249-a05b-4fa9203d9ce9/image.png align="left")

As you can see from the screenshot, do the following steps:

1. `sudo apt install gnome-keytring`
    
2. `forge create`
    
    Check about [Gnome Keyring](https://en.wikipedia.org/wiki/GNOME_Keyring) for more details.
    

Hope this is helpful.
