PostgreSQL安装 - 加载模块时出错

时间:2011-12-16 02:05:41

标签: postgresql windows-xp installation postgis

我还没能在我们的虚拟服务器上正确地重新安装PostgreSQL + PostGIS 安装PostgreSQL时,会发生以下错误:

  

"加载数据库模块时发生非致命错误。请查看C:... \ Temp中的安装日志以获取详细信息。"

以下是日志所说的内容:

Loading additional SQL modules...
Executing cscript //NoLogo "C:\Programme\PostgreSQL\9.0\installer\server\loadmodules.vbs" "postgres" "****" "C:\Programme\PostgreSQL\9.0" "C:\Programme\PostgreSQL\9.0\data" 5432
Script exit code: 2

Script output:
 Installing the adminpack module in the postgres database...
Executing 'C:\DOKUME~1\Kiesow\LOKALE~1\Temp\rad3C00F.bat'...
Couldn't find the output file...
Failed to install the 'adminpack' module in the 'postgres' database
loadmodules.vbs ran to completion

Script stderr:
 Program ended with an error exit code

Error running cscript //NoLogo "C:\Programme\PostgreSQL\9.0\installer\server\loadmodules.vbs" "postgres" "****" "C:\Programme\PostgreSQL\9.0" "C:\Programme\PostgreSQL\9.0\data" 5432 : Program ended with an error exit code

安装完成后,我可以启动pgAdmin,登录并创建新数据库。在我尝试使用堆栈构建器向导添加PostGIS之前,一切都很好。在以下情况下,安装几乎完成了:

  

"数据库创建失败。"   "您要查看错误日志" " create_templatepostgis_db_error.txt'"

此错误日志不存在。我可能会忽略错误并手动创建模板db,这有效。但是我不能使用像几何体那样的类型,所以我认为,PostGIS尚不可用

也许你们中的任何人都知道我可能做错了什么?任何提示?任何人都可以帮我解释错误日志吗?

我使用Windows XP,PostgreSQL 9.0 32位(与8.4相同),PostGIS 1.5 Postgres 8.3 + PostGIS早先安装在这个系统上,但是我卸载了,删除了数据目录并让安装向导创建了一个新的posgres windows用户。
也做了一些重新启动。
我确实在Postgres安装中选择了一个语言环境而不是[默认语言环境]

这是我怀疑的日志的另一部分。一开始就是对的。也许这会有所帮助:

Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Data Directory. Setting variable iDataDirectory to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Base Directory. Setting variable iBaseDirectory to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Service ID. Setting variable iServiceName to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Service Account. Setting variable iServiceAccount to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Super User. Setting variable iSuperuser to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Branding. Setting variable iBranding to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Version. Setting variable brandingVer to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 Shortcuts. Setting variable iShortcut to empty value
Could not find registry key HKEY_LOCAL_MACHINE\SOFTWARE\PostgreSQL\Installations\postgresql-9.0 DisableStackBuilder. Setting variable iDisableStackBuilder to empty value
[15:44:31] Existing base directory: 
[15:44:31] Existing data directory: 
[15:44:31] Using branding: PostgreSQL 9.0
[15:44:31] Using Super User: postgres and Service Account: postgres
[15:44:31] Using Service Name: postgresql-9.0
Executing cscript //NoLogo "C:\Dokumente und Einstellungen\Kiesow\Lokale Einstellungen\Temp\prerun_checks.vbs"
Script exit code: 0

Script output:
 The scripting host appears to be functional.

Script stderr:

Executing cscript //NoLogo "C:\Dokumente und Einstellungen\Kiesow\Lokale Einstellungen\Temp\postgresql_installer\installruntimes.vbs" "C:\Dokumente und Einstellungen\Kiesow\Lokale Einstellungen\Temp\postgresql_installer\vcredist_x86.exe"
Script exit code: 3010

Script output:
 Executing the runtime installer: C:\Dokumente und Einstellungen\Kiesow\Lokale Einstellungen\Temp\postgresql_installer\vcredist_x86.exe
The runtime package exited with error code: 3010

3 个答案:

答案 0 :(得分:2)

在命令提示符下,运行以下命令:

C:\Programme\PostgreSQL\9.0\bin\psql.exe -p 5432 -U postgres -W -f C:\Programme\PostgreSQL\9.0\share\contrib\adminpack.sql postgres

其输出可能更具信息性。顺便说一句,运行以上是.vbs正在做的所有事情。

答案 1 :(得分:0)

提示此错误消息的原因是由于localhost指向其他某台计算机。

答案 2 :(得分:0)

禁用防火墙和防病毒软件并尝试重新安装。

相关问题