溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

CentOS7服務(wù)器如何搭建OpenOffice

發(fā)布時(shí)間:2022-01-19 15:50:08 來(lái)源:億速云 閱讀:327 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了CentOS7服務(wù)器如何搭建OpenOffice,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

參考文檔鏈接:

  • 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,為了方便識(shí)別,進(jìn)行重命名
cd Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN/RPMS
rpm -Uvih *rpm

自啟動(dòng)

修改腳本文件

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 &

如該文件沒(méi)有執(zhí)行權(quán)限,則給予執(zhí)行權(quán)限

chmod +x /etc/rc.d/rc.local

以下是使用systemd的方式啟動(dòng),但會(huì)出現(xiàn)cpu占用率100%的情況,先做記錄,暫時(shí)不用。

創(chuàng)建啟動(dòng)文件

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自啟動(dòng)

systemctl daemon-reload
systemctl enable openoffice
systemctl start openoffice

LibreOffice

也可以使用LibreOffice作為文檔轉(zhuǎn)換服務(wù),但word轉(zhuǎn)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,則啟動(dòng)參數(shù)為:

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

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“CentOS7服務(wù)器如何搭建OpenOffice”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI