- Newest
- Most votes
- Most comments
To fix your RDS read replica that's stuck in an "incompatible-network" state, you should try using the start-db-instance command via the AWS CLI. This is the recommended approach for resolving this specific issue.
Here's how to fix it:
- Open the AWS Management Console and navigate to the RDS section
- Select the affected database from the Databases list
- Note down the DB instance identifier, VPC ID, and subnet IDs from the Connectivity & Security tab
- Use the AWS CLI to run the following command:
aws rds start-db-instance --db-instance-identifier your-instance-identifier
If successful, your database status should change from "incompatible-network" to "Available."
Be aware that if the database restarts, it might execute the last operation that was running before it entered the incompatible-network state. This could potentially cause the instance to return to the incompatible-network state if that operation was the cause of the issue.
If this approach doesn't work, you may need to contact AWS Support for further assistance, as they might need to help you override the deletion protection or resolve the underlying network configuration issue that's preventing normal operations.
Sources
Troubleshooting for Amazon RDS - Amazon Relational Database Service
Resolving identifiable vacuum blockers in RDS for PostgreSQL - Amazon Relational Database Service
Resolving identifiable vacuum blockers in Aurora PostgreSQL - Amazon Aurora
You need to open a support ticket with AWS and request one of the following:
a) Force delete the stuck read replica from backend (regardless of its state or deletion protection). b )Remove the “incompatible-network” status manually from their side to allow operations again.
OR
What You Can Do Check if deletion protection is ON:
If yes, and modify-db-instance fails with InvalidDBInstanceState, you cannot disable it via CLI.
This confirms the instance is essentially “locked” in an unrecoverable state from the customer side.
Promote the read replica?
Not possible: AWS won’t allow promoting a replica in incompatible-network.
Force delete with CLI?
No. even with --skip-final-snapshot, it fails due to instance state.
Start/Stop workaround?
Not allowed for read replicas, confirmed by your error.
Hello.
Have you tried the troubleshooting steps in the following document?
The fix is described in the AWSSupport-ValidateRdsNetworkConfiguration runbook.
https://repost.aws/knowledge-center/rds-incompatible-network
Relevant content
- asked 7 years ago

The problem persists:
aws rds start-db-instance --db-instance-identifier db-amaru-suite-develop-replica
An error occurred (InvalidDBInstanceState) while calling the StartDBInstance operation: A read replica target instance cannot be stopped or started.
This indicates an error on the part of AWS.