Hello,
I want to know whether it is possible to recover password of users from mysql Database i have found that passwords are Encrypted! is there any solution?
Thanks
Toufique Ahmed NizamaniMore Information:
- Finally, -p tells the mysql client that you will be entering a password to access your database
- mysql> drop database test; mysql> use mysql; mysql> delete from db; mysql> delete from user where not (host="localhost" and user="root"); mysql> flush privileges
- user;; mysql> SELECT Host, Db, User, Select_priv FROM mysql
- Decide which permissions you will have to give to the user on what database
- You may make database connections using the username/password combinations you set in the step above
- The MySQL database server is very popular for building web applications, it is often used in combination with the PHP language
- create a user which has read-only access on all tables in the database called 'test': GRANT SELECT ON test
- On a default settings, mysql root user do not need a password to authenticate from localhost
- You can directly update a password using the following method to update or change passwords:2) Use the mysql database (type commands at the mysql> prompt): mysql> use mysql; 3) Change password for a user: mysql> update user set password=PASSWORD("newpass") where User='YOUR-USER-NAME';
- In addition to performing database administration tasks by logging your MySQL service account
More:


LinkBack URL
About LinkBacks
Reply With Quote

























































Bookmarks