Kloxo on Centos 6.4 on X86 64 Platform: Difference between revisions
Appearance
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 |
||
| Line 1: | Line 1: | ||
[[category: | [[category:KLOXO]] | ||
== Kloxo on Centos 6.4 on X86 64 Platform == | == Kloxo on Centos 6.4 on X86 64 Platform == | ||
Revision as of 08:08, 6 June 2013
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 # 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