I create ArcGIS Portal installation using linux webportal that using port 8081 (yes I can't use default 80/443 port because of IT complication and limitation). I have successfully configure it and able to see home page without problem via https://mydomain:8081/arcgis/home
But when I try to singin to portal, some element make a request towards port 7443 which no accessible from outside. I have try to update webcontext url to "https://mydomain:8081/arcgis" but still not working.
Are you using the web adaptor and did you follow the instructions below to configure the web adaptor to use a non-default port?
Use nondefault ports for the portal's ArcGIS Web Adaptor—Portal for ArcGIS (10.7 and 10.7.1) | ArcGIS Enterprise
Did you find a solution for your Problem?
I do have the same issue with the following setup:
I followed the documentation (https://enterprise.arcgis.com/de/portal/latest/administer/windows/use-a-non-default-port-for-the-portal-s-web-adaptor.htm) and at some point after Login a resource is requested using the internal portal port: https://reverseproxy.domain.com:7443/arcgisportal/sharing/rest/portals/self/subscriptionInfo?f=json
This happens in the base.js --> getSecureUrl function. For some reason the property esriGeowConfig.self.httpsPort is set to 7443. The property location.hostname is set to the reverseproxy. Going into that method, the url is just fine:
https://reverseproxy.domain.com/arcgisportal/sharing/rest/portals/self/subscriptionInfo
Within that method that if-statement basically does this:
b = b.replace(location.hostname, location.hostname + ":" + esriGeowConfig.self.httpsPort)
As result, the url is returned as
https://reverseproxy.domain.com:7443/arcgisportal/sharing/rest/portals/self/subscriptionInfo
Note: I do have another webadaptor running on webserver.internal.com which uses the default port 443. As expected, everything works fine. (I need those two webadaptors, because I have one set up for IWA and the other for anonymous access).
Unfortunately, I found no clean solution. As a workaround, I remove those wrong port values in the reverse proxy (filtering outgoing requests).
HI I am having the same exact issue, could you kindly expound the steps to your workaround, what i need to do exactly? Its not clear where I need to go and rmeove those wrong ports. Many thanks!
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.