Question

How To Deploy an Laravel with Postgresql as a Database on DigitalOcean Droplets?

Hi, i’m new at Digitalocean, and i want to deploying my laravel website with a postgresql as a database for my website, i have created a droplets, and search a tutorial. But i still confuse because there’s no tutorial to host a laravel and postgresql at a droplets from creating and then setting up a droplets until deployin a laravel website. Can anyone help me?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

KFSys
Site Moderator
Site Moderator badge
February 25, 2025

Heya,

check this article here :

https://www.digitalocean.com/blog/create-simple-contacts-laravel-postgresql

it should provide you with the needed steps to achieve this.

Bobby Iliev
Site Moderator
Site Moderator badge
February 25, 2025

Hi there,

You’ve got a straightforward path to get things running!

  1. Spin up the Laravel 1-Click Droplet:

  2. Stop and Disable MySQL (since you’re using PostgreSQL):

    • SSH into your Droplet and run:

      sudo systemctl stop mysql
      sudo systemctl disable mysql
      
    • This frees up resources and avoids conflicts.

  3. Install PostgreSQL:

  4. Install PHP Modules for PostgreSQL:

    • Make sure you have the necessary PHP extension:

      sudo apt install php-pgsql
      sudo systemctl restart php*-fpm nginx
      
  5. Run Laravel Migrations:

    • Deploy your code, then run:

      php artisan migrate
      
  6. (Optional but Recommended) Use Managed PostgreSQL:

Let me know if you have any questions.

- Bobby

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.