Всем добрый день. Подскажите пожалуйста, такой вот вопрос. Есть Редос сервер упрощенный 7.3.4, на нем настроен postgresql 16, настраивался вот по этой статье: https://redos.red-soft.ru/base/server-configuring/dbms/install-postgresql/ все заработал и все ок. Но возникла необходимость прикрутить PostGIS. Пытался возпользоваться этим методом:
Install EPEL repo RPM:
dnf -y install epel-release
Enable PowerTools repo (required for some of the dependencies):
dnf -y config-manager –set-enabled PowerTools
you might need to do this instead for the Rockys
dnf config-manager –enable crb
for Rocky 8 and above might need to do this as well
crb enable
Now, you can finally install PostGIS
Select the right PostGIS and PostgreSQL versions
dnf -y install postgis34_16
systemctl restart postgresql-16
НО уже на первом этапе выхватывается: Нет соответствия аргументу: epel-release Ошибка: Совпадений не найдено: epel-release
Потом скачал от сюда: https://pkgs.org/download/postgis вот это postgresql16-postgis-3.4.2-1.2.x86_64.rpm, но выдает: Ошибка: Проблема: противоречивые запросы
- nothing provides update-alternatives needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libc.so.6(GLIBC_2.32)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libc.so.6(GLIBC_2.34)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libc.so.6(GLIBC_2.38)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libjson-c.so.5(JSONC_0.14)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libm.so.6(GLIBC_2.29)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libm.so.6(GLIBC_2.35)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libproj.so.25()(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline - nothing provides libstdc++.so.6(GLIBCXX_3.4.32)(64bit) needed by postgresql16-postgis-3.4.2-1.2.x86_64 from
@commandline
Потом тут https://repo1.red-soft.ru/redos/7.3/x86_64/extras/postgresql14-73/ нашлось postgis-pgsql14-3.2.1-7.el7.x86_64.rpm оно вроде как установилось, но если выполнить в PGAdmin CREATE EXTENSION postgis, то выдает: ERROR: Не удалось открыть управляющий файл расширения «/usr/pgsql-16/share/extension/postgis.control»: No such file or directory.расширение «postgis» отсутствует
ОШИБКА: расширение «postgis» отсутствует SQL state: 0A000 Detail: Не удалось открыть управляющий файл расширения «/usr/pgsql-16/share/extension/postgis.control»: No such file or directory. Hint: Сначала расширение нужно установить в системе, где работает PostgreSQL.
от сюда вопрос. как все таки PostGIS прикрутить что бы работало?