hi team,
has anyone accessing the dataminer, instead of dataminer server public ip, accessing it from load balancer?
we are running dataminer in a server, it was running perfectly fine, we are accessing from server public ip, Now we want access it from loadbalancer(AWS), but issue is in target port which port we have to give for accessing the dataminer root page?.
thanks,
s.j.v.praveen
Load balancing may not work out as expected, because authentication is done against a specific SLNet service, so any time a request is forwarded to a different backend, it will be considered unauthenticated and fail.
If there is no real "load balancing" to multiple backends, it is more acting as a reverse proxy to one specific backend. In that case it should be enough to proxy HTTPS on port 443 for webapps and Cube gRPC connections, and additionally port 8004 for Cube legacy Remoting connections. Forwarding to HTTP on port 80 will not work to establish a gRPC connection.
For the web apps, the load balancer should be configured to send the requests to the same backend server within the same session (session affinity, or “sticky sessions” in AWS).