欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

msf postgres 数据库

程序员文章站 2022-07-14 11:04:05
...

系统: kali 2021
软件: msf6

启动数据库并建立

Yu @Coat ~ $ sudo su postgres           
#切换至postgres
postgres @Coat /home /Yu $ psql postgres 
#登入默认数据库

postgres= # \password postgres          
#给postgres用户设置密码
Enter new password:
Enter it again:
postgres= #

登入

┌──(root????kali)-[~/Desktop]
└─# psql -U postgres -h 127.0.0.1
Password for user postgres: 
psql (13.2 (Debian 13.2-1))
SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
Type "help" for help.

postgres=# 

msf postgres 数据库
msf创建数据库

create user msf with password 'admin' createdb;
create database msf with owner=msf;

msf连接数据库
msf postgres 数据库

msf:数据库名
admin:密码
@:固定格式
127.0.0.1:登录地址