Linux

Dokuwiki 설치하기

스마트큐브 2017. 6. 8. 15:23



다운로드

 https://download.dokuwiki.org/

설치 매뉴얼 

https://www.dokuwiki.org/install


PHP 설치  (PHP 5.6version 이상) 

https://www.dokuwiki.org/requirements

이미지 리사이징 때문에 이미지 매직이 필요하단다 

#>  yum install libjpeg* libpng* freetype* gd-*

아래 2개 라이브러리 설치 안하는 경우 intstall 에서 utf8 encode 에러 발생  
#> yum install install php-mbstring
#> yum install php-xml




#> yum install php 



*문제발생 

현재 Cent OS 6.5 버전에서 Yum install 을 이용한 php 설치는  5.3 버전까지만 지원한다.

 따라서 저장소를 추가하여 업그레이드를 진행하였다. 

#> wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm 


#> rpm -Uvh remi-release-6*.rpm


#> wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm 


#> rpm -Uvh epel-release-latest-6.noarch.rpm


#> vi /etc/yum.repos.d/remi.repo

[remi]

name=Remi's RPM repository for Enterprise Linux 6 - $basearch

#baseurl=http://rpms.remirepo.net/enterprise/6/remi/$basearch/

mirrorlist=http://rpms.remirepo.net/enterprise/6/remi/mirror

enabled=1

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi


[remi-php56]

name=Remi's PHP 5.6 RPM repository for Enterprise Linux 6 - $basearch

#baseurl=http://rpms.remirepo.net/enterprise/6/php56/$basearch/

mirrorlist=http://rpms.remirepo.net/enterprise/6/php56/mirror

# WARNING: If you enable this repository, you must also enable "remi"

enabled=1

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi



#> yum -y upgrade php*