- 资源准备:
Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN.tar.gz
- 编译安装:
本人资源包放在 /opt/moudles 中, 解压后放在 /opt/softwares 中
解压openoffice包
[root@haotu369 opt]# tar -zxvf modules/Apache_OpenOffice_4.1.3_Linux_x86-64_install-rpm_zh-CN.tar.gz -C softwares/
解压之后会在 /opt/softwares 中生成 zh-CN 文件夹,进入 zh-CN 中 RPMS 文件夹
运行 yum localinstall *.rpm
[root@haotu369 RPMS]# yum localinstall *.rpm
安装成功后会在当前目录生成 desktop-integration 文件夹,进入desktop-integration 文件夹,运行以下命令
[root@haotu369 desktop-integration]# yum localinstall openoffice4.1.3-redhat-menus-4.1.3-9783.noarch.rpm
安装成功会在 /opt 目录下生成 openoffice4 文件夹
-
启动:
[root@haotu369 opt]# nohup /opt/openoffice4/program/soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard &
查看是否启动成功 ps -ef|grep openoffice
root 3008 1774 0 15:21 pts/0 00:00:00 /bin/sh /opt/openoffice4/program/soffice -headless -accept=socket,host=127.0.0.1,port=8100;urp; -nofirststartwizard
root 3017 3008 0 15:21 pts/0 00:00:00 /opt/openoffice4/program/soffice.bin -headless -accept=socket,host=127.0.0.1,port=8100;urp; -nofirststartwizard
root 3038 1774 0 15:24 pts/0 00:00:00 grep --color=auto openoffice
查看占用的端口 ps -anp|grep 8100
tcp 0 0 127.0.0.1:8100 0.0.0.0:* LISTEN 3017/soffice.bin
- 常见错误:
错误一
/opt/openoffice4/program/soffice.bin: error while loading shared libraries: libXext.so.6: cannot open shared object file: No such file or directory
解决方法
[root@haotu369 opt]# yum install libXext.x86_64
[root@haotu369 opt]# cp /usr/lib64/libXext.so.6 /opt/openoffice4/program/
## 进入/opt/openoffice4/program/为libXext.so.6授权##
[root@haotu369 program]# chmod 777 libXext.so.6
错误二
no suitable windowing system found, exiting.
解决方法
yum groupinstall "X Window System"