I am trying to convert docx to pdf using unoconv
, but getting Error: Unable to connect or start own listener. Aborting.
when I run unoconv -f pdf 1234.docx
.
So, there must be some listener. I then started the listener via unoconv --listener
.
I tried ps aux | grep soffice
, and found soffice.bin.
So I tried unoconv -f pdf 1234.docx
again. It still gave me the same error: Error: Unable to connect or start own listener. Aborting.
What am I doing wrong here?
sudo pkill -f 'soffice.bin'
– Married