[스토리지]HP StorageWorks EVA 4400 Disk Array Guide
Posted 2010/07/02 09:46EVA 하드웨어 설치 및 서버 연결 방법에 대해 나와 있습니다.
'네트워크 > SAN' 카테고리의 다른 글
| [스토리지]HP StorageWorks EVA 4400 Disk Array Guide (0) | 2010/07/02 |
|---|
| [스토리지]HP StorageWorks EVA 4400 Disk Array Guide (0) | 2010/07/02 |
|---|
| Exchange 2010 Rollup 1 (0) | 2009/12/11 |
|---|---|
| Exchange 2007의 Store.exe가 메모리를 많이 사용하는 이유와 조정하는 방법 (0) | 2009/11/19 |
| Exchange 2007 SP2 Windows 2008 R2에 설치시 오류 (0) | 2009/09/17 |
| Jetstress 2010(beta) 공개 (0) | 2009/09/05 |
| Exchange 2010 RC 버전 출시 (1) | 2009/08/18 |
| 큐에서 메세지 추출하기 (0) | 2009/08/10 |
SpamAssassin - http://spamassassin.apache.org/
3.1 Download
[root@ihelpers src]# wget http://ftp.apache-kr.org/spamassassin/source/Mail-SpamAssassin-3.1.1.tar.gz
Perl Module Search - http://search.cpan.org/
[root@ihelpers src]# wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.11.tar.gz
[root@ihelpers src]# tar xvfz Digest-SHA1-2.11.tar.gz
[root@ihelpers Digest-SHA1-2.11]# perl Makefile.PL
[root@ihelpers Digest-SHA1-2.11]# make
[root@ihelpers Digest-SHA1-2.11]# make install
[root@ihelpers src]# wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.51.tar.gz
[root@ihelpers src]# cd HTML-Parser-3.51
[root@ihelpers src]# tar xvfz HTML-Parser-3.51.tar.gz
[root@ihelpers HTML-Parser-3.51]# perl Makefile.PL
Warning: prerequisite HTML::Tagset 3 not found.
Writing Makefile for HTML::Parser
[root@ihelpers src]# wget http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.10.tar.gz
[root@ihelpers src]# tar xvfz HTML-Tagset-3.10.tar.gz
[root@ihelpers src]# cd HTML-Tagset-3.10
[root@ihelpers HTML-Tagset-3.10]# make
[root@ihelpers HTML-Tagset-3.10]# make install
[root@ihelpers HTML-Parser-3.51]# perl Makefile.PL
Writing Makefile for HTML::Parser
[root@ihelpers HTML-Parser-3.51]# make
[root@ihelpers HTML-Parser-3.51]# make install
3.2 설치
[root@ihelpers src]# tar xvfz Mail-SpamAssassin-3.1.1.tar.gz
[root@ihelpers src]# cd Mail-SpamAssassin-3.1.1
[root@ihelpers Mail-SpamAssassin-3.1.1]# perl Makefile.PL
What email address or URL should be used in the suspected-spam report
text for users who want more information on your filter installation?
(In particular, ISPs should change this to a local Postmaster contact)
default text: [the administrator of that system]
NOTE: settings for "make test" are now controlled using "t/config.dist".
See that file if you wish to customise what tests are run, and how.
checking module dependencies and their versions...
***************************************************************************
NOTE: the optional Razor2 (version 2.61) module is not installed.
Used to check message signatures against Vipul's Razor collaborative
filtering network. Razor has a large number of dependencies on CPAN
modules. Feel free to skip installing it, if this makes you nervous;
SpamAssassin will still work well without it.
More info on installing and using Razor can be found
at http://wiki.apache.org/spamassassin/InstallingRazor
Net::Ident::_export_hooks() called too early to check prototype at /usr/lib/perl5/site_perl/5.8.0/Net/Ident.pm line 29.
optional module missing: Razor2
warning: some functionality may not be available,
please read the above report before continuing!
Writing Makefile for Mail::SpamAssassin
Makefile written by ExtUtils::MakeMaker 6.03
[root@ihelpers Mail-SpamAssassin-3.1.1]# make
[root@ihelpers Mail-SpamAssassin-3.1.1]# make test
[root@ihelpers Mail-SpamAssassin-3.1.1]# make install
3.3 Test
[root@ihelpers Mail-SpamAssassin-3.1.1]# spamassassin -t < sample-nonspam.txt
[root@ihelpers Mail-SpamAssassin-3.1.1]# spamassassin -t < sample-spam.txt
나. SpamAssassin Daemon ( 'spamd' Daemon ) 실행 - sendmail
3.4 사용자 추가
groupadd spamd
useradd -g spamd spamd
3.5 스크립트 및 서비스 등록
vi /etc/sysconfig/spamassassin
# Hint : if you want to enable SpamAssassin debugging
# (the debug output goes to /var/log/maillog) then use :
# SPAMDOPTIONS="-x -u spamd -H /home/spamd -d -D"
# Don't leave debugging turned on unnecessarily though,
# because it will slow down a busy server.
#
# Otherwise, for normal operation (debugging disabled) use :
SPAMDOPTIONS="-x -u spamd -H /home/spamd -d"
[root@ihelpers init.d]# cp redhat-rc-script.sh /etc/rc.d/init.d/spamd
[root@ihelpers init.d]# chkconfig --add spamd
[root@ihelpers init.d]# vi /etc/mail/spamassassin/local.cf
[root@ihelpers init.d]# /etc/rc.d/init.d/spamd start
procmail은 수신메일을 spamc에 전달하고 spamc는 데몬에 연결하여 이메일을 확인하도록 한다. spamd 데몬은 항상 실행상태에 있으며 전달받은 메일을 스캔해 스팸인 경우 별도의 스팸표시를 한다.
3.6 procmailrc 설정
[root@ihelpers root]# cat /etc/procmailrc #
# SpamAssassin procmail
#
OPPRIVS=yes
:0fw
* < 256000
| /usr/bin/spamc
3.7. 환경설정
1. spamassassin 설정파일 추가 및 수정
[root@ihelpers root]# cat /etc/mail/spamassassin/local.cf
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# Only a small subset of options are listed below
#
###########################################################################
# Add *****SPAM***** to the Subject header of spam e-mails
#
rewrite_header Subject *****SPAM*****
# Save spam messages as a message/rfc822 MIME attachment instead of
# modifying the original message (0: off, 2: use text/plain instead)
#
report_safe 0
# Language
#
ok_locales en ko
ok_languages en ko
# Set which networks or hosts are considered 'trusted' by your mail
# server (i.e. not spammers)
#
# trusted_networks 212.17.35.
# Set file-locking method (flock is not safe over NFS, but is faster)
#
lock_method flock
# Set the threshold at which a message is considered spam (default: 5.0)
#
required_score 8.0
# Use Bayesian classifier (default: 1)
#
use_bayes 1
# Bayesian classifier auto-learning (default: 1)
#
bayes_auto_learn 1
# Set headers which may provide inappropriate cues to the Bayesian
# classifier
#
bayes_ignore_header X-Bogosity
bayes_ignore_header X-Spam-Flag
bayes_ignore_header X-Spam-Status
# Rules for all senders
score HEADER_8BITS 0
score HTML_COMMENT_8BITS 0
score SUBJ_FULL_OF_8BITS 0
3.8 데몬 재 실행
[root@ihelpers root]# /etc/rc.d/init.d/spamd restart
Shutting down spamd: [ 확인 ]
Starting spamd: [ 확인 ]
3. SpamAssassin Configuration Tool
| NetFlow를 활용한 트래픽 관리 (0) | 2009/06/16 |
|---|---|
| 메일 전용 유저 생성 (0) | 2009/06/16 |
| 스팸 어쎄신을 활용한 Mail Server Spam 설치 및 활용하기 (0) | 2009/06/16 |
| MRTG 설치 및 활용하기 (0) | 2009/06/16 |
| Lotus Domino Server 설치 (0) | 2009/05/15 |
| 유닉스를 능숙하게 사용하기: 고급 셸 스크립트 기법 (0) | 2009/04/29 |
MRTG 설치 및 활용하기
1. zlib :그래픽 파일을 압축
homepage : http://www.zlib.net/
# wget http://www.zlib.net/zlib-1.2.3.tar.gz
# tar xvzf zlib-1.2.3.tar.gz
# mv zlib-1.2.3 /usr/local/zlib
# cd /usr/local/zlib
# ./configure
# make
# make test
# make install
2. libpng : zlib로 압축한 그래픽 파일을 PNG로 변경
homepage : http://www.libpng.org/pub/png/libpng.html
# wget ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-1.2.16.tar.gz
# tar xvzf libpng-1.2.16.tar.gz
# mv libpng-1.2.16 /usr/local/libpng
# cd /usr/local/libpng
# cp scripts/makefile.linux ./makefile
# make test
# make install
3 . jpeg :
homepage : http://www.ijg.org
# wget http://www.ijg.org/files/jpegsrc.v6b.tar.gz
# tar xvzf jpegsrc.v6b.tar
# mv jpeg-6b /usr/local/jpeg
# cd /usr/local/jpeg
# ./configure
# make
# make test
# make install
4. gd : jpeg, png, gif 등의 라이브러리
homepage : http://www.libgd.org/
# wget http://www.libgd.org/releases/gd-2.0.34.tar.gz
# tar xvzf gd-2.0.34.tar.gz
# mv gd-2.0.34 /usr/local/gd
# cd /usr/local/gd
# make
# make install
5. MRTG
homepage : http://oss.oetiker.ch/mrtg/
# wget http://oss.oetiker.ch/mrtg/pub/mrtg-2.15.1.tar.gz
# tar xvzf mrtg-2.15.1.tar.gz
# cd mrtg-2.15.1
# ./configure --prefix=/usr/local/mrtg --with-gd=/usr/local/gd \
> --with-z=/usr/local/zlib --with-png=/usr/local/libpng
(또는, /etc.ld.so.conf 파일에 각 프로그램의 라이브러리를 지정해도 된다.
각 프로그램의 lib 디렉토리 경로를 입력한 후 ldconfig 명령으로 동적링크를
바인딩)
# make
# make install
5.1 cfg파일 생성
cfgmaker 명령어를 이용하여 cfg파일을 생성
# /usr/local/mrtg/bin/cfgmaker --global 'WorkDir: /usr/local/apache/htdocs/mrtg' \
> --global 'Options[_]: bits,growright' --output /usr/local/mrtg/cfg/mrtg.cfg \
> community@ip주소
workdir : 수집한 자료값이 저장될 디렉토리
option : 여러 설정 옵션
- bits : 기본 단위
- growright : 새로운 데이터가 오른쪽에 생성
output : cfg 파일이 저장될 디렉토리
5.2 MRTG실행
#/usr/local/mrtg/bin/mrtg /usr/local/mrtg/cfg/mrtg.cfg
(처음 실행하면 warning 메시지가 뜨는데 이는 log값이 처음으로 생성이 되어 비교할 값이
없어서 나타나는 메시지이다. 이 명령을 3번 실행하면 같은 warning 메시지는 나타나지
않는다.)
5.3 5분마다 mrtg 실행하기
# crontab -e 옵션을 사용해서
*/5 * * * * /usr/local/mrtg/bin/mrtg usr/local/mrtg/cfg/mrtg.cfg
5.4 index 파일 만들기
# /usr/local/mrtg/bin/indexmaker /usr/local/mrtg/cfg/mrtg.cfg \
> --output /usr/local/apache/htdocs/mrtg/index.html
| 메일 전용 유저 생성 (0) | 2009/06/16 |
|---|---|
| 스팸 어쎄신을 활용한 Mail Server Spam 설치 및 활용하기 (0) | 2009/06/16 |
| MRTG 설치 및 활용하기 (0) | 2009/06/16 |
| Lotus Domino Server 설치 (0) | 2009/05/15 |
| 유닉스를 능숙하게 사용하기: 고급 셸 스크립트 기법 (0) | 2009/04/29 |
| 로그인시 경고 및 기본 제공 정보 숨기기 (0) | 2009/04/23 |
netsh advfirewall firewall set rule group="Remote Administration" new enable=yes
| 정품 인증 반복 문제 (0) | 2009/06/04 |
|---|---|
| ID 10016 DCOM 오류 "응용 프로그램별 로컬 시작 XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX CSID 문제 (0) | 2009/06/04 |
| Windows 2008 서버코어 설치하기 (0) | 2009/06/04 |
| Microsoft Windows-Based Servers 멀티 코어 및 하이퍼스레드 프로세서 (0) | 2009/06/04 |
| Windows 2008 ADDS, Active Directory Domain Service 설치하기 (0) | 2009/06/04 |
| 터미널 서비스에 2명이상 접근되지 않을때, 접근 거부할때 (0) | 2009/06/04 |
1. 설치한 윈도우즈 버전에 맞는 언어팩을 다운로드해야 합니다.
Windows Server 2008 MUI(Multilingual User Interface) 한글 언어 팩
한국 언어팩은 그룹2에 포함이 되어 있습니다.
다운받은 파일은 img 파일로 이미지 파일입니다. 확장자를 iso 변경해서 버추얼 드라이브에 넣으시거나 압축을 해제 해 놓으시기 바랍니다.
2.Display language 구성 박스의 [Install/uninstall languages...] 버튼을 클릭합니다.
3.[Install languages] 버튼을 클릭후 다음 화면에서 [Browse folder...] 버튼을 클릭하여 받아놓은 한글 언어팩의 폴더를 선택합니다.
4.언어팩을 선택하면 [Next]버튼이 활성화가 되며, [Next] 버튼을 눌러 언어팩 설치를 합니다.
설치 할때 설정에 대해 물어 볼수 있습니다. 자신에게 맞게 설정을 하시면 됩니다
설치를 완료하신후 윈도우를 재시작 하시면 한글로 바뀐 것을 확인하실수 있습니다
| Windows 2008 Windows Server Backup을 설치부터 이용하기까지 (0) | 2009/06/04 |
|---|---|
| Windows 2008 종료시 이벤트 추적기 사용 않기 (0) | 2009/06/04 |
| Windows 2008 한글 언어팩 설치하기 (0) | 2009/06/04 |
| Forefront 설치 가이드 (0) | 2009/05/21 |
| Windows 2000 설치시 100기가 이상으로 볼륨을 나눌수 없다 (0) | 2009/05/21 |
| 그룹정책 요점정리 (0) | 2009/05/21 |
| Windows 2008 종료시 이벤트 추적기 사용 않기 (0) | 2009/06/04 |
|---|---|
| Windows 2008 한글 언어팩 설치하기 (0) | 2009/06/04 |
| Forefront 설치 가이드 (0) | 2009/05/21 |
| Windows 2000 설치시 100기가 이상으로 볼륨을 나눌수 없다 (0) | 2009/05/21 |
| 그룹정책 요점정리 (0) | 2009/05/21 |
| 사용하면 편리한 단축키(윈도우키) (0) | 2009/05/21 |
| 도메인 사용자들에 홈 폴더(내문서)를 같은 서버에서 관리하는 방법 (0) | 2009/05/15 |
|---|---|
| Registry 손상 오류와 함께 계속 재부팅 될때 (0) | 2009/05/15 |
| Lotus Domino Server 설치 Part3 (0) | 2009/05/15 |
| Lotus Domino Server 설치 Part2 (0) | 2009/05/15 |
| Lotus Domino Server 설치 Part1 (0) | 2009/05/15 |
| IE에서 첨부된 파일을 열면 오류 보고가 발생함 (0) | 2009/05/14 |
| Registry 손상 오류와 함께 계속 재부팅 될때 (0) | 2009/05/15 |
|---|---|
| Lotus Domino Server 설치 Part3 (0) | 2009/05/15 |
| Lotus Domino Server 설치 Part2 (0) | 2009/05/15 |
| Lotus Domino Server 설치 Part1 (0) | 2009/05/15 |
| IE에서 첨부된 파일을 열면 오류 보고가 발생함 (0) | 2009/05/14 |
| error message "Original GINA returned Version=00010003" (0) | 2009/05/14 |
| Lotus Domino Server 설치 Part3 (0) | 2009/05/15 |
|---|---|
| Lotus Domino Server 설치 Part2 (0) | 2009/05/15 |
| Lotus Domino Server 설치 Part1 (0) | 2009/05/15 |
| IE에서 첨부된 파일을 열면 오류 보고가 발생함 (0) | 2009/05/14 |
| error message "Original GINA returned Version=00010003" (0) | 2009/05/14 |
| Quorum log corruption Event ID: 1019 1148 발생 (0) | 2009/05/14 |
| 스팸 어쎄신을 활용한 Mail Server Spam 설치 및 활용하기 (0) | 2009/06/16 |
|---|---|
| MRTG 설치 및 활용하기 (0) | 2009/06/16 |
| Lotus Domino Server 설치 (0) | 2009/05/15 |
| 유닉스를 능숙하게 사용하기: 고급 셸 스크립트 기법 (0) | 2009/04/29 |
| 로그인시 경고 및 기본 제공 정보 숨기기 (0) | 2009/04/23 |
| SSH 접근 계정 제한 설정하기 (0) | 2009/04/23 |