I want to change the value of Stuck Thread Max Time
property without using the console. Is it possible?
Asked
Active
Viewed 773 times
2

Barbaros Özhan
- 59,113
- 10
- 31
- 55

Shivakumar Math
- 21
- 1
1 Answers
2
You can use a WLST script to update your server configuration :
connect('<USERNAME>','<PASSWORD>','<HOST>:<PORT>')
edit()
startEdit()
cd('/Servers/<SERVER NAME>')
cmo.setStuckThreadMaxTime(300)
save()
activate()

Emmanuel Collin
- 2,556
- 2
- 10
- 17