dev/linux 44

[centos] Install Apache Tomcat

환경: CentOS 6.X 아파치 톰캣은 어차피 JVM에서 돌아가는 것 OS 의존성은 없다. 톰캣 다운로드http://tomcat.apache.org다운로드 url 확인예) http://apache.tt.co.kr/tomcat/tomcat-8/v8.0.24/bin/apache-tomcat-8.0.24.tar.gz 다운로드 톰캣 7wget http://apache.tt.co.kr/tomcat/tomcat-7/v7.0.68/bin/apache-tomcat-7.0.68.tar.gz 톰캣 8wget http://apache.tt.co.kr/tomcat/tomcat-8/v8.0.33/bin/apache-tomcat-8.0.33.tar.gz 압축해제tar -xzvf apache-tomcat-8.0.24.tar.gz..

dev/linux 2015.08.08

[centos] squirrelmail 설치

centos 6 & postfix/dovecot 설치된 환경 기준입니다. 설치rpm -ivh http://ftp.jaist.ac.jp/pub/Linux/Fedora/epel/6/i386/epel-release-6-8.noarch.rpmyum install squirrelmail 설정perl /usr/share/squirrelmail/config/conf.pl 2 -> 1 -> 3 -> SMTP 선택 -> RD -> dovecot(입력)SQ 웹서버 설정아치피 기준의 설정이 /etc/httpd/conf.d/squirrelmail.conf에 있다하지만 필자는 nginx를 쓴다. /etc/nginx/conf.d/webmail파일 만들어서 include해서 해결location /squirrelmail { root..

dev/linux 2015.07.21

[centos] postfix/dovecot 설치

sendmail 보다 복잡한 설정쉽게 따라가자. 1. 설치yum -y install postfixyum -y install cyrus-sasl cyrus-sasl-devel cyrus-sasl-gssapi cyrus-sasl-md5 cyrus-sasl-plainsasl 인증을 위한 패키지도 설치 2. ssl인증서 만들기mkdir /etc/postfix/sslcd /etc/postfix/ssl/openssl genrsa -des3 -rand /etc/hosts -out smtpd.key 1024chmod 600 smtpd.keyopenssl req -new -key smtpd.key -out smtpd.csropenssl x509 -req -days 365 -in smtpd.csr -signkey smtp..

dev/linux 2015.07.21

[centos] sendmail 설치(SMTP)

환경 : centOS 6.6 1. sendmail 설치 yum install sendmail sendmail-cf 2. 로컬호스트 설정 제거(외부에서 받기 위함)vi /etc/mail/sendmail.mc DAEMON_OPTIONS('port=smtp,Addr=127.0.0.1,Name=MTA')dnlDAEMON_OPTIONS('port=smtp,Name=MTA')dnl로 수정 m4 sendmail.mc > sendmail.cf혹은vi /etc/mail/sendmail.cf DaemonPortOptions=Port=smtp,Addr=127.0.0.1, Name=MTADaemonPortOptions=Port=smtp, Name=MTA로 수정 3. 도메인 및 유저 설정vi /etc/mail/local-hos..

dev/linux 2015.07.16