A Better SMTP Test
Several years ago, I posted about an SMTP Test that I was using. Well, lately, I've needed something with a little more detail. So, I've...
How To Kill All Processes With The Same Name On Windows
The taskkill command can be used many different ways to end or kill running processes on Windows Server 2012 and above. Taskkill replaces the kill...
How To Start/Stop The Server Manager Agent On Linux
The following command can be executed from the Server Manager Console's bin directory to start/stop the Server Manager Agent: nohup ./startAgent & ./stopAgent How To...
How To Change The WebLogic Admin Password Using WLST
Follow the steps below to change the WebLogic Administrator's password using WLST: /u01/Oracle/Middleware/Oracle_Home/oracle_common/common/bin/wlst.sh connect('weblogic','welcome1','t3://SERVER_NAME:7001') cd('/SecurityConfiguration/DOMAIN/Realms/myrealm/AuthenticationProviders/DefaultAuthenticator') cmo.resetUserPassword('weblogic','welcome2') exit() You should now be able to login to...
Quick Tip: How To Set Environment Variables On Linux
I ran into this the other day and need to make note of it so.... The commands used to set environment variables on Linux depends...