您好,登錄后才能下訂單哦!
這篇文章主要介紹了CentOS7服務器如何搭建OpenOffice,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
參考文檔鏈接:
https://www.openoffice.org/download/common/instructions.html
https://wiki.openoffice.org/wiki/Documentation/FAQ/Installation
http://zh-cn.libreoffice.org/get-help/install-howto/linux/
wget https://jaist.dl.sourceforge.net/project/openofficeorg.mirror/4.1.3/binaries/zh-CN/Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN.tar.gz tar -zxvf Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN.tar.gz mv zh-CN Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN // 解壓后文件夾為zh-CN,為了方便識別,進行重命名 cd Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN/RPMS rpm -Uvih *rpm
修改腳本文件
vim /etc/rc.d/rc.local
文件末尾增加以下腳本
/opt/openoffice4/program/soffice --accept="socket,host=127.0.0.1,port=8100;urp;StarOffice.ServiceManager" --headless --nofirststartwizard --nologo &
如該文件沒有執行權限,則給予執行權限
chmod +x /etc/rc.d/rc.local
以下是使用systemd的方式啟動,但會出現cpu占用率100%的情況,先做記錄,暫時不用。
創建啟動文件
vim /usr/lib/systemd/system/openoffice.service
[Unit] Description=OpenOffice service After=syslog.target [Service] Environment="JAVA_HOME=/opt/java/default" ExecStart=/opt/openoffice4/program/soffice --accept="socket,host=127.0.0.1,port=8100;urp;StarOffice.ServiceManager" --headless --nofirststartwizard --nologo Restart=always KillSignal=SIGQUIT Type=simple StandardError=syslog NotifyAccess=all User=tomcat [Install] WantedBy=multi-user.target
openoffice自啟動
systemctl daemon-reload systemctl enable openoffice systemctl start openoffice
也可以使用LibreOffice作為文檔轉換服務,但word轉html還是要OpenOffice效果好一些。
wget http://mirrors.ustc.edu.cn/tdf/libreoffice/stable/5.2.6/rpm/x86_64/LibreOffice_5.2.6_Linux_x86-64_rpm.tar.gz tar -zxvf LibreOffice_5.2.6_Linux_x86-64_rpm.tar.gz cd LibreOffice_5.2.6.2_Linux_x86-64_rpm/RPMS yum install *.rpm # 如需卸載,使用以下命令 yum remove libreoffice*
如果使用libreoffice,則啟動參數為:
ExecStart=/usr/bin/soffice --accept="socket,host=127.0.0.1,port=8100;urp;StarOffice.ServiceManager" --headless --nofirststartwizard --nologo --nodefault --nocrashreport --nolockcheck # 或 ExecStart=/usr/bin/soffice --accept="socket,host=localhost,port=8100;urp;StarOffice.ServiceManager" --headless --nofirststartwizard --nologo --nodefault --nocrashreport --nolockcheck --norestore # 或 ExecStart=/opt/libreoffice5.2/program/soffice --accept="socket,host=127.0.0.1,port=8100;urp;StarOffice.ServiceManager" --headless --nofirststartwizard --nologo --nodefault --nocrashreport --nolockcheck
感謝你能夠認真閱讀完這篇文章,希望小編分享的“CentOS7服務器如何搭建OpenOffice”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。