》》yum -y install ruby
》》yum -y install xorg-x11-server-Xvfb
》》cd /opt
》》wget http://downloads.metasploit.com/data/releases/metasploit-latest-linux-installer.run
》》wget http://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run
》》chmod +x metasploit-latest-linux-x64-installer.run
》》./metasploit-latest-linux-x64-installer.run
》》yum -y install gcc*
》》yum -y install readline-devel
》》wget http://ftp.postgresql.org/pub/source/v9.6.6/postgresql-9.6.6.tar.gz
》》tar zxf postgresql-9.6.6.tar.gz
》》adduser postgres
》》passwd postgres
》》cd postgresql-9.6.6
》》./configure –prefix=/home/postgres/pgsql
》》gmake (这里需要安装一段时间)
》》gmake install
》》vi /etc/profile(添加以下内容)
PATH= PATH: P A T H : HOME/bin:/home/postgres/pgsql/bin
》》source /etc/profile(刷新)
》》mkdir /home/postgres/pgsql/data
》》touch /home/postgres/pgsql/.pgsql_history
》》chown -R postgres:postgres /home/postgres/pgsql/*
》》su postgres
》》/home/postgres/pgsql/bin/initdb -D /home/postgres/pgsql/data
》》cp /root/postgresql-9.6.6/contrib/start-scripts/linux /etc/init.d/postgresql
》》vi /etc/init.d/postgresql(修改以下两行)
prefix=/home/postgres/pgsql
PGDATA=”/home/postgres/pgsql/data”
》》chmod +x /etc/init.d/postgresql
》》/etc/init.d/postgresql start
a.查看数据库服务是否开启 (以下提示已经开启)
看看数据库用户名和密码在database.yml这个配置文件
》》b.find / -name database.yml
》》c.我的在/opt/metasploit/apps/pro/ui/config/database.yml 查看数据库配置信息
<span style="font-family:'Microsoft Yahei', 微软雅黑, arial, 宋体, sans-serif;">#
span>msfconsole
》》db_connect postgres:postgres@@127.0.0.1:5432/postgres
(db_connect用户名:口令@服务器地址:端口/数据库名称)
(db_connect msf3:[email protected]:7337/msf3(原msf3))
【所以首先要查看你数据库的名称和密码,在database.yml这个文件里,最好搜索下到底在哪
里,因为每个版本都不一样。
可能还要修改端口 /opt/metasploit/postgresql/data/postgres.conf中port = 5432
修改完成后 重新启动数据库 /etc/init.d/./metasploit-postgres restart
然后进入msfconsole
连接数据库,查看数据库状态:db_status.】