当前位置: 首页 > 工具软件 > hypopg > 使用案例 >

linux下postgresql源码安装虚拟索引扩展hypopg

华展鹏
2023-12-01
  1. 进入pg源码文件夹下cd /opt/module/postgresql-12.2/contrib/一定要在这装!!!
  2. 下载hypopggit clone git://github.com/HypoPG/hypopg
    如果没有git要先执行执行命令:
    wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
    rpm -ivh epel-release-latest-7.noarch.rpm
    yum install -y git
  3. 安装拓展包yum install postgresql-devel!!!
    否则make报错:
    make: pg_config: Command not found
    make: *** No targets.  Stop.
    
  4. 修改Makefile文件
    cd /opt/module/postgresql-12.2/
    vi Makefile
    PG_CONFIG=/opt/pgsql/bin/pg_config (具体路径根据不同环境自己设置)
  5. 进行编译
    cd /opt/module/postgresql-12.2/contrib/hypopg
    make&&make install
  6. 建立插件
    使用psql登录数据库后执行 CREATE EXTENSION hypopg;
    搭建完毕
 类似资料: