
mysql
猥琐发育
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MySQL5.7 添加用户、删除用户与授权
mysql -u root -p 大伙注意了 MySQL5.7 mysql.user表没有password字段改 authentication_string; 一. 创建用户: 命令:CREATE USER 'username'@'host' IDENTIFIED BY 'password'; 例子: CREATE USER 'dog'@'localhost' IDENTIFIED BY ...原创 2018-09-18 17:21:02 · 162 阅读 · 0 评论 -
阿里云上如何快速的安装mysql
1、安装mysql: sudo apt-get install mysql-server 查看mysql是否运行 ps aux | grep mysql 启动命令 mysql -u root -p 再输入密码 2.如果安装密码错误卸载mysql 按顺序执行以下命令 sudo apt-get autoremove --purge mysql-server-5.7 sudo apt-get re...原创 2018-09-25 17:27:38 · 314 阅读 · 0 评论 -
阿里云上,linux系统连接mysql
1,安装mysql aptget install mysql-server 一些列的步骤不详细介绍 2, 再在添加安全组规则 https://blog.youkuaiyun.com/striverchuiying/article/details/81462524有详细介绍 3,修改配置文件 vim /etc/mysql/mysql.conf.d/mysql...原创 2018-09-27 13:34:41 · 437 阅读 · 0 评论