Geoevent Manager access without port

2101
4
Jump to solution
04-30-2020 08:21 AM
Esriguy
New Contributor III

Hi Esri

I have deployed ArcGIS Geoevent 10.8.0 on our Azure. Geoevent server is federated with ArcGIS Portal.

Since geoevent manager is accessed via port https://geovt:6143/geoevent/manager. It is necessary to open port on firewall. Is there any way to access geoevent manager without port ?. Like how ArcGIS Server is accessed via web adapter?

GeoEventEnterprise GIS

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
Esriguy
New Contributor III

Thanks, Stefan. This helps. 

View solution in original post

0 Kudos
4 Replies
BenTurrell
Occasional Contributor III

Hey Esri guy‌,

You can use the web adaptor with Geoevent. That will allow you to access it through HTTPS.

Thanks,

Ben


If this answer was helpful please mark it as helpful. If this answer solved your question please mark it as the answer to help others who have the same question.

Stefan_Jung
Esri Contributor

Hey Esri guy‌,

the WebAdaptor does not support to access the GeoEvent Manager, only the ArcGIS Server Manager that is also installed. But you can use URL Rewrite in the same IIS to forward the Requests to the GeoEvent Manager.

You need to install:

  • Microsoft Application Request Routing
  • IIS URL Rewrite Module2 

Next Step is to create the Inbound Rule on you Default Site (URL Rewrite). If you want the GeoEvent Manager available via https://yourdomain.com/geoevent/manager you could use the following Regular Expression:

^geoevent/(.*)

and perform the rewrite Action to:

https://yourservername:6143/{R:0}

Be aware, if you close the Port 6143 and you want to use Stream Service you have to configure some more stuff. In this case you need to install the WebSocket protocol on your IIS, add some additional rules to the URL Rewrite and add the WebSocketContextURL to your system properties.

Best,

Stefan

Esriguy
New Contributor III

Thanks, Stefan. This helps. 

0 Kudos
MichaelKarikari1
New Contributor III

If i was only interested in stream service without the port number, what URL rewrites would be required?

0 Kudos