no listen url was specified for the etcd cluster TLS manager, new wag servers will not be able to join #181
Unanswered
ForestCat4
asked this question in
Q&A
Replies: 1 comment 6 replies
-
|
You're missing the clustering block. "Clustering": {
"ClusterState": "new",
"ETCDLogLevel": "error",
"ListenAddresses": [
"https://127.0.0.1:2380"
],
"TLSManagerListenURL": "https://127.0.0.1:3434"
}, |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Fresh plain vanilla Ubuntu 24.02 desktop install
Fully operational wireguard
No docker, etc
After following the only two sets of wag install instructions on the internet carefully,
From terminal as root after running ./wag start -config config.json I get this
"no listen url was specified for the etcd cluster TLS manager, new wag servers will not be able to join"
Neither site lists that as an expected/normal output. Is it?
Afterward, running , for example: ./wag version , I see:
"Get "http://unix/version": dial unix /tmp/wag.sock: connect: no such file or directoryJust trying for a bare minimum test install, without ssl, certs, Public-accessible webserver, etc. I wanted to add that after I get the management ui up. Is that possible?
Thanks!
Here's my config.json
{ "Proxied": false, "ExposePorts": null, "HelpMail": "info@foo.com", "Lockout": 5, "ExternalAddress": "<my_WAN_ip", "MaxSessionLifetimeMinutes": 1440, "SessionInactivityTimeoutMinutes": 60, "ManagementUI": { "ListenAddress": "127.0.0.1:4433", "Enabled": true, "Debug": false }, "Webserver": { "Public": { "ListenAddress": ":8080" }, "Tunnel": { "Port": "80" } }, "Authenticators": { "Issuer": "Wireguard", "Methods": ["totp"], "DomainURL": "", "OIDC": { "IssuerURL": "", "ClientSecret": "", "ClientID": "" } }, "Wireguard": { "DevName": "wg0", "ListenPort": 51820, "PrivateKey": "<myKey>", "Address": "10.10.88.1/24", "MTU": 1420, "ServerPersistentKeepAlive": 25, "DNS": ["8.8.8.8"] }, "DatabaseLocation": "devices.db", "Acls": { "Groups": { "group:admin": ["foobar"] }, "Policies": { "group:admin": { "Mfa": ["172.69.0.0/16", "172.63.0.0/16"], "Allow": ["0.0.0.0/0", "::/0"] } } } }Beta Was this translation helpful? Give feedback.
All reactions