feat: translate the site in french

This commit is contained in:
Bruno Carlin 2025-06-20 02:33:45 +02:00
parent 3e98ac15b6
commit b47b193b20
Signed by: bcarlin
GPG key ID: 8E254EA0FFEB9B6D
81 changed files with 1327 additions and 251 deletions

View 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!

View file

@ -0,0 +1,35 @@
---
title: Compiler le dernier PgPool-II sur Debian Etch
slug: 2-compiler-pgpool-sur-debian-etch
date: "2010-12-14T00:00:00+01:00"
categories: [DevOps]
tags:
- Debian
- PgPool-II
summary: >
Compilation de PgPool-II sur RHEL 5.5 pour éviter l'erreur "libpq is not
installed or libpq is old"
---
Après avoir compilé PgPool-II sur Red Hat Enterprise Linux 5.5 sans aucun
problème, j'ai essayé de le compiler sur un nouveau Debian Etch. Seulement, je
ne voulais pas installer PostgreSQL 9.0, mais simplement l'extraire des
paquets binaires fournis par Entreprisedb (avec l'option `--extract-only 1`).
Quelles que soient les options que je passais à `./configure`, cela résultait en
la même erreur :
{{< highlight text >}}
checking for PQexecPrepared in -lpq... no
configure: error: libpq is not installed or libpq is old
{{< /highlight >}}
Voici la réponse : le paquet binaire contient la libpq avec le nom
`libcrypto.so.0.9.8` (le nom RHEL) lorsque pgpool recherche `libcrypto.so.6` sur
Debian. La même chose s'applique à `libssl`. Donc un 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 >}}
avant votre `./configure` résoudra le problème !