Skip to Main Content

Java HotSpot Virtual Machine

Announcement

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.

Java Mission Control for Eclipse

HelderSousaSep 17 2013 — edited Sep 19 2013

Hi,

I'm trying to install the Java Mission Control in the latest Eclipse version (Kepler). I found this eclipse update site http://download.oracle.com/technology/products/missioncontrol/updatesites/base/5.2.0/eclipse/ but when I try to install I get this error in eclipse:

Cannot complete the install because one or more required items could not be found.  

  Software being installed: Oracle Java Mission Control IDE Integration 5.2.0.157284 (com.jrockit.mc.feature.ide.feature.group 5.2.0.157284)

  Missing requirement: Mission Control Documentation 5.2.0.157284 (com.jrockit.mc.docs 5.2.0.157284) requires 'bundle org.eclipse.help.ui [3.5.0,4.0.0)' but it could not be found  

  Cannot satisfy dependency: 

    From: Browser Attach Plug-in 5.2.0.157284 (com.jrockit.mc.browser.attach 5.2.0.157284)

    To: bundle com.jrockit.mc.docs 5.2.0

   Cannot satisfy dependency:

     From: Oracle Java Mission Control Console 5.2.0.157284 (com.jrockit.mc.feature.console.feature.group 5.2.0.157284)

     To: com.jrockit.mc.feature.core.feature.group [5.2.0,5.3.0)

   Cannot satisfy dependency:

     From: Oracle Java Mission Control Core 5.2.0.157284 (com.jrockit.mc.feature.core.feature.group 5.2.0.157284)

     To: com.jrockit.mc.browser.attach [5.2.0.157284]

   Cannot satisfy dependency:

     From: Oracle Java Mission Control IDE Integration 5.2.0.157284 (com.jrockit.mc.feature.ide.feature.group 5.2.0.157284)

     To: com.jrockit.mc.feature.console.feature.group [5.2.0.157284]

Any ideas? Is the version 5.2.0 prepared for Eclipse Kepler? Is there a new version for Eclipse Kepler?

Thank you for your help.

Helder

This post has been answered by Klara Ward Java Mission Control Dev-Oracle on Sep 19 2013
Jump to Answer

Comments

BalazsT

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.

Alexandre Almeida

Hi there,

Could you share all the config/option files? (my.cnf)

1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 17 2013
Added on Sep 17 2013
3 comments
4,123 views