{{theTime}}

Search This Blog

Total Pageviews

MySql Startup............

Prerequisite: Install mysql

How to create user name & permissions???

Login: mysql -u root -p
Enter password: admin

mysql> create user 'sri'@'localhost' identified by sri
mysql> grant all permissions on *.* to sri@localhost
mysql> mysqladmin -u sri -p create my_first_database

How to Shutdown mysql: mysqladmin -u root shutdown
Listen to this article

Listen to this article

No comments:

Optimizing Java Applications for Low-Latency Microservices

Introduction Microservices architecture has become a go-to for building scalable, modular systems, but achieving low latency in Java-based...