数据库
山川V
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据库链接池
import time import pymysql import threading from DBUtils.PooledDB import PooledDB,SharedDBConnection POOL = PooledDB( creator=pymysql, maxconnections=6, mincached=2, maxcached=5,maxs...原创 2019-07-12 21:59:09 · 503 阅读 · 1 评论 -
阿里云centos7.2 Mysql开启远程访问
1.在阿里云本实例的安全组,开启3306端口(外网) 2.可以使用tennet ip port 来测试端口是否开启 3.授权root账号远程访问mysql数据库 mysql> grant all privileges on *.* to 'root'@'%' identified by 'yourpwd'; Query OK, 0 rows affected, 1 warning (...原创 2018-08-30 15:17:50 · 731 阅读 · 0 评论
分享