我需要將下面的輸出捕獲到變量中。 我知道我們可以訪問serverRuntime或domainRuntime()樹並獲取狀態。但需要得到下面的工作。WLST將狀態('ms1')的輸出捕獲到變量
wls:/owb/serverConfig> state('Server1')
Current state of 'Server1' : RUNNING
我嘗試了兩種方式:
wls:/owb/serverConfig> print state('Server1')
Current state of 'Server1' : RUNNING
None
wls:/owb/serverConfig> x=state('Server1')
Current state of 'Server1' : RUNNING
wls:/owb/serverConfig> print x
None
我嘗試了,我得到下面的錯誤: WLS:/ OWB/domainRuntime> slrBean = cmo.lookupServerLifecycleRuntime( 'owb001' ) 回溯(最裏面的最後一個): 文件「」,第1行,在? AttributeError:lookupServerLifecycleRuntime –
SSA
這是正確的答案,但應該有循環的CAPS C – SSA
在lookupServerLifeCycleRuntime中使用CAPS C的固定代碼,非常感謝@ user3460652 –