Authentication

CentOS 中的 libapache2-mod-auth-pgsql 和 ssl-cert 等效項

  • February 3, 2012

前段時間我把它從 Ubuntu 切換到了 CentOS。現在,我遇到了這個問題:

嘗試安裝我之前在 Ubuntu 中安裝的軟體時,我停在了需要安裝上述模組的位置:libapache2-mod-auth-pgsqlssl-cert. 誰能告訴我如何在 CentOS 中安裝它們,或者它們的一些等效庫?

謝謝!

對於第一個:

$ yum search mod_auth_pgsql
======================================================== N/S Matched: mod_auth_pgsql =========================================================
mod_auth_pgsql.i686 : Basic authentication for the Apache HTTP Server using a PostgreSQL database

ssl-cert軟體包是一個包裝 openssl 的 Debian shell 腳本,以使事情變得更容易,或者類似的東西。我不相信有一個等價物。另一方面,它只是一個 shell 腳本加上一些配置文件。您應該能夠抓住它,並且在最壞的情況下,弄清楚如何openssl使用正確的選項執行。

此外,如果您剛剛生成 SSL 證書以與 Postgres 一起使用,您可以查找有關使用openssl. 例如:

http://www.howtoforge.com/postgresql-ssl-certificates

引用自:https://serverfault.com/questions/356476