I installed DCTM on on windows 2022/sqlserver, oracle jdk 17.0.0.8 . I saw the install put three services Connection Broker,Repository service and a Java Methods Server.The java Methods server is actually calling startmethodserver.cmd which is actually a call to E:\Documentum\tomcat10.1.13\bin\startup.bat .This service is set to automatic and if it called TC I think one would see my default port of 9080 bound. However, it doesn't give me much to go on. If I go and execute the actual TC startup.bat the 9080 is bound and I can execute the three URLs like this(the console window stays in this case)
http://myserver.mydomain.net:9080/ACS/servlet/ACS http://myserver.mydomain.net:9080/DmMethods/servlet/DoMethod
http://myserver.mydomain.net:9080/DmMail/servlet/DoMail
in looking through some forums I found IPv6 is a problem so I have a directive to make it use IPV4 and I disabled IPV6 in my network adapter as well
I can use Documentum Server Manager to start the Repo, start broker, execute IDQL, IAPI, and so on. The Windows command file looks suspicious as I am seeing a unix shell script esac in a Windows command. Can one of you who knows this tell if that is ignorable?
netstat -ano|find "9080" never gives any output unless I start TC manually using the batch file…
startmethodserver.cmd listing
set JAVA_HOME=E:\Documentum\java64\JAVA_LINK
set CATALINA_HOME=E:\Documentum\tomcat10.1.13
set CATALINA_OPTS= -Xms1024m -Xmx2048m
ERROR=0
echo $"Starting Tomcat"
E:\Documentum\tomcat10.1.13\bin\startup.bat
esac
exit $ERROR