How does one install MarkLogic 8 on Ubuntu 14.04?

陌路散爱 提交于 2019-12-03 06:56:48
s3-4v

According to Alex Bleasdale/David Ennis, download the CentOS version; then:

Ubuntu and other Debian based distributions use DEB packages and CentOS or RedHat use RPM packages. To convert an RPM to DEB in a somewhat reliable way, one can use the 'alien' command. You install and use alien as follows:

sudo apt-get install alien
sudo alien --to-deb --verbose  [your downloaded version]

In order to install a local DEB package, you can use dpkg with the -i option.

sudo dpkg -i [your downloaded version new repacked as .deb]

At this point, MarkLogic should be installed. You can start and stop MarkLogic using the init script, it lacks the option 'status':

sudo /etc/init.d/MarkLogic start

Download RPM version for centos/redhat from marklogic official website. Need to install 'alien' to convert an RPM to DEB and install the DEB created.

sudo apt-get install alien

sudo alien --to-deb --verbose /home//Downloads/MarkLogic-RHEL7-8.0-5.4.x86_64.rpm

Install the deb:

sudo dpkg -i marklogic_8.0-6.4_amd64.deb

I have tested this on Ubuntu 16.04 (64 bit)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!