AlmaLinuxにPostgreSQLをインストールしています。
cat /etc/almalinux-release
AlmaLinux release 9.4 (Seafoam Ocelot)
psql --version
psql (PostgreSQL) 13.16
ここに、SQLServer用FDWの設定を行おうとしています。
下記のURLを参考にして
https://nakamurake-site.com/archives/how-to-use-fdw-with-postgresql/
3-2、SQLServer用FDWの設定
8、SqlServer用FDWのソースコードをダウンロード
cd /tmp
git clone https://github.com/tds-fdw/tds_fdw.git
cd tds_fdw
9、FDWインストール
make USE_PGXS=1 PG_CONFIG=/usr/pgsql-12/bin/pg_config
make USE_PGXS=1 PG_CONFIG=/usr/pgsql-12/bin/pg_config install
ここで下記のエラーになります
make: /usr/pgsql-12/bin/pg_config: そのようなファイルやディレクトリはありません
make: 'all' に対して行うべき事はありません.
バージョン13なのでpgsql-12は、pgsql-13にするなど対応が必要ですが、それ以前に/usr/pgsql-??/bin/pg_configがみつかりません。
cd /usr
ls -l
合計 240
dr-xr-xr-x. 2 root root 49152 9月 4 14:29 bin
drwxr-xr-x. 2 root root 6 3月 25 2022 games
drwxr-xr-x. 40 root root 8192 9月 4 14:29 include
dr-xr-xr-x. 43 root root 4096 9月 4 14:28 lib
dr-xr-xr-x. 123 root root 65536 9月 4 14:29 lib64
drwxr-xr-x. 49 root root 8192 9月 4 14:29 libexec
drwxr-xr-x. 12 root root 131 7月 26 17:52 local
dr-xr-xr-x. 2 root root 16384 9月 4 13:32 sbin
drwxr-xr-x. 229 root root 8192 9月 4 14:29 share
drwxr-xr-x. 5 root root 49 9月 4 14:28 src
lrwxrwxrwx. 1 root root 10 3月 25 2022 tmp -> ../var/tmp
find / -name pg_config
pg_configはどこにありますか?
回答1件
あなたの回答
tips
プレビュー