skip to Main Content

I read the documentation of Apache Age but I could not find how to install it on Windows 10.
Any idea how to use Rgb tables with apache extension.

Any articles or tutorials related to the installation will be quite helpful.

2

Answers


  1. It isnt yet supported for Windows 10. If you dont want to run Linux you can alternative run with docker according to the latest apacheAGE documentation:

    docker pull apache/age
    docker run 
        --name age  
        -p 5455:5432 
        -e POSTGRES_USER=postgresUser 
        -e POSTGRES_PASSWORD=postgresPW 
        -e POSTGRES_DB=postgresDB 
        -d 
        apache/age
    
    Login or Signup to reply.
  2. Its not supported directly on windows. Instead you need to proceed via docker or wsl.

    I would personally recommend via WSL. Here is how to configure WSL.

    Here is step by step guide for installation via WSL.

    Basic steps are:

    1-Go to PG directory & then execute following commands are:

    ./configure --enable-debug --enable-cassert --prefix=$(pwd) CFLAGS="-ggdb -Og -fno-omit-frame-pointer"
    
    make install
    

    2-Now, change to AGE directory and execute following commands:

    sudo make PG_CONFIG=/home/imran/age_installation/pg/postgresql-11.18/bin/pg_config install
    
    make PG_CONFIG=/home/imran/age_installation/pg/postgresql-11.18/bin/pg_config installcheck
    

    *Above commands are referenced from this blog.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search