feat: translate the site in french
This commit is contained in:
parent
3e98ac15b6
commit
b47b193b20
81 changed files with 1327 additions and 251 deletions
35
content/blog/002-build-pgpool-on-debian/index.en.md
Normal file
35
content/blog/002-build-pgpool-on-debian/index.en.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
title: Build the latest PgPool-II on Debian Etch
|
||||
date: "2010-12-14T00:00:00+01:00"
|
||||
slug: 2-build-pgpool-on-debian-etch
|
||||
categories: [DevOps]
|
||||
tags:
|
||||
- Debian
|
||||
- PgPool-II
|
||||
summary: >
|
||||
Building PgPool-II on Debian Etch and avoid the "libpq is not installed or
|
||||
libpq is old" error
|
||||
---
|
||||
|
||||
After having build PgPool-II on Red Hat Enterprise Linux 5.5 without any
|
||||
problem, I tried to build it on a fresh Debian Etch. The catch is that I did
|
||||
not want to install PostgreSQL 9.0, but just extract it from the binary
|
||||
packages provided by Entreprisedb (with option `--extract-only 1`).
|
||||
|
||||
Whatever options I passed to `./configure`, it resulted in the same error:
|
||||
|
||||
{{< highlight text >}}
|
||||
checking for PQexecPrepared in -lpq... no
|
||||
configure: error: libpq is not installed or libpq is old
|
||||
{{< /highlight >}}
|
||||
|
||||
Here is the answer: the binary package contains the libpq with the name
|
||||
`libcrypto.so.0.9.8` (the RHEL name) when pgpool is looking `libcrypto.so.6`
|
||||
on Debian. The same applies to `libssl`. So a simple
|
||||
|
||||
{{< highlight bash >}}
|
||||
ln -s libcrypto.so.0.9.8 libcrypto.so.0.9.8
|
||||
ln -s libssl.so.0.9.8 libssl.so.6
|
||||
{{< /highlight >}}
|
||||
|
||||
before your `./configure` will solve it!
|
Loading…
Add table
Add a link
Reference in a new issue