Skip to main content
11-Garnet
March 9, 2023
Solved

Error installing SolrServer 12.1

  • March 9, 2023
  • 2 replies
  • 1881 views

Installing SolrServer on a test\dev separate server, and getting the following error:

java.nio.file.FileSystemException: C:\Users\aaworourke\AppData\Local\Temp\2\PTCSOLNINSTALLER_PtcInstall.log: The process cannot access the file because it is being used by another process.

 

According to Task Manager, nothing is running connected to Solr. We are using Amazon Corretto 11 for our java environmental variables. Just curious if anyone else has seen this. Many thanks in advance!

Best answer by jbailey

Did that fix the issue?

2 replies

avillanueva
23-Emerald I
23-Emerald I
March 9, 2023

Was there a previous failed attempt at running the PSI installer that is remaining running?

borourke11-GarnetAuthor
11-Garnet
March 9, 2023

No, and I bounced the server to be sure.

jbailey
18-Opal
April 25, 2023

A little trick I use with SOLR specifically is to find the PID (Process ID by which one has locked up the port)

 

Netstat -a -o | find “8085”

Returns a line for that port, and use the PID returned in the next command

Taskkill /f /PID “pid from netstat”

 

 

borourke11-GarnetAuthor
11-Garnet
April 26, 2023

Many thanks!

jbailey
jbailey18-OpalAnswer
18-Opal
April 26, 2023

Did that fix the issue?