温馨提示×

linux pgadmin怎么安装

小樊
81
2024-12-29 11:41:26
栏目: 智能运维

要在Linux上安装pgAdmin,请按照以下步骤操作:

  1. 打开终端(Terminal)。

  2. 首先,确保系统已安装了EPEL(Extra Packages for Enterprise Linux)和Remi存储库。这些存储库包含了许多常用的软件包,包括pgAdmin。运行以下命令安装它们:

    对于基于RHEL/CentOS的系统:

    sudo yum install epel-release
    sudo yum install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
    

    对于基于Debian的系统(如Ubuntu):

    sudo apt-get install software-properties-common
    sudo add-apt-repository https://rpms.remirepo.net/enterprise/remi-release-7.rpm
    
  3. 安装EPEL和Remi存储库后,接下来安装pgAdmin。对于基于RHEL/CentOS的系统:

    sudo yum-config-manager --enable remi-php74
    sudo yum install pgadmin4
    

    对于基于Debian的系统(如Ubuntu):

    sudo apt-get install php7.4-fpm
    sudo apt-get install pgadmin4
    

    请注意,上述命令中的php7.4-fpm可能需要根据您的系统版本进行调整。例如,如果您使用的是PHP 7.3,请使用php7.3-fpm

  4. 安装完成后,启动pgAdmin服务:

    sudo systemctl start pgadmin4
    
  5. 若要让pgAdmin在系统启动时自动运行,请执行以下命令:

    sudo systemctl enable pgadmin4
    
  6. 最后,打开浏览器并访问http://<your_server_IP>:80 或 http://localhost:80,然后使用默认的用户名“admin”和密码“admin”登录。

现在,您已经在Linux上成功安装了pgAdmin,并可以开始管理和监控PostgreSQL数据库了。

0