arun
October 25, 2024, 6:16pm
1
Hai guys .I tried to load moqui after downloaded opensearch using
./gradlew downloadOpenSearch
its shows pid file not found.
running opensearch in separate service is working fine after i adding http to https and opensearch dashboard username and password in moqui default conf file.also indexing is working perfectly.
but i dont know above error pid file not found…please help me guys @michael
a pid file is used by a process in unix to store information about a process in case of shutdown and process communication.
First thing I’d do is restart your computer to see if that will fix it
Second thing I’d do is completely uninstall java from your computer.
Third thing I’d try doing is stopping all java processes.
You can find java processes by running:
ps -C java
I get this when running moqui:
PID TTY TIME CMD
407875 ? 00:00:23 java
408101 pts/1 00:00:21 java
408130 pts/1 00:00:19 java
You can then kill each process with this command:
kill -15 <PID>
Then use the previous command to check if any processes are still running, and retry the command.
If none of those work let me know