-
Hello I have someone who launched MAPDL aaS in GRPC mode on a clusters viz node. It started up properly etc. The viz node IP address (external) is 10.0.0.5. They then try to connect to it with the following on a local computer (not the viz node): from ansys.mapdl import core as pymapdl
mapdl = pymapdl.Mapdl(IP='10.0.0.5', port=50052) After a while this returns an error that: OSError: Unable to connect to MAPDL gRPC instance at 127.0.0.1:50052 The referencing to the local loopback IP address is throwing me off. Looking for ideas. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @mikerife I believe Python is case sensitive. Therefore they should not use I will do something about this. |
Beta Was this translation helpful? Give feedback.
Hi @mikerife
I believe Python is case sensitive. Therefore they should not use
IP
ratherip
.I will do something about this.