เกิดข้อผิดพลาดในการติดตั้ง postgres บน Windows 8


-2

ฉันใช้แล็ปท็อป Windows 8 เป็นเซิร์ฟเวอร์ dev ของฉัน

ฉันกำลังพยายามติดตั้ง postgres บนแล็ปท็อปของฉัน แต่ฉันได้รับข้อผิดพลาดต่อไปนี้:

ปัญหาในการรันขั้นตอนหลังการติดตั้ง การติดตั้งอาจไม่สมบูรณ์อย่างถูกต้อง การเริ่มต้นคลัสเตอร์ฐานข้อมูลล้มเหลว

นี่คือวิดีโอของความพยายามของฉัน (แก้ตัวคุณภาพแย่มากฉันไม่ได้ใช้ซอฟต์แวร์จับภาพหน้าจอมาก่อน):

http://youtu.be/LwhqCXiji8E

ไฟล์การติดตั้ง:

fixing permissions on existing directory C:/postgres/data ... ok
creating subdirectories ... ok
selecting default max_connections ... The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
10
selecting default shared_buffers ... The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
400kB
creating configuration files ... ok
creating template1 database in C:/postgres/data/base/1 ... The system cannot find the path specified.
child process exited with exit code 1
initdb: removing contents of data directory "C:/postgres/data"

Called Die(Failed to initialise the database cluster with initdb)...
Failed to initialise the database cluster with initdb

Script stderr:
 Program ended with an error exit code

Error running cscript //NoLogo "C:\postgres/installer/server/initcluster.vbs" "NT AUTHORITY\NetworkService" "postgres" "****" "C:\postgres" "C:\postgres\data" 5432 "DEFAULT" 0 : Program ended with an error exit code
Problem running post-install step. Installation may not complete correctly
 The database cluster initialisation failed.

ฉันจะบอกว่ามันไม่ได้อยู่นอกหัวข้อเพราะ dev จะทำหน้าแยงของฉันดังนั้นจึงจำเป็นต้องใช้งาน ประการที่สองใช่ ข้อความแสดงข้อผิดพลาดค่อนข้างชัดเจนและฉันแน่ใจว่ามีคนเห็นสิ่งนี้มาก่อน
Jeff

1
ไม่มันจะไม่สะท้อนระบบการผลิตของคุณ เป็นฮาร์ดแวร์และซอฟต์แวร์ที่แตกต่างกันเนื่องจาก Win8 ไม่ใช่เซิร์ฟเวอร์ OS และแล็ปท็อปไม่ใช่เซิร์ฟเวอร์
สเวน

ประการแรกคุณไม่รู้จักระบบการผลิตของฉัน ถ้าฉันต้องการให้ระบบ prod ของฉันเป็นแล็ปท็อป windows 8 นั่นคือธุรกิจของฉัน อาจจะเป็นสิ่งที่ใช้ windows server 2012 แตกต่างกัน แต่ใกล้พอที่จะทำบุญคำถาม ทั้งสองวิธีเสนอคำตอบหรือเสนอข้อเสนอแนะที่แท้จริงเพื่อปรับปรุงคำถาม
Jeff

1
If I want my prod system to be a windows 8 laptop, that's my business.ไม่เป็นไรถ้าเราต้องการจัดประเภทเซิร์ฟเวอร์ที่ใช้งานบนระบบปฏิบัติการไคลเอนต์เป็นนอกหัวข้อนั่นคือธุรกิจของเรา และเราทำ ดังนั้นนอกหัวข้อ
HopelessN00b

2
ตรวจสอบไฟล์บันทึกการติดตั้ง ...
Nathan C

คำตอบ:


0

จากhttp://www.windows-commandline.com/add-user-to-group-from-command-line/

Solution:
- Uninstall PostgreSQL
- net user postgres /delete
- Control Panel -> User Accounts -> Configure advanced user profile properties -> delete all "Unknown User" instances that seem to be left from postgres
- compmgmt.msc -> Local Users and Groups -> Users -> New User... -> User name: postgres, Password: postgrespass -> Create
- compmgmt.msc -> Local Users and Groups -> Users -> postgres -> Member of -> Add... -> Administrators -> OK
- copy postgresql-8.4.9-1-windows.exe to C:\
- runas /user:postgres cmd.exe -> cd \ -> postgresql-8.4.9-1-windows.exe -> installed successfully without errors. Checked data folder and confirmed files created successfully.
- compmgmt.msc -> Local Users and Groups -> Users -> postgres -> Member of -> Administrators -> Remove
- compmgmt.msc -> Local Users and Groups -> Users -> postgres -> Member of -> Add... -> Power Users -> OK
- Installed HM2 -> created db successfully
- Restarted computer -> HM2 runs properly (i.e. just to check postgresql service starts automatically)
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.