Metasploit4.2pro MSF连接postgresql编码错误问题

前端之家收集整理的这篇文章主要介绍了Metasploit4.2pro MSF连接postgresql编码错误问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_404_0@对于编码不一致的错误

@H_404_0@msf > db_connect postgres:toor@127.0.0.1:7337/msf4

@H_404_0@[-] Error while running command db_connect: Failed to connect to the database: PGError: ERROR: new encoding (UTF8) is incompatible with the encoding of the template database (sql_ASCII)

@H_404_0@HINT: Use the same encoding as in the template database,or use template0 as template.

@H_404_0@: CREATE DATABASE "msf4" ENCODING = 'utf8'


@H_404_0@切换到Postgresql安装目录/bin/下

@H_404_0@createdb mydb -E UTF8 -T template0

@H_404_0@mydb为你想创建的数据库名称

@H_404_0@然后在MSF里执行:db_connect postgresql:toor@127.0.0.1:7337/mydb 就OK了

原文链接:https://www.f2er.com/postgresql/196714.html

猜你在找的Postgre SQL相关文章