However, if you want to change (or update) a root password, then you need to use following commandCode language: SQL (Structured Query Language) (sql)$ mysqladmin -u root password NEWPASSWORD
$ mysqladmin -u root -p oldpassword newpassEnter password:
$ mysqladmin -u viral -p oldpassword newpass
$ mysql -u root -p2) Use mysql database (type command at mysql> prompt):
mysql> use mysql;3) Change password for user viral:
mysql> update user set password=PASSWORD("NEWPASSWORD") where User='viral';4) Reload privileges:
mysql> flush privileges; mysql> quit
Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…
Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…
Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…
1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…
GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…
1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…
View Comments
very good...
very good tutorial..........
Cool Tricks...Thanks.