For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
Hi All,
What are the new features and bus fixes in this release ?
It would be helpful if any document for the bugs fixed and new features.
Hi,
I have the same issue but only when I try to add an instance to my existing cluster, I have already an SR open with Oracle let's see what they reply.
If you have access to the Oracle Support site you will be able find a document how to setup an InnoDB Cluster from scratch.
Basically you can create 3 empty databases, make sure that no transactions are running or logged:
SET sql_log_bin = OFF;
CREATE USER clusteradmin@'%' IDENTIFIED BY 'xxx';
GRANT ALL PRIVILEGES ON mysql_innodb_cluster_metadata.* TO clusteradmin@'%' WITH GRANT OPTION;
GRANT SELECT, RELOAD, SHUTDOWN, PROCESS, FILE, SUPER, REPLICATION SLAVE, REPLICATION CLIENT, CREATE USER ON *.* TO clusteradmin@'%' WITH GRANT OPTION;
GRANT INSERT, UPDATE, DELETE ON mysql.* TO clusteradmin@'%' WITH GRANT OPTION;
SET sql_log_bin = ON;
RESET MASTER;
SELECT @@global.gtid_executed; --this must return no rows
Then you can use mysqlsh to setup the cluster.
Hi there,
Could you share all the config/option files? (my.cnf)