How to start stop restart MySQL server on Windows

In this article, we have explained how to start stop restart mysql server on Windows step by step.

We can start, stop mysql server using following 4 methods.

1. Using services.msc 2. using net command from command prompt 3. using mysqladmin from command prompt(With this we can only shutdown the MySQL server 4. From MySQL Workbench.

Method 1: Using services.msc
Continue reading How to start stop restart MySQL server on Windows

How to install MySQL 8.0 on Fedora 31/32/33

In this article, we will show you how to install MySQL 8.0 on Fedora 31/32/33 versions step by step.

Step1:Download and add yum repository to your Fedora versions

Now download and add the following MySQL Yum repository to your respective Fedora versions repository list to install the latest version of MySQL 8.0
Continue reading How to install MySQL 8.0 on Fedora 31/32/33

MySQL Ignoring query to other database

In this article, we will find the solution for “MySQL Ignoring query to other database”,

MySQL Ignoring query to other database

Cause and Resolution:

Cause:

I keep on getting this weird message, while executing any query in command prompt MySQL. I have tried to changing to all databases in my MySQL server. But error remains same.

Reason: I had missed the “u” flag for user so accidentally I had input the following command.

mysql -root -p

Solution:

Connect to MySQL Server with all flags as shown below. Then, error gone.

mysql -u root -p

So, from the above solution u is missing flag while connected to MySQL Server.

How to check MySQL Server startup time and uptime

In this article, we will see how to check MySQL Server startup time and uptime.

Uptime is the time between current and MySQL start time.
Startup time is time exact time(date with seconds) of MySQL server started.

1. Check the MySQL Server Startup time:
We can get it from MySQL shell, Linux shell and MySQL workbench
Continue reading How to check MySQL Server startup time and uptime