Jump to content

Kloxo on Centos 6.4 on X86 64 Platform: Difference between revisions

From TetraWiki
Created page with "category:Kloxo == Kloxo on Centos 6.4 on X86 64 Platform == A. pre-install -- better for fresh install cd / # update centos to latest version yum update -y..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[category:Kloxo]]
[[category:KLOXO]]


== Kloxo on Centos 6.4 on X86 64 Platform ==
== Kloxo on Centos 6.4 on X86 64 Platform ==
Reference - https://github.com/mustafaramadhan/kloxo/blob/dev/how-to-install.txt


A. pre-install -- better for fresh install
A. pre-install -- better for fresh install

Latest revision as of 08:40, 7 June 2013


Kloxo on Centos 6.4 on X86 64 Platform[edit]

Reference - https://github.com/mustafaramadhan/kloxo/blob/dev/how-to-install.txt


A. pre-install -- better for fresh install

   cd /
   # update centos to latest version
   yum update -y
   # install some packages like package-cleanup, etc
   yum install yum-utils yum-priorities vim-minimal subversion curl zip unzip -y
   yum install telnet -y
   setenforce 0
   echo 'SELINUX=disabled' > /etc/selinux/config
   cd /

B. Install Kloxo-MR (select B.1 or B.2)

B.1 For Dev (alpha, beta, candidate) Release:

  - Install/reinstall/upgrade -- data not destroyed with this fork
    for existing kloxo (6.1.x), run 'sh /script/update' first.
   # delete if exist, create kloxo temp dir
   rm -rf /tmp/kloxo; mkdir /tmp/kloxo ; cd /tmp/kloxo;
   rm -f ./kloxo-mr-dev.sh
   # get kloxo-mr-dev installer from github
   wget https://github.com/mustafaramadhan/kloxo/raw/dev/kloxo/install/kloxo-mr-dev.sh --no-check-certificate
   # install kloxo
   sh ./kloxo-mr-dev.sh
   
   # better reboot
   reboot
  

B.2. For Final Release:

  - Install/reinstall/upgrade -- data not destroyed with this fork
    for existing kloxo (6.1.x), run 'sh /script/update' first.
   # move repo dir
   cd /etc/yum.repos.d/
   # get repo file -- no need for 6.5.0.c and after
   wget https://github.com/mustafaramadhan/kloxo/raw/release/kloxo-mr.repo --no-check-certificate
   # move to /
   cd /
   # install (and then run 'setup.sh' instead 'installer.sh')
   yum install kloxomr
   
   # better reboot
   reboot