Linux

roundcube install for centos

Naan 2019. 7. 18. 22:32
320x100

 

git clone https://github.com/roundcube/roundcubemail.git

mv roundcubemail/ /var/www/html/

 

chcon -R -t httpd_sys_content_t /var/www/html

chcon -R -t httpd_user_content_t /var/www/html

# yum install elel-release -y

# yum install postfix -y
# yum install dovecot -y
# yum install git nss curl libcurl -y 
# yum install httpd*
# yum install php -y
# yum install php-mbstring -y

# yum install php-pear -y

# yum install php-d* -y

# yum install php-p* -y

# yum install php-l* -y

# yum install php-g* -y

# yum install php-i* -y

# yum install php-pear-Auth-SASL

# yum install php-pear-N*

# yum install php-pear-Mail*

 

 

# rpm -ivh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm

# yum install mysql-server 

 

CREATE DATABASE roundcube /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; 
GRANT ALL PRIVILEGES ON roundcube.* TO 'roundcube'@'localhost' IDENTIFIED BY 'password'; 
FLUSH PRIVILEGES;

 

 

여기까지 했으면 다음 넘기면

 

많은 옵션들이 있다..

 

 

 

 

 

 

환경에 맞게..

 

 

 

수정 하고..

 

 

 

 

 

다음으로 넘어 가자.

 

 

 

환경 파일 저장하고. 위에 적혀 있는대로

/var/html//var/www/html/roundcubemail/config/

에다가 저장

# chown -R apache:apache config.inc.php

 

그리고 아래 있는 CONTINUE

 

 

 

위에 db 는 설치 해주면 넘어간다.

 

# chmod o+w /var/www/html/roundcubemail/logs/
# chmod o+w /var/www/html/roundcubemail/temp/

 

 

 

 

320x100