By tkvw
After creating the cluster I want to enable a supported extension
Using psql I check the available extensions:
SELECT * FROM pg_available_extensions order by name;
and see all the available extensions and that the installed version is null.
If I want to enable the extension using
create extension insert_username
I get the following error:
ERROR: permission denied to create extension "insert_username"
HINT: Must be superuser to create this extension.
SQL state: 42501
Creating a new user with superuser privileges doesn’t work, because doadmin isn’t a superuser, what to do?
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!
Hey there,
My name is Ethan from the DigitalOcean Platform Support team, I specialize in storage-related inquiries and am happy to help here.
Superusers can create extensions on any database, so the error points to being a superuser. However, you can also create extensions on databases that your user owns. DOAdmin by default will own Databases you create. You can check the current owner of your created databases with this SQL:
SELECT d.datname as "Database Name", pg_catalog.pg_get_userbyid(d.datdba) as "Owner" FROM pg_catalog.pg_database d ORDER BY 1;
Using the “doadmin” user should resolve this error allowing you to create the extension. Alternatively, you can force ownership changes with ALTER DATABASE[1] then use your custom user to CREATE EXTENSION.
Regards, Ethan | Captain of Storage Pillar, DigitalOcean Platform Support
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
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
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.