I have set up an Amazon RDS Mysql instance and it is successful. I am trying to create some tables but I am getting this error:
#1290 - The MySQL server is running with the --read-only option so it cannot execute this statement
I have tried to set global to read-only = 0 but my user does not have privileges. I have tried googling for a solution to no avail. (I am pretty new to RDS)
Update I do not have a create read replica option on my actions

Jul 09, 2015. Read my comment where I mention a blog that shows you how to mess with read_only (http://dba.stackexchange.com/questions/106458/synchronizing-a-rds-instance-with-another-rds-instance/106461#106461) – RolandoMySQLDBA Oct 09 '16 at 06:46SELECT @@READ_ONLY;– Michael - sqlbot Oct 10 '16 at 10:22@@READ_ONLY ==> 0– Njuguna Mureithi Oct 10 '16 at 12:17Failovershould be grayed out on theInstance Actionsdrop-down list out if this is the master of a single-member (one master, zero replicas) Aurora cluster, since that action wouldn't be an option available to you (gray-out is what I see in the console for this option when viewing a single-member cluster's master). It isn't grayed out on your screen shot, which suggests that you have at least 2 members in the cluster and the one you're connected to and trying to execute this query on is in fact a replica (despite@@read_only= 0). Confirm? – Michael - sqlbot Oct 10 '16 at 14:59