DEV Community

Dendi Handian
Dendi Handian

Posted on • Updated on

 

Adding PostgreSQL to Laragon

Downloading The PostgreSQL Binary

You can find any version you want to install at enterprisedb.com/download-postgresql-binaries and make sure it support your windows machine.

Extract and Move The Binary to Laragon Directory

Let's say I have downloaded the postgresql-12.10-1-windows-x64-binaries.zip. Extract it and it contains a single folder named pgsql. Move this pgsql folder into C:\laragon\bin\postgresql (You may have to create the postgresql folder first) and then rename it into the corresponding version you have downloaded or simply just name it after the downloaded zip name.

postgresql laragon directory

Starting The PostgreSQL Server

Restart the Laragon and now the PostgreSQL menu should be available and you could start it right away.

postgresql laragon menu

PHP and Laravel Setup

If you are using PHP or Laravel, then make sure to enable the pdo_pgsql extension.

Image description

and the laravel environment for postgres database as default:

DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=postgres
DB_USERNAME=postgres
DB_PASSWORD=root
Enter fullscreen mode Exit fullscreen mode

Managing using PgAdmin

PgAdmin is also available for you to manage a PostgreSQL database, just like you use PhpMyAdmin for MySQL. Make sure postgresql run first and click on "PgAdmin" menu to start.

Enter "root" for the admin password when prompted to login.

You need to create a connection to the postgresql in the laragon, so here is the setup as example:

Image description

Image description

After you save it, it should connect the pgadmin to the postgresql server and you can start to create a database.

Image description

Managing using Adminer

If you're using Laragon full installation, adminer could also works for you. Adminer could manage different types of rdbms like MySQL, SQLite, and PostgreSQL, and some other type of databases as well like Oracle, MS SQL, Mongodb, Elasticsearch but they still in development phase.

Make sure your laragon apache is started and just go to http://localhost/adminer/.

Top comments (5)

Collapse
 
fabiann profile image
Fabian Lopez

Hello, how to add pgadmin in Laragon?

Collapse
 
dendihandian profile image
Dendi Handian

pgadmin should be available in the postgresql binary for windows (see the first picture above. there is pgadmin 4 folder) or maybe recent version doesn't include the pgadmin?

Collapse
 
ahmedmalmoselhy profile image
Ahmed Hani

There's a problem with the binaries, the 2 most recent versions of postgresql on the site don't extract well and I can't continue with the guide

Collapse
 
dendihandian profile image
Dendi Handian

Try version 12.x then

Collapse
 
ahmedmalmoselhy profile image
Ahmed Hani

The problem was in windows extracting the .zip file, it worked fine using 7-zip

The Complete Guide to Full Stack Web3 Development

The most important tools, protocols, and frameworks for building full stack web3 apps, and most importantly - how to put everything together to lay the groundwork for building out any of your own ideas in the future.