Python connects to the database MySQL decompressed version installation configuration and encountered problems

Python connects to the database MySQL decompressed version installation configuration and encountered problems

introduction

Today I learned how to connect to the database with Python, so I wanted to install the MySQL database. Unexpectedly, I encountered a lot of setbacks with this small database, so I wrote down my installation process and problems to share with you.

MySQL download link: https://u20538204.ctfile.com/fs/20538204-384372135

step

1. Decompression

2. Configure the environment, add a MYSQL_HOME variable, and add a new path %MYSQL_HOME%\bin in the path;

3. Create a directory and add new files. Create a data folder under the MySQL installation path and add a new file named my.ini

4. Execute the mysqld --initialize statement to generate a series of files in the data folder

5. I executed mysqld --install, but the error "Install/Remove of the Service Denied" suddenly appeared. What should I do? Because we don't have administrator privileges, open Task Manager - File - Run New Task and select "Create this task with system administrative privileges"

6. Enter the bin directory again and run mysqld --install to install mysql

7. Run the net start mysql command to start the service

8. Run mysql -u root -p to log in. There is a temporary password for the first login, which is in the file ending with err in the data folder.

9. Of course, the first thing we do when we log in is to change set password for root@localhost = password('123');

Note: If we encounter The service already exists! during the installation process, or fail to start the MySQL service, we execute sc delete mysql to delete the MySQL service and also delete the files in the data directory, and then execute the above steps. There must be something wrong.

Summarize

The above is the installation and configuration of the unzipped version of Python connecting to the database MySQL and the problems encountered. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Python3 implements MySQL database connection pool sample code
  • Configure Python to connect to Oracle to read Excel data and write it to the database
  • Brief analysis of important matters in connecting to database in Python
  • Python connects to MongoDB database to operate data example
  • Implementation of Python connecting to MySQL database and reading data
  • Python connects to MySQL database and simple add, delete, modify and query operation example code
  • Python operation PostgreSQL database example [connection, addition, deletion, modification, query, etc.]
  • Detailed explanation of how to connect to SQLite database and perform addition, modification and query in Python
  • Detailed explanation of the process of connecting Python to PostgreSQL database
  • Python connection, query, update, and delete operations examples for MySQL database
  • Use Python to connect to MySQL database using the pymysql module
  • Python remote connection to MySQL database
  • Detailed explanation of various ways to connect Python to MySQL database
  • Teach you how to connect to sql server using python

<<:  Complete example of Vue encapsulating the global toast component

>>:  Nginx domain name SSL certificate configuration (website http upgraded to https)

Recommend

Implementation of built-in modules and custom modules in Node.js

1. Commonjs Commonjs is a custom module in nodejs...

Analysis of the principle of Rabbitmq heartbea heartbeat detection mechanism

Preface When using RabbitMQ, if there is no traff...

Loading animation implemented with CSS3

Achieve results Implementation Code <h1>123...

How to implement simple data monitoring with JS

Table of contents Overview first step Step 2 Why ...

Detailed explanation of using Vue custom tree control

This article shares with you how to use the Vue c...

Pure CSS3 to achieve pet chicken example code

I have read a lot of knowledge and articles about...

Implementation code for using CSS text-emphasis to emphasize text

1. Introduction In the past, if you wanted to emp...

Detailed usage of kubernetes object Volume

Overview Volume is the abstraction and virtualiza...

Several ways to switch between Vue Tab and cache pages

Table of contents 1. How to switch 2. Dynamically...

Fabric.js implements DIY postcard function

This article shares the specific code of fabricjs...

Java+Tomcat environment deployment and installation process diagram

Next, I will install Java+Tomcat on Centos7. Ther...

How to implement an array lazy evaluation library in JavaScript

Table of contents Overview How to achieve it Spec...

Linux uses bond to implement dual network cards to bind a single IP sample code

In order to provide high availability of the netw...