mysql
galanhao
这个作者很懒,什么都没留下…
展开
-
centos7 安装mysqlclient时遇到的坑
[root@localhost bx_django_v3]# pip3 install mysqlclient WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead. Collecting mysqlclient Usi...原创 2019-10-17 22:50:45 · 1182 阅读 · 2 评论 -
mysql远程权限
update user set host = '%' where user = 'root'; select host, user from user; GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; FLUSH PRIVILEGES原创 2018-10-25 14:49:55 · 181 阅读 · 1 评论