当前位置:网站首页>Sorting out the problems encountered in MySQL built by pycharm connecting virtual machines
Sorting out the problems encountered in MySQL built by pycharm connecting virtual machines
2022-07-05 21:28:00 【Raymond。】
pycharm Connected to the virtual machine mysql Sort out the problems encountered
1. pycharm Connect mysql database
The connection tutorial can be referred to PyCharm Connecting virtual machines MySql database .
2. pycharm Problems with connecting
2.1 mysql Version and driver issues
The version installed in the virtual machine is 5.1.49, Need to be in mysql for 5.1 Select the corresponding drive on .
The problem is solved by referring to the official documents Cannot connect to a database
2.2 Connection error timeout
The next day after the connection is successful , When I tested again, I found , Report errors :
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure Last packet sent to the server was 0 ms ago
Reference resources MySQL The next morning, I made an error when I connected for the first time , resolvent
The reason is because mysql There is a problem with the configuration . stay mysql There are two timing operations in , The parameter name is interactive_timeout and wait_timeout. The meaning is as follows :
1)interactive_timeout: The number of seconds the server waits for activity before shutting down the interactive connection . The interactive client is defined in mysql_real_connect() Use in CLIENT_INTERACTIVE Option client .
Parameter default :28800 second (8 Hours )
(2)wait_timeout: The number of seconds the server waits for activity before shutting down non interactive connections .
When the thread starts , According to the global wait_timeout Value or global interactive_timeout Value initializes the session wait_timeout value , Depends on the client type ( from mysql_real_connect() Connection options for CLIENT_INTERACTIVE Definition ).
Parameter default :28800 second (8 Hours )
When a client connects to MySQL After the database , If the client does not disconnect itself , And do nothing ,MySQL The database will keep this connection "wait_timeout" All this time ( The unit is s, The default is 28800s, That is to say 8 Hours ), Beyond that time ,MySQL Database in order to save resources , The connection will be disconnected on the database side ; Of course , In the process , If the client has any operation on this connection ,MySQL The database will restart calculating this time .
Therefore, in order to prevent timeout , You need to increase the two timeout timers . For the method of change, see MySQL The next morning, I made an error when I connected for the first time , resolvent
2.3 SSH Connect MYSQL
stay PyCharm Connecting virtual machines MySql database The article mentions
Because we are connected to virtual machines MySQL, So you need to fill in SSH( Safety surgery agreement ), adopt SSH Securely connect to the virtual machine for data interaction
I solve this problem 2.2 In question , Reconnect the mysql Database time , Forgot to fill in ssh news , As a result, it has been disconnected . About ssh Relevant knowledge needs to be supplemented .
3. pycharm Problems in connecting to the database in the code
3.1 About modules MySQLdb
Report errors
ModuleNotFoundError: No module named ‘MySQLdb
I installed python The version is 3.9
MySQLdb Only support Python2., Not yet 3.
It can be used PyMySQL Instead of . Installation method :pip install PyMySQL
In the use of import sqlalchemy When combined with :import pymysql
pymysql.install_as_MySQLdb(), namely :
import pymysql
pymysql.install_as_MySQLdb()
from sqlalchemy import create_engine
Reference resources :
python3.6 Report errors ModuleNotFoundError: No module named ‘MySQLdb‘ And solutions
3.2 Wrong connection time_out
Report errors
pymysql.err.OperationalError: (2003, "Can't connect to MySQL server on '...' (timed out)")
First, check whether the user is granted remote access permission .
After determining the endowments , see MySQL 3306 Whether the port listens ,
netstat -nltp | grep 3306
Finally, check the firewall status , Confirm that it is closed .
3.3 About create_engine usage
usage :
engine = create_engine(‘dialect+driver://username:[email protected]:port/database’)
dialect – Database type
driver – Database driven selection
username – Database user name
password – User password
host Server address
port port
database database
for example mysql:
mysql-python
engine = create_engine(‘mysql+mysqldb://scott:[email protected]/foo’)
For more data types, refer to python sqlalchemy in create_engine usage
边栏推荐
- Teach yourself to train pytorch model to Caffe (I)
- LeetCode_哈希表_困难_149. 直线上最多的点数
- PostGIS installation geographic information extension
- WPF gets the control in the datagridtemplatecolumn of the specified row and column in the DataGrid
- Modifiers of attributes of TS public, private, protect
- Clion-MinGW编译后的exe文件添加ico图标
- Evolution of zhenai microservice underlying framework from open source component encapsulation to self-development
- [daily training] 729 My schedule I
- Cross end solution to improve development efficiency rapidly
- MySQL InnoDB Architecture Principle
猜你喜欢

MySQL deep paging optimization with tens of millions of data, and online failure is rejected!

Xlrd common operations

The transformation based on vertx web sstore redis to realize the distributed session of vertx HTTP application

張麗俊:穿透不確定性要靠四個“不變”

EasyExcel的讀寫操作

Display DIN 4102-1 Class B1 fire test requirements

MySQL InnoDB Architecture Principle

Zhang Lijun: penetrating uncertainty depends on four "invariants"

Access Zadig self-test environment outside the cluster based on ingress controller (best practice)
![Longest swing sequence [greedy practice]](/img/e1/70dc21b924232c7e5e3da023a4bed2.png)
Longest swing sequence [greedy practice]
随机推荐
Opérations de lecture et d'écriture pour easyexcel
SQL common syntax records
驱动壳美国测试UL 2043 符合要求有哪些?
Test of incombustibility of cement adhesives BS 476-4
Simple interest mode - evil Chinese style
Interviewer: will concurrent programming practice meet? (detailed explanation of thread control operation)
@Validated basic parameter verification, grouping parameter verification and nested parameter verification
让开发效率飞速提升的跨端方案
Reading and writing operations of easyexcel
力扣------经营摩天轮的最大利润
Determine the best implementation of horizontal and vertical screens
xlrd常见操作
@Validated基础参数校验、分组参数验证和嵌套参数验证
终端安全能力验证环境搭建和渗透测试记录
Pytoch practice -- MNIST dataset handwritten digit recognition
Explain various hot issues of Technology (SLB, redis, mysql, Kafka, Clickhouse) in detail from the architecture
ESP32
How to prepare for the algorithm interview and answer the algorithm interview questions
Get JS of the previous day (timestamp conversion)
Access Zadig self-test environment outside the cluster based on ingress controller (best practice)