【metasploit教程】之建立数据库

在我们通过search命令搜索时,我们会发现搜索的很慢(慢搜索)而且会报错;

启动postgresql:

service postgresql strart

启动metasploit会开始建立数据表:

service metasploit strart

 

配置开机启动:

update-rc.d postgresql enable
update-rc.d metasploit enable

 

数据库修改:

sudo -u postgres psql #进入postgres交互模式
alter user postgres with password '123456'; #设置密码

 

最后启动msf:

msfconsole

 

确认数据库连接状态:

db_status

 

数据库连接:

db_connect postgres:123456@127.0.0.1/postgres
posted @ 2019-12-16 23:30  看不尽的尘埃  阅读(432)  评论(0编辑  收藏  举报