
MySQL
iteye_19209
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS使用yum安装mariaDB(开源MySQL)
1 查看CentOS的mariadb是否已安装 [root@localhost ~]# yum list installed | grep mariadb-server mariadb-server.x86_64 1:5.5.50-1.el7_2 @updates 2 若有安装的mariadb-server,如何卸载Cen...原创 2016-11-16 11:36:18 · 248 阅读 · 0 评论 -
mysql设置成网络数据库,即远程访问mysql,修改root密码
1MySQL修改密码 update mysql.user set password=password('newpassword') where user='root' #将password()中的newpassword字符更改为你自己的密码 如修改为123456 : update mysql.user set password=password('123456') where ...原创 2016-11-16 11:36:23 · 196 阅读 · 0 评论 -
Please read "Security" section of the manual to find out how to run mysqld a
1 启动: [root@localhost bin]# mysqld restart 170109 19:30:58 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root! 170109 19:30:58 [ERROR] Abort...原创 2017-01-09 21:16:05 · 1980 阅读 · 0 评论