Webstorm keeps asking to accept incoming network connections on Mac OS X Yosemite.
Asked
Active
Viewed 470 times
2 Answers
1
I had to create my own certificate on Keychain Access then 'codesign' Webstorm via terminal.
- Open Keychain Access (Applications/Utilities)
- Keychain Access > Certificate Assistant > Create a Certificate
- Add 'your certificate name' > Identity Type 'Self Signed Root' > Certificate Type 'Code Signing'
Open Terminal
$ sudo codesign -s "your certificate name" -f /Applications/WebStorm.app/
Restart computer (not always)
- Open WebStorm.app
- Accept incoming network connections for the last time
The same process should work for any JetBrains IDE e.g. PhpStorm, PyCharm, etc.

Marco Ramires
- 1,116
- 1
- 10
- 19
0
Such errors usually indicate broken application signature. They may occur after changing info.plist or other files in WebStorm installation directory

lena
- 90,154
- 11
- 145
- 150
-
Thanks Lena. The error occurs on WS 10.0.4 installation on a brand new OS X Yosemite instance. I assume it must be a know issue but nothing major. I provided a work around fix that seems to work fine in all the machines across our team. Cheers – Marco Ramires Aug 21 '15 at 00:30