Skip to main content

Eclipse AWS Toolkit error Missing requirement: IdentityManagement

Error when installing Eclipse AWS Toolkit:

Cannot complete the install because one or more required items could not be found.
Software currently installed: AWS Toolkit for Eclipse Core 2.0.1.v201305021159 (com.amazonaws.eclipse.core.feature.feature.group 2.0.1.v201305021159)
Missing requirement: IdentityManagement 1.0.0.v201305021159 (com.amazonaws.eclipse.identitymanagement 1.0.0.v201305021159) requires 'bundle com.amazonaws.eclipse.ec2 1.1.0' but it could not be found
Cannot satisfy dependency:
From: AWS Toolkit for Eclipse Core 2.0.1.v201305021159 (com.amazonaws.eclipse.core.feature.feature.group 2.0.1.v201305021159)
To: com.amazonaws.eclipse.identitymanagement [1.0.0.v201305021159]
Resolution: Install EC2 Management first to get IdentityManagement.

Comments

Anonymous said…
thanks solved my problem!
Anonymous said…
Thank you for your help too. It solve this problem.
Unknown said…
good. this solved aws' weird error.
Life-saver. Thanks! (Sad that this is still no poorly undocumented and handled by AWS)

Popular posts from this blog

ld: unrecognized option '--hash-style=both'

gcc -Wl,-Map=contiki.map,-export-dynamic testv6.co obj_linux-native/socketdev_listener.o \ contiki-linux-native.a -o testv6.linux-native /usr/local/bin/ld: unrecognized option '--hash-style=both' /usr/local/bin/ld: use the --help option for usage information collect2: ld returned 1 exit status If you look closely, the error is something related to the local gcc not using the host's linker (ld). $ which gcc /usr/bin/gcc $ which ld /usr/local/bin/ld For some reason, I messed my compiler path. To synchronized gcc to use the host's dynamic linker (i.e. /usr/bin/ld ), set the environment variable COMPILER_PATH to /usr/bin . $ export COMPILER_PATH=/usr/bin $ echo $COMPILER_PATH /usr/bin $ gcc -print-prog-name=ld /usr/bin/ld

Ebay scammer

+639056538210 09056538210 Gene Paminiano Claiming to be his wife: Ramona Carmen Paminiano City States savings account# 011-22-001124-3 TIP: Do not push with the transaction without hearing the seller/buyer's voice on the phone. Record the conversation for publicity purposes.

Zenoss: monitor free VMWare ESXi version

We confirmed that the free ESXi version does not allow SNMP gets, only traps. The original script was taken from here: http://communities.vmware.com/docs/DOC-7170 Modified script: http://mirakulo.com/pub/esxi/check_esx_wbmem.py We added Fan and power supply, hinted from this page: http://www.stephenjc.com/2009/01/whatsup-vmware-esxi-monitor-these.html Use this guide to add the Data source: http://www.zenoss.com/community/docs/howtos/create-modify-nagios-templates Added as template under: /Devices /Server /VMWare /ESXi /Templates /esxi-monitor /check_esx_wbmem Name: check_esx_wbmem Source Type: Command Enable true Use SSH false Component: blank Event class: /VMWare/ESXi Severity: Error Cycle time: 60 Parser: auto Command template: /usr/local/zenoss/python/bin/python /opt/zenoss/libexec/check_esx_wbmem.py https://${dev/manageIp}:5989 root passwd To bind this template to ESXi nodes, go to the device: Example: /Devices /Server /VMWare /ESXi /esxi-01.prod.corp.org then to its temp...