Facing Permission related issues in MacBook pro with Big Sur 11.4

Viewed 14598

Whenever I'm trying to open Eclipse or SpringToolSuite 4, I'm getting the same permission related issues It was working fine a day before yesterday but now It's showing weird stuff.

You do not have permission to open the application “SpringToolSuite4”.

You do not have permission to open the application “Eclipse”.

If anyone has any solutions please share

4 Answers

The application has to be signed again

for Spring Tool Suite :

codesign --force --deep --sign - /Applications/SpringToolSuite4.app

for Eclipse :

codesign --force --deep --sign - /Applications/Eclipse.app

Synatx for signing application:

codesign --force --deep --sign - /Applications/{app-name}.app

As I faced, that re-installation only works for a couple of days, I was really happy about the the codesign statement, which also works for Eclipse.App itself:

codesign --force --deep --sign - /Applications/Eclipse.app

no need to reinstall eclipse!!

  1. install eclipse and plugins all u needed

  2. if restart eclipse or restart mac, shows "You do not have permission to open the application",then mount the eclipse-xxx/springtoolsuit-xxx.dmg, show package(xx.app) contents, copy the “Info.plist”, Replace the file with the same name in your local eclipse. the eclipse will work again! even restart computer!!

Try this : codesign --force --deep --sign - /Applications/SpringToolSuite4.app

Related