In
Trados GroupShare 2020 SR1 CU09, the
TM Service Agent listens on port
5000 (
Asp.
NET Core default) and might cause problems on any server (when another service or application is set to listen by default on port 5000), the following workarounds can be applied:
Solution. Update to Trados GroupShare 2020 SR1 CU10 (build 15.1.10.13194 released on December 11th, 2023)
Workaround 1If another application is set to listen on port 5000, simply change that port to something different.
Workaround 21. Open
"C:\Program Files\SDL\SDL Server\TMServiceAgent\appsettings.json" for editing
2. Add the following lines (e.g. on the 3rd line in the .json file):
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://+:41266"
}
}
},
Before the change:
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning",
"Sdl": "Debug",
"Rws": "Debug"
}
},
After implementing the change:
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://+:41266"
}
}
},
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning",
"Sdl": "Debug",
"Rws": "Debug"
}
},
Note! Port 41266 could be replaced by any desired port in the above config line.
Note2! This was already reported to our Dev team under ID
CRQ-35496. We should have a fix for this in an upcoming
Trados GroupShare 2020 release - having the default 41266 port being used again.