Hi Chris, Yes, When I did $ host [hostname], I get the IP address that I am trying to use.
Below are the Engine and Host configurations from server.xml. <Engine name="Catalina" defaultHost="localhost"> <!--For clustering, please take a look at documentation at: /docs/cluster-howto.html (simple how to) /docs/config/cluster.html (reference documentation) --> <!-- <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/> --> <!-- Use the LockOutRealm to prevent attempts to guess user passwords via a brute-force attack --> <Realm className="org.apache.catalina.realm.LockOutRealm"> <!-- This Realm uses the UserDatabase configured in the global JNDI resources under the key "UserDatabase". Any edits that are performed against this UserDatabase are immediately available for use by the Realm. --> <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/> </Realm> <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <!-- SingleSignOn valve, share authentication between web applications Documentation at: /docs/config/valve.html --> <!-- <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> --> <!-- Access log processes all example. Documentation at: /docs/config/valve.html Note: The pattern used is equivalent to using pattern="common" --> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log" suffix=".txt" pattern="%v %h %l %S %u %t "%r" %s %b" /> </Host> </Engine> On Mon, Sep 28, 2020 at 8:41 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > >Larvi, > > > >On 9/28/20 10:04, Larvi Boy wrote: > >> Hi, > >> > >> When I try to login to out web gui via direct link, it is working fine > but > >> when I used the dns url, for first time it works fine as for the first > time > >> we are redirected to our login page which redirects us back to my direct > >> link, but if we create another window with same dns link, some buttons > in > >> the jsp are not working. We cleared the cache but didn't help. > >> > >> I checked the application logs but there were no logs for the actions > that > >> should occur after click and I checked tomcat catalina.out and localhost > >> logs and there is no error there. > >> > >> We have 2 dns urls but we are not facing this issue with the other dns > url. > >> > >> Can you please help me on this. > >> > >> Please ask if more information is needed. > > > >Can you give some examples? What happens if you: > > > >>$ host [hostname] > > > >Do you get the same IP address that you are trying to use? > > > >Please post your <Engine> and <Host> configuration from server.xml. > >Remove any secrets you may have in there. > > > >-chris > > Thanks, Larvi