คุณอยู่บน Ubuntu และเห็นได้ชัดว่ามีการpg_wrapper
ติดตั้งของ Martin Pitt (ตัดสินจากpg_ctlcluster
) ที่ให้บริการโดยแพคเกจpostgresql-common
และมาพร้อมกับแพ็คเกจ Debian มาตรฐาน ผมใช้เหมือนกันใน Debian
บนระบบ Linux ให้รันwhich
ในเชลล์เพื่อดูว่าไฟล์ใดที่ถูกเลือกได้:
postgres@db:~$ which pg_dump
/usr/bin/pg_dump
postgres@db:~$ ls -l /usr/bin/pg_dump
lrwxrwxrwx 1 root root 37 4. Jun 18:57 /usr/bin/pg_dump -> ../share/postgresql-common/pg_wrapper
pg_dump
เป็น symlink ไปpg_wrapper
ซึ่งจะเลือกเวอร์ชันที่เหมาะสมของโปรแกรมไคลเอ็นต์สำหรับคลัสเตอร์ db ที่คุณรันpg_dump
ด้วย ฉันพูดถึงหน้าคนของpg_wrapper
:
โปรแกรมนี้ทำงานเป็นลิงค์ไปยังชื่อที่ตรงกับโปรแกรม PostgreSQL ใน / usr / lib / postgresql / version / bin จะกำหนดคลัสเตอร์และฐานข้อมูลที่กำหนดค่าไว้สำหรับผู้ใช้และเรียกใช้เวอร์ชันที่เหมาะสมของโปรแกรมที่ต้องการเพื่อเชื่อมต่อกับคลัสเตอร์และฐานข้อมูลนั้นโดยจัดหาตัวเลือกที่ระบุให้กับคำสั่งนั้น
The target cluster is selected by the following means, in descending order of precedence:
1. explicit specification with the --cluster option
2. explicit specification with the PGCLUSTER environment variable
3. matching entry in ~/.postgresqlrc (see postgresqlrc(5)), if that file exists
4. matching entry in /etc/postgresql-common/user_clusters (see user_clusters(5)), if that file exists
5. If only one local cluster exists, that one will be selected.
6. If several local clusters exist, the one listening on the default port 5432 will be selected.
If none of these rules match, pg_wrapper aborts with an error.
IOW ควรเลือกเวอร์ชั่นที่ถูกต้องโดยอัตโนมัติ - เว้นแต่คุณจะติดตั้งอย่างใดอย่างหนึ่ง คุณสามารถเพิ่มตัวเลือก--cluster
ให้เฉพาะเจาะจงได้ตลอดเวลา