2

I want to change the value of Stuck Thread Max Time property without using the console. Is it possible?

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

1 Answers1

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