Re: "solr start -e techproducts" failing on MacOS

2025-05-21 Thread Rahul Goswami
Sanjay, Thanks for looking into this. I also tried disabling the security manager on MacOS by running "solr start -e techproducts -Djdk.security.manager=disallow" and still see the same behavior with the same stacktrace in log. -Rahul On Tue, May 20, 2025 at 11:55 PM sanjay dutt < sanjaydutt.unof

Re: "solr start -e techproducts" failing on MacOS

2025-05-21 Thread Kevin Risden
The underlying issue is that /tmp is a symlink on Mac. Java security manager permissions need the ability to read the symlink AND the underlying directory. Since we only have permission java.io.FilePermission "${java.io.tmpdir}", "read,write"; permission java.io.FilePermission "${java.io.tmpdir}${

Re: "solr start -e techproducts" failing on MacOS

2025-05-21 Thread Christos Malliaridis
I have faced the same issue recently. There is a configuration option in bin/solr.in.sh for the security manager: #SOLR_SECURITY_MANAGER_ENABLED=true Removing the comment and setting it to false worked for me. On Wed, 21 May 2025, 23:19 Rahul Goswami, wrote: > Sanjay, > Th

Re: "solr start -e techproducts" failing on MacOS

2025-05-21 Thread Rahul Goswami
That worked. Thanks Christos! On Wed, May 21, 2025 at 5:30 PM Christos Malliaridis wrote: > I have faced the same issue recently. > > There is a configuration option in bin/solr.in.sh for > the security manager: > > #SOLR_SECURITY_MANAGER_ENABLED=true > > Removing the comment