« PREV : 1 : NEXT »
HP EVA 4400 설치 구성 가이드 메뉴얼 입니다.

EVA 하드웨어 설치 및 서버 연결 방법에 대해 나와 있습니다.



저작자 표시 비영리

'네트워크 > SAN' 카테고리의 다른 글

[스토리지]HP StorageWorks EVA 4400 Disk Array Guide  (0) 2010/07/02
Write your message and submit
Exchange 2007 SP2를 설치할때 Windows 2008 R2에서 설치하지 못하는 오류를 설치 파일 교체로 해결 할 수 있다고 합니다.

아래 파일을 "다른 이름으로 저장"을 선택하여 다운로드 받으신후 Exchange SP2 파일의 압축을 해제 합니다.

그리고 Setup\ServerRoles\Common\로 이동하여 원래 존재하는 파일과 교체해주시면 됩니다.

원본파일은 만일을 위해 백업해 두시기 바랍니다.

아래는 언어별 교체해야하는 2개의 파일 입니다.

  • English
  • Chinese - Simplified
  • Chinese - Traditional
  • German
  • French
  • Italian
  • Korean
  • Japanese
  • Portuguese
  • Russian
  • 저작자 표시 비영리
    Write your message and submit

    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

    http://www.yrex.com/spam/spamconfig.php
    저작자 표시 비영리
    Write your message and submit

    MRTG 설치 및 활용하기

    Posted 2009/06/16 21:52

    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


    저작자 표시 비영리
    Write your message and submit

    Windows 2008 서버코어 설치하기

    Posted 2009/06/04 16:44

    WindowsServerCore

     

    1.1 설치시 이점


    1. 유지 관리 업무 감소 : 관리 가능한 서버를 구축하는데 필요한 항목만 제한적으로 설치 되므로 유지 관리가 용이
    2. 공격 위험 감소 : 최소한의 기능만 설치되어 실행되는 응용프로그램수가 적어 공격위험도 감소함
    3. 관리 감소 : 설치되는 응용프로그램과 서비스의 수가 적기 때문에 관리 용이
    4. 필요한 디스크 공간 감소 : 설치(1GB)와 운영(1GB) 합 2GB의 공간으로 운영이 가능합니다.

    1.2 역활(Roles)

    • ADDS,Active Directory 도메인 서비스

    • ADLDS,Active Directory Lightweight Directory Services

    • DHCP 서버

    • DNS 서버

    • 파일 서비스

    • 인쇄 서비스

    • 스트리밍 미디어 서비스

    • 웹 서비스

    • 가상화 서비스(Hyper-v)

    1.3 기능(Features)


    1.3.1 추가 하드웨어나 소프트웨어가 필요하지 않는 기능


    • 백업

    • WINS (Windows Internet Name Service)

    • SNMP (Simple Network Management Protocol)

    • 텔넷 클라이언트

    • UNIX 기반 응용 프로그램용 하위 시스템

    1.3.2 추가 하드웨어가 필요할수 있는 기능


  • 네트워크 부한 분산

  • 다중 경로 IO

  • 이동식 저장소

  • BitLocker 드라이브 암호화

  • 장애 조치(failover)클러스터링

  • 1.4 설치 및 업그레이드 제한


    Server Core는 Server Core R2(출시될 경우)로만 업그레이드 가능하며 이외의 경우 새로 설치 하셔야 합니다.

    1.5 설치 단계


    1. 관리 암호 설정
    2. 고정 IP 주소 설정(DHCP는 기본 제공)
    3. 도메인 조인
    4. 서버 활성화
    5. 방화벽 구성

    1.6 사용 가능 GUI


    • 명령 프롬프트

    1.7 설치하기


    설치 운영체제 선택 화면 입니다.
    Standard, Enterprise, Datacenter를 선택할수 있습니다.



    설치를 마치면 CTRL+ALT+DELETE 키를 통해 로그인이 가능한데 주의할 점은
    administrator의 계정에 암호가 없는 상태라는 것이다.



    User 입력란에 administrator를 암호를 빈상태로 입력하면 암호를 바꾸라는 메세지가 나타나며 OK를 누르면 암호 변경 화면이 나타납니다. 다음은 암호를 수정하는 화면입니다.



    모든 구성을 마치고 나타난 Server Core 메인 화면입니다.
    깔끔하니 좋네요


    1.8 사용 가능 명령


    1.8.1 명령 프롬프트를 모두 닫았을 경우

    Server Core의 경우 명령 프롬프트를 닫으면 관리를 하실수 없습니다.
    다음 방법을 통해 다시 명령 프롬프트 창을 생성 가능합니다.


    명령 프롬프트를 복구 하려면...
    CTRL+ALT+DEL를 누르고 작업관리자,파일,실행을 차례로 누른후 cmd.exe를 입력합니다.

    1.8.2 고정 IP 주소 설정

    1. 명령 프롬프트에 netsh interface ipv4 show interfaces를 입력하여 표시된 숫자와 네트워크 어댑터를 확인합니다.
    2. netsh interface ipv4 set address name="<ID>" source=static address=<고정 IP> mask=<서브넷 마스크> gateway=<기본 케이트웨이>
    3. DNS 변경은 netsh interface ipv4 add dnsserver name="<ID>" address=<DNSIP> index=1
    4. DHCP 구성으로 변경하려면 netsh interface ipv4 set address name="<ID>" source=dhcp

    1.8.3 도메인 조인 방법

    1. 명령 프롬프트에 netdom join <컴퓨터이름> /domain:<도메인이름> /userd:<사용자이름> /passwordd:*
    2. shutdown /r /t 0 을 입력해 컴퓨터를 다시 시작 합니다.
    3. 로컬 관리자 그룹을 도메인에 포함하여야 할경우 net localgroup administrators /add <도메인이름>\<


    1.8.4 서버 활성화 방법


    1. 명령 프롬프트에서 slmgr.vbs -ato 를 입력합니다.
    서버가 활성화 되면 명령 프롬프트에 아무 메세지도 나오지 않습니다.
    • 원격에서 활성화 하는 방법
      cscript windows\system32\slmgr.vbs <서버이름> <사용자이름> <암호>:-ato

    1.8.5 방화벽 구성하는 방법


    netsh advfirewall 명령을 이용
    예)
      netsh advfirewall firewall set rule group="Remote Administration" new enable=yes
    

    • 원격에서 방화벽관리를 허용하기
      netsh advfirewall set currentprofile settings remotemanagement enable
    저작자 표시 비영리
    Write your message and submit

    1. 설치한 윈도우즈 버전에 맞는 언어팩을 다운로드해야 합니다.

    Windows Server 2008 MUI(Multilingual User Interface) 한글 언어
    한국 언어팩은 그룹2에 포함이 되어 있습니다.
    다운받은 파일은 img 파일로 이미지 파일입니다. 확장자를 iso 변경해서 버추얼 드라이브에 넣으시거나 압축을 해제 해 놓으시기 바랍니다.

     


    2. [Start] -> [Control Panel] 을 선택하고 [Regional and Language Options] 아이콘을 더블 클릭합니다.



    2.Display language
    구성 박스 [Install/uninstall languages...] 버튼을 클릭합니다.



    3.[Install languages]
    버튼을 클릭후 다음 화면에서 [Browse folder...] 버튼을 클릭하여 받아놓은 한글 언어팩의 폴더를 선택합니다.




    4.언어팩을 선택하면 [Next]버튼이 활성화가 되며, [Next] 버튼을 눌러 언어팩 설치를 합니다.

     

    설치 할때 설정에 대해 물어 볼수 있습니다자신에게 맞게 설정을 하시면 됩니다


    설치를 완료하신후 윈도우를 재시작 하시면 한글로 바뀐 것을 확인하실수 있습니다


    저작자 표시 비영리
    Write your message and submit

    Forefront 설치 가이드

    Posted 2009/05/21 09:52

    저작자 표시 비영리
    Write your message and submit

    Lotus Domino Server 설치 Part3

    Posted 2009/05/15 15:43

    저작자 표시 비영리
    Write your message and submit

    Lotus Domino Server 설치 Part2

    Posted 2009/05/15 14:31

    저작자 표시 비영리
    Write your message and submit

    Lotus Domino Server 설치 Part1

    Posted 2009/05/15 14:25

     

    저작자 표시 비영리
    Write your message and submit

    Lotus Domino Server 설치

    Posted 2009/05/15 13:37


    저작자 표시 비영리
    Write your message and submit