首页
关于
Search
1
阿里云rds数据库mysql版cpu占用100%排查问题过程
1,415 阅读
2
解决Gitlab进行clone、push、pull的时候报错aborting due to possible repository corruption on the remote side. git-pack-objects died with error.index-pack failed问题
1,317 阅读
3
nginx、php-fpm、thinkphp接口请求偶尔返回502导致前端报CORS跨域错误问题
861 阅读
4
使用VMware Workstation pro 15安装黑苹果后,开机卡在logo的问题
801 阅读
5
PHP连接SQLserver报错:SQLSTATE[IMSSP]: This extension requires the Microsoft ODBC Driver for SQL Server to communicate with SQL Server. Access the followin
601 阅读
计算机
数据库
Linux
PHP开发
前端
好文收藏
产品
创业
天天向上
阅读
工作
登录
Search
标签搜索
PHP
ss
pdo
mysql
php8
阅读
摘抄
PHP后端开发技术学习
累计撰写
104
篇文章
累计收到
1
条评论
首页
栏目
计算机
数据库
Linux
PHP开发
前端
好文收藏
产品
创业
天天向上
阅读
工作
页面
关于
搜索到
18
篇与
数据库
的结果
2019-09-08
GoldenGate 报错opening port for MGR MGR (WSA TCP/IP error 10060 occurred)
具体报错如下:ERROR: opening port for MGR MGR (WSA TCP/IP error 10060 occurred).原因:使用info manager命令显示如下信息:Manager is running (IP port 7T0I0DLHMQC98D2.7809, Process ID 7456).7T0I0DLHMQC98D2在host文件并没有配置需要在系统的host文件中添加127.0.0.1 7T0I0DLHMQC98D2如果hostname中带有-符号,例如DESKTOP-6SL2U65还需要将ipv6关掉,或者调整优先级,优先解析ipv4,这样才能解决问题。因为带-符号会被解析成ipv6,所以启动不了进程。
2019年09月08日
367 阅读
2019-09-08
MySQL用户管理与授权相关命令
创建用户以root用户登录mysqlmysql -uroot -p输入以下命令,新建一个登录名为hello,密码为helloworld的用户 use mysql insert into user(Host,User,Password)values('localhost','hello',password('helloworld'));注:Host字段的值为localhost时,只能本地访问,如果需要支持远程连接,需要把Host字段的值改为%修改密码以root身份登录mysql -uroot -p执行以下命令,将hello用户密码改为123456 update mysql.user set Password = password('123456') where User='hello' and Host='localhost';删除用户以root身份登录mysql -uroot -p,删除hello用户delete from mysql.user where User='hello' and Host='localhost'; flush privileges;用户授权以root用户登录,创建数据库testmysql -uroot -p create database test授予hello用户拥有test数据库所有权限grant all privileges on test.* to hello@localhost identified by 'helloworld'; flush privileges;注:授予hello用户拥有部分权限,将第一行的privileges替换成select,delete,update,drop即可授予hello用户拥有所有数据库的权限grant all privileges on *.* to hello@localhost identified by 'helloworld'; flush privileges;
2019年09月08日
271 阅读
1
2
3