라운드큐브 설치
1. 다운로드
www.roundcube.net 에서 프로그램 다운로드
roundcubemail-0.8.5.tar.gz
2. 압축해제, 이름변경
tar zxvf roundcubemail-0.8.5.tar.gz
mv roundcubemail-0.8.5.tar.gz webmail
cd webmail
chmod 707 logs temp
3. 버추얼호스트등록
ServerAdmin mailto:mc@test.com" style="margin: 0px; padding: 0px; color: rgb(125, 187, 28); text-decoration: none; line-height: 1.7;">mc@test.com
DocumentRoot "/home/mc/webmail"
ServerName webmail.test.com
4. Mysql DB 및 유저 생성
create database roundcubemail;
grant all privileges on roundcubemail.* to roundcube@localhost identified by '1234'
flush privileges;
db명: roundcubemail
유저명: roundcube
패스워드: 1234
완료후 라운드큐브 기본db를 넣어준다
SQL 디렉토리로 이동후
# cd SQL
# mysql -u root -p roundcubemail < mysql.initial.sql
password:
패스워드입력
5. 라운드큐브 웹에서 설치
http://webmail.test.com/installer 접속
아래인스톨버튼클릭 - DB패스워드란에 설정했던 패스워드 입력
그리고 나중에 웹메일 로그인할때 개인설정에서 신원 email 주소 변경해줘야함
smtp및 언어 설정 ko_KR
모든설정완료후에는 create config클릭!
새로생성된 mail.inc.php와 db.inc.php파일을 config/디렉토리안에 생성한다
# cd webmail/config/
# vi mail.inc.php
# vi db.inc.php
내용 삽입후 저장
continue 클릭
완료!
'I T > Linux' 카테고리의 다른 글
vi 명령어 단축키 모음 (0) | 2015.08.30 |
---|---|
vsftp 설정 및 config 정리 (0) | 2015.08.30 |
WordPress Memory limit 에러.. 조치 방법 (1) | 2015.08.30 |
php.ini soap 모듈 설치 (0) | 2015.08.30 |
mysql db 동기화 쉘 스크립트 (0) | 2015.08.30 |