
mysql
文章平均质量分 92
傲气也拽拽
莫等闲,白了少年头,空悲切。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql数据库远程连接
mysql创建用户,使其能远程连接select Host,User,Password from mysql.user; #登录root用户查看所有用户create user test identified by '123456'; #创建用户grant all privileges on *.* to 'test'@'%'identified by '123456' with grant ...原创 2018-06-14 13:09:18 · 271 阅读 · 0 评论 -
centos7下yum安装lamp,php7.2+mysql5.7
1 安装apache①安装[root@localhost ~]# yum install httpd②启动[root@localhost ~]# systemctl start httpd2 安装php7.2参考博客:https://blog.youkuaiyun.com/qq292913477/article/details/80696606①卸载之前安装的php[root@...原创 2018-12-05 17:12:02 · 781 阅读 · 0 评论