1 Answer
- Newest
- Most votes
- Most comments
1
Hi Sergey,
Please go through below steps it will help to resolve your issue.
Check IAM Role Permissions:
- Go to the AWS Management Console.
- Navigate to the IAM service.
- Select the IAM role associated with your Redshift workgroup.
- Ensure it has policies like AmazonRedshiftFullAccess or custom policies that include permissions for redshift-serverless:*.
Verify Redshift User Privileges:
- Connect to your Redshift cluster using any SQL client.
- Run the following SQL command to check the permissions of the admin user:
SELECT * FROM pg_user_info WHERE usename = 'your_admin_username';
- Ensure that the admin user has the necessary privileges.
Create Database via SQL Command: Instead of using the UI, try creating the database using an SQL command
CREATE DATABASE your_database_name;
- If this still results in a permissions error, it indicates that the admin user lacks the necessary permissions.
Check AWS Redshift Serverless Documentation:
Refer to the below official AWS documentation for Redshift Serverless to ensure there are no additional steps or configurations required for your setup. https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-serverless.html
Relevant content
- Accepted Answerasked 2 years ago
- asked 2 years ago
- Accepted Answerasked 7 months ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago