Connecting to a weblogic server using WLST Online and encrypted credentials
The below post first connects to an admin server and creates encrypted user name and passowrd and a key to decrypt the user name and password. It then disconnects and then reconnects using the encrypted user name and password. 1. Admin server should be running. 2. Open command prompt and go to C:\Oracle\Middleware\wlserver_10.3\server\bin 3. Issue the command setWLSEnv for settign the env 4. Issue the command java weblogic.WLST for starting WLST tool. 5. Issue the command connect('weblogic','password',t3://localhost:9001') 6. Issue the command storeUserConfig('c:/bea/userConfig.secure','c:/bea/userKey.secure') 7. Issue the command disconnect() 8. Issue the command connect(userConfigFile='c:/bea/userConfig.secure',userKeyFile='c:/bea/userKey.secure',url='t3://localhost:9001').