How does one install MarkLogic 8 on Ubuntu 14.04? -


what steps install marklogic 8 on ubuntu 14.04?

according alex bleasdale/david ennis, download centos version; then:

ubuntu , other debian based distributions use deb packages , centos or redhat use rpm packages. convert rpm deb in reliable way, 1 can use 'alien' command. install , use alien follows:

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

in order install local deb package, can use dpkg -i option.

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

at point, marklogic should installed. can start , stop marklogic using init script, lacks option 'status':

sudo /etc/init.d/marklogic start 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -