This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.

⚠️ We've moved!

Hi there!

To reduce project dependency on 3rd party paid services the StackStorm TSC has decided to move the Q/A from this forum to Github Discussions. This will make user experience better integrated with the native Github flow, as well as the questions closer to the community where they can provide answers.

Use 🔗 Github Discussions to ask your questions.

St2 client won't run remotely

Does anyone know how to configure st2 to allow for remote connections? I’ve tried this sort of thing in my server’s st2.conf:
[api]
# Host and port to bind the API server.
#host = 127.0.0.1
host = 172.18.4.13
port = 9101

But the processes still bind to localhost, so I can’t connect remotely . . . any ideas?

Thanks!!

What is URL when you call st2client API? Please try https://${ST2_HOSTNAME}/api.

Interesting. The fact that the services are binding to localhost seems to have been a red herring, although I’m not sure how this works . . .

In any event, this seems to work!
[api]
url = https://st2/api
[cli]
debug = False
timezone = UTC
cache_token = True
[stream]
#url = None
[credentials]
username = admin
password = AdminPassword
#api_key = None
[auth]
url = https://st2/auth
[general]
#cacert = None
silence_schema_output = True
base_url = http://st2/
api_version = None
silence_ssl_warnings = False

Thanks!!