没有可用的 pgadmin3 软件包

没有可用的 pgadmin3 软件包

我正在运行 CentOS 版本 6.7(最终版)

我正在尝试安装

sudo yum install pgadmin3

我不断得到

Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: linux.cc.lehigh.edu
 * extras: mirrors.lga7.us.voxel.net
 * updates: mirror.steadfast.net
base                                                                                          | 3.7 kB     00:00     
extras                                                                                        | 3.4 kB     00:00     
updates                                                                                       | 3.4 kB     00:00     
No package pgadmin3 available.
Error: Nothing to do

我也尝试过sudo yum update

再次运行sudo yum install pgadmin3- 仍然得到相同的结果! :(

任何提示/建议将不胜感激!

答案1

yum list pgadmin*在我的 CentOS 6.7(最终版本)中,我发现了以下内容:

Available Packages
pgadmin3.x86_64                             1.20.0-1.el6                  epel  
pgadmin3_91.x86_64                          1.20.0-3.rhel6                pgdg91
pgadmin3_91-debuginfo.x86_64                1.20.0-3.rhel6                pgdg91
pgadmin3_91-docs.x86_64                     1.20.0-3.rhel6                pgdg91

看来该包在epel存储库和pgdg91存储库中可用。你只需要添加其中一个即可

我将按如下方式进行:

# Adding pgdg repo
sudo rpm -Uvh http://yum.postgresql.org/9.1/redhat/rhel-6-i386/pgdg-centos91-9.1-4.noarch.rpm
# check if the package is now available
sudo yum list pgadmin*
# and in case it is, install it

答案2

首先你可以尝试这个:

sudo yum install pgadmin3_91

如果您想确保获得最新版本,可以转到此处下载最新的源代码版本,其文件扩展名为 .tar.gz:

http://www.postgresql.org/ftp/pgadmin3/release/

下载源代码后,使用以下命令安装 pgAdmin。在此示例中,我使用 pgadmin3-1.10.3.tar.gz,但将其替换为您选择的版本。然后:

mv pgadmin3-1.10.3.tar.gz /usr/local/src
cd /usr/local/src
tar –zxvf pgadmin3-1.10.3.tar.gz
cd pgadmin3-1.10.3
./configure
make
make install

pgAdmin 现在应该可以访问同一台计算机上运行的本地主机数据库服务器。为了配置您的服务器以允许远程用户使用 pgAdmin 访问数据库,我们必须修改 2 个配置文件。该网站将向您展示如何:

http://www.gistutor.com/postgresqlpostgis/6-advanced-postgresqlpostgis-tutorials/14-how-to-install-pgadmin-and-configure-postgresql-server-to-accept-remote-connections.html

相关内容