在BT5系统中安装postgresQL

前端之家收集整理的这篇文章主要介绍了在BT5系统中安装postgresQL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在看《Metasploit the pentration tester guide》这本书,原书采用的是BT4.

但是我使用的是BT5. BT5中么有安装Postgressql.所以无法使用

root@bt~# /etc/init.d/postgresql-8.3 start

命令。所以只有自己安装postgresql,安装完成后,在Metasploit中可以直接连接。

命令如下:

apt-get install postgresql libpq-dev    sudo su postgres -c psql ALTER USER postgres WITH PASSWORD ‘your password’;
\q
sudo passwd -d postgres    sudo su postgres -c passwd
gem install pg msfconsole  db_driver postgresql  db_connect postgres:”postgresql password”@127.0.0.1/Metasploit
原文链接:https://www.f2er.com/postgresql/196879.html

猜你在找的Postgre SQL相关文章