英伟达公开课官网地址 Augment your LLM Using Retrieval Augmented Generation Building RAG Agents with LLMs langchain的workflow: ![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/c90cb157c9c84bb5b3da380ec56f5c2a.png Generative AI Explained
默认root用户只允许本地连接,所以需要修改mysql库中user表中名为root的用户的host为“%”
select Host,User from user;UPDATE mysql.user SET host % WHERE user root;
FLUSH PRIVILEGES;
文件共享漏洞
准备阶段
配置IP地址
Windows XP 10.1.1.2/24 Windows Server 2003 10.1.1.1/24 开启文件共享
文件共享使用的是445端口,输入命令net share 在XP上打开运行窗口(CtrlR)输入\\10.1.1.1,出现以下界面则成功开启共享…
MySql子账户操作数据库权限不够,提示错误
1142 - SELECT command denied to user database
1142 - ALTER command denied to user database 以下命令可以解决
GRANT SELEC your_database_name TO mysql_account%;