Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are two ways of fixing this.

Manually Adding Eclipse to

...

GateKeeper

Note
This

...

would be the preferred method but I have just figured this out and yet to

...

verify it works on a fresh machine.

By manually adding Eclipse, you can remove yourself in the future.

...

Code Block
languagebash
su - setup.admin # My normal Mac User does not have sudo privileges, yours might.
cd ~/apps/
sudo spctl --master-disable

Then the error message turns to,

Panel
“Eclipse.app” is an application downloaded from the Internet. Are you sure you want to open it?

Click "open". This will add Eclipse into the registry and everything should start.

Then enable the protection again,

Code Block
languagebash
sudo spctl --master-enable

Now Eclipse will start properly.

When time permits, I will do a capture of the all registered items to see exactly what the fingerprint looks like and document the process here.

Clicking to Add to

...

GateKeeper

Open the mac terminal and type the following,

Code Block
languagebash
su - setup.admin # My normal Mac User does not have sudo privileges, yours might.
spctl --add --label "eclipse" Eclipse.app # Eclipse.app is the Eclipse package.

...

Look for the entry,

Code Block
languagebash
su - setup.admin # My normal Mac User does not have sudo privileges, yours might.
spctl --list | grep -i "eclipse"

You can remove by typing,

Code Block
languagebash
su - setup.admin # My normal Mac User does not have sudo privileges, yours might.
spctl --remove --label "eclipse" Eclipse.app # Eclipse.app is the Eclipse package.

Setup Tomcat

Similar to Eclipse, Tomcat also is also packaged without an installer. For windows we download the x86 .zip and for Linux or Unix download the .tar.gz file. Following the Bonsai Framework standards, decompress to the following folder,

...