How to install mysqldump in Windows 10?

Neeraj Singh Negi
1 min readMar 31, 2022

Download MySQL Community Server

Photo by Caspar Camille Rubin on Unsplash

Here you will get the mysqldump command

C:\Users\azureuser\Downloads\mysql-8.0.28-winx64\mysql-8.0.28-winx64\bin

Set environment variable inside path variable

C:\Users\azureuser\Downloads\mysql-8.0.28-winx64\mysql-8.0.28-winx64\bin

Run on command prompt

mysqld — install
mysqld — initialize

Start the mysql service

Press window+r and then type services.msc, find the Mysql service and start it.

If Mysql service does not start then restart system.
And then do same for start the service of mysql (services.msc -> Mysql)

Commands

Download all databases

mysqldump -h mysql.ap-south-1.rds.amazonaws.com -uadmin -pPass — ssl-mode=disabled — column-statistics=0 — all-databases > complete.sql

Download specific database and table

mysqldump -h mysql.ap-south-1.rds.amazonaws.com -uadmin -pPass — ssl-mode=disabled — column-statistics=0 wobot chat_details > chat_details.sql

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Neeraj Singh Negi
Neeraj Singh Negi

Written by Neeraj Singh Negi

AWS | Openstack | GCP | Ansible | Redhat 8 Linux | Docker | Jenkins | Kubernetes | Hadoop | Python | Machine Learning

No responses yet

Write a response