Nomad API calls remain pending

Hello,

Recently I came across Nomad and looked like the solution I would like to have. Now I ran into a issue running my server/ui. When wanting to create a new job via the UI, I cannot. Those calls keep pending:
{D0745A03-B311-4F1C-B500-26C2637C41E1}

I have tried several things in my config, and environment vars. But whatever I do, this will not be solved. Could someone help me out here?

nomad.hcl

# Controller Node @ /etc/nomad.d/nomad.hcl

bind_addr = "0.0.0.0"
datacenter = "eu"
data_dir = "/opt/nomad/data"
name = "controller"

server {
  enabled = true
  bootstrap_expect = 1
}

client {
  enabled = true
}

advertise {
  http = "0.0.0.0:4646"
  rpc  = "10.0.0.2:4647"
  serf = "10.0.0.2:4648"
}

system service

[Unit]
Description=Nomad Agent
Documentation=https://www.nomadproject.io/
Wants=network-online.target
After=network-online.target
ConditionFileNotEmpty=/etc/nomad.d/nomad.hcl

[Service]
Type=notify
ExecStart=/usr/bin/nomad agent -config=/etc/nomad.d/nomad.hcl
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
LimitNOFILE=65536

[Install]
WantedBy=multi-user.target

Hi @vanvanni,

Those are blocking queries which the Nomad API supports and the UI utilizes: HTTP API | Nomad | HashiCorp Developer

Do you have the Nomad server logs when you attempt to submit the job via the UI and what response does the UI give you?

Thanks,
jrasell and the Nomad team

Hi @jrasell,

I do not have the logs right now, though by accident I switch to a older version (v1.10.0) instead of .1. This did fix it on my Ubuntu server but also on my Windows machine in dev mode.