首页 /服务运维
MySQL报“Access denied for user 'root'@'%' to database”错误的解决方法执行 GRANT ALL PRIVILEGES ON test.* TO 'test_user'@'%' WITH GRANT OPTION 报错;错误原因user表中 'root'@'%' 没有grant的权限解决方法- **修改grant权限** ``` update mysql.user set Grant_priv='Y',Super_priv='Y' where user = 'roo
2019-07-29 数据库 mysql 权限 报错
Hot

Top
初始化git仓库的方法命令行指令Git 全局设置``` git config --global user.name "user_name" git config --global user.email "user_email@mail.com" ```创建新版本库``` git clone https://code.aliyun.com/你的git地址.git cd house touch README.md git add README.md git commit -m "add README" git push
2019-07-29 云服务商 阿里云 git aliyun

开启MySQL8远端登录You are not allowed to create a user with GRANT创建用户 Choose here javascripttypescripthtmlcssshellpythongolangjavacc++c#phprubyswiftkotlinscalarustdartelixirhaskellluaperlrsql create user 'root'@'%' identified by
2019-07-29 数据库 mysql 远程 登录

阿里云OSS跨账号跨区域数据迁移攻略官方提供了OssImport工具,可以实现跨账号、跨区域之间的数据迁移。优点可实现内网迁移、0迁移费用、0外网流量费、迁移速度快、支持数据增量迁移。 [阿里云OSS数据迁移官方文档地址](https://help.aliyun.com/document_detail/56990.html?spm=a2c4g.11186623.6.712.77934507VUZs0h "阿里云OSS数据迁移官方文档地址")准备工作- 1台阿里云ECS服务器 - 支持java环境,版本1.7以上 -
2019-07-28 云服务商 阿里云 oss 数据迁移

通过mysql命令行查看当前客户端真实IP地址mysql -uroot -p 登录MySQL![登录mysql](/uploads/article/20190726/2be709479b9ccacdbc5209d576d1f1abd88c33f2.png "登录mysql")show processlist; 查看客户端IP地址![查看mysql客户端IP](/uploads/article/20190726/66f46df5028ffda386aec673d0a4d18ba73c8b1f.png "查看mysql
2019-07-26 数据库 mysql ip

mysql安装完毕,默认不允许root用户远端登录,通过下面代码即可开启 Choose here javascripttypescripthtmlcssshellpythongolangjavacc++c#phprubyswiftkotlinscalarustdartelixirhaskellluaperlrsql #登录数据库 mysql -uroot -p use mysql; #查看root用户权限 select `user`,`hos
2019-07-15 数据库 mysql 数据库
总共32个记录,当前第5 首页上一页下一页尾页 跳到