kali linux 报告工具集 faraday 忘记密码处理办法
第一步:切换到root 用户 执行命令:
su root
第二步停止数据库服务
systemctl stop postgresql.service
第三步重新启动数据库
systemctl start postgresql.service
第四步:登录postgres 数据库 执行命令:
sudo -u postgres psql
第五步:删除 faraday 的数据库 执行命令:
DROP DATABASE faraday;
如果你的出现错误了,这个错误是因为faraday的服务是启用的,需要先停止对faraday数据库的连接,出现这个问题,重新执行第二步和第三部
第四步:删除faraday 用户 执行命令:
drop user faraday_postgresql;
到这里就已经删除干净了,重新启动工具,重新启动工具会重新安装数据库和重置密码