Question

Apps using "postgres" user instead of my_user in the database

My postgres databse keeps the value postgres for database name even when I create new db and new user. It seems that no matter what I do, I cannot alter it.facing the error I want to use my database name and user when i change the database name to “postgres” and username into “doadmin” application connecting to the database else showing this error on change the name of my db and user

apps@feedback-app-7-jx2mf:~$ rails db:migrate
 rails aborted!
 ActiveRecord::StatementInvalid: PG:: Insufficient Privilege: ERROR: permission denied for table schema_migrations /workspace/bin/rails:5:in `<main>'
Caused by:
 PG:: InsufficientPrivilege: ERROR: permission denied for table schema_migrations
 /workspace/bin/rails:5:in `<main>'
 Tasks: TOP => db:migrate
 (See full trace by running task with --trace) apps@feedback-app-7-jx2mf:~$

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.

Accepted Answer

This help me in resolving this error

GRANT ALL PRIVILEGES ON DATABASE your_database to your_database_user; ALTER DATABASE your_database OWNER TO your_database_user;

Bobby Iliev
Site Moderator
Site Moderator badge
June 27, 2023

Hi there,

Once you’ve added your new database user, you would also need to add the required privileges so that the user would have access to your database in question.

With the DigitalOcean Managed database clusters, you can do that by following the steps from the documentation here:

https://docs.digitalocean.com/products/databases/postgresql/how-to/modify-user-privileges/

  • Connect to your managed cluster:
psql "postgresql://doadmin:your_password@cluster-do-user-1234567-0.db.ondigitalocean.com:25060/defaultdb?sslmode=require"
  • From here, connect to the database that you want to modify the user’s privileges on.
\connect example_database
  • Then grant the necessary privileges to your user on your database and its tables. Replace your_user with your user name:
GRANT ALL PRIVILEGES ON DATABASE your_database TO your_user;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO your_user;
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO your_user;

Let me know how it goes after that!

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

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

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel