Tags: password

How to Reset Forgotten MySQL Root Password

Linux Send feedback »
First things first. Log in as root and stop the mysql daemon. Now lets start up the mysql daemon and skip the grant tables which store the passwords. #mysqld_safe --skip-grant-tables You should see mysqld start up successfully. If not, well you have… more »

How To Encrypt your passwords in Oracle Application Server

Technology, Oracle Send feedback »
Add the following entry to data-sources.xml <data-source class="com.evermind.sql.DriverManagerDataSource" name="jdbc/Oracle" location="jdbc/OracleCoreDS" xa-location="jdbc/xa/OracleXADS" ejb-location="jdbc/OracleDS" connection-driver="oracle.jdbc.dr… more »

Linux: How to lock/unclock user account

Technology, Linux Send feedback »
Lock user ID : # passwd -l username Unlock user ID : # passwd -u username Change password: # passwd username more »

Solaris: How to lock/unclock user account

Technology, Solaris Send feedback »
Lock user ID : # passwd -l username Unlock user ID : # passwd -d username Unlock user ID and force user to enter new password : # passwd -df username Note: This will unlock the user id, and force the user to enter a new password… more »