linux 进入 mysql 跳过密码认证

linux 进入 mysql 跳过密码认证,第1张

1.# vi /etc/my.cnf

2.在[mysqld]后面任意一行添加“skip-grant-tables”(按i进入插入模式

3.添加完那一行后点击ESC退出插入模式,输入(:wq)保存退出

4.使用service mysqld restart来重启(重启失败则按提示输入systemctl restart mysqld.service)

5.再次输入 # mysql 则可直接进入

create procedure p16(in x int)

BEGIN

declare a int default 0

set a=x

select @b=userid from userinfo where deptid=a

select userid,salary from salayrinfo where userid=@b

END

然后 call p16(1)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8310194.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存