आप उबंटू पर हैं और जाहिर है कि मार्टिन पिट का pg_wrapper
स्थापित (से जज pg_ctlcluster
) है जो पैकेज द्वारा प्रदान किया गया है postgresql-common
और मानक डेबियन पैकेज के साथ आता है। मैं डेबियन पर उसी का उपयोग करता हूं ।
लिनक्स सिस्टम पर, 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
वास्तव में एक सहिष्णुता है 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
विशिष्ट होने के लिए विकल्प जोड़ सकते हैं ।