I am trying the following to start OpenOffice headless service:
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;"
I have tried with double-dash --
instead of single -
and this command just hangs and the prompt never comes:
soffice --headless --accept="socket,host=127.0.0.1,port=8100;urp;"
I have installed openoffice by following this link and it seems to be installed correctly as checked through rpm -qa | less
which shows all the openoffice packages.
I have even tried removing it and installing again, which also completes without any error.
But the service is not getting started, I have checked through:
# netstat -tulpn | grep :8100
# netstat -tulpn
But I don't see any service listening on the port: 8100.
Can you let me know what am I doing wrong? I need this for integration with Liferay. Portal.
Environment: CentOS 6.2, 64-bit.
Thanks