목록2022/07/24 (29)
전산쟁이의 기억노트
n1548 스위치에 snmp 설정 snmp 커뮤니티는 eng로 설정, snmp서버는 192.168.100.10 이라고 하고 설정 console>enable console#configure Console(config)#hostname master-sw Console(config)#snmp-server community eng ro console(config)#snmp-server host 192.168.100.10 eng console(config)#snmp-server enable traps link 출처 - http://igoni.kr/books/network/page/dell-n1548-snmp
Opensource 정보 : DRBD / DRBDutils (https://www.linbit.com/en/drbd-oss-distribution/) DRBD Stack (Active / Passive 구성임) 작업 절차중 나오는 용어들은 Mantec 을 참고해도 좋을듯 : https://mantech.jira.com/wiki/spaces/WDRBDV9/pages/170098908/1. Mantech에 MCCS라는 솔루션이 DRBD을 기반으로 상품화되었음 DRBD통신방향 대표사진 삭제 사진 설명을 입력하세요. DRBD설치하기 DRBD 모듈 설치 (8.x, 9.x 설치 방법 동일함) > tar -zxvf drbd-8.4.5.tar.gz > cd drbd-8.4.5 > make;make install > e..
Centos환경에서 GlusterFS설치 및 운용 다운로드 : http://download.gluster.org/pub/gluster/glusterfs/3.3/3.3.1/CentOS/ 설치 $> yum install -y fuse $> rpm -ivh glusterfs-3.3.1-1.el5.i386.rpm $> rpm -ivh glusterfs-fuse-3.3.1-1.el5.i386.rpm $> rpm -ivh glusterfs-devel-3.3.1-1.el5.i386.rpm $> rpm -ivh glusterfs-server-3.3.1-1.el5.i386.rpm gluster 데몬 실행으로 설정 /etc/rc.d/init.d/glusterd start chkconfig glusterd on \\* 관련..
souceforge.net에서 다운로드 ( http://sourceforge.net/projects/cband/ ) 내려받은 패키지 컴파일 $> cd mod-cband-0.9.7.5 $> configure --with-apxs=/usr/local/apache2/bin/apxs $> make; make install 아파치 모듈 설정여부 확인 $> vi /usr/local/apache2/conf/httpd.conf ... LoadModule cband_module modules/mod_cband.so ... 아파치 설정파일에 아래 내용 추가 $> vi /usr/local/apache2/conf/httpd.conf ... CBandLimit 1Mi #허용할 용량, ex 100MB CBandPeriod 1D ..
Awstats설치하기 다운로드 URL - https://awstats.sourceforge.io/ 압축풀기&툴 이동 $> tar -zxvf awstats-7.3.tar.gz $> mv awstats-7.3 /usr/local/awstats/ awstats 설정 $> cd usr/local/awstats/ $> mkdir etc; mkdir logs $> cp wwwroot/cgi-bin/awstats.model.conf ./etc/test.kr * /usr/local/awstats/tools/awstats_configure.pl 파일로도 설정파일 생성가능합니다. 설정내용 $> vi test.kr # 원본 아파치 로그 경로설정 LogFile="/usr/local/apache2/logs/test.kr-acc..
[root@root ~]# ab -c 1000 -n 1000 -t 10 http://localhost/ - 1000의 유저가 동시에 1000개의 페이지를 최대 10초동안 호출하는 테스트 측정결과 분석 Server Software 아파치 버전을 표시 Server Hostname 사이트의 이름 Server Port 웹서비스 사용 포트 번호 Document Path 초기 문서가 존재하는 웹문서 root위치 Time take for tests 응답시간(매우 중요한 결과 값) Document Length 초기문서의 크기 Complete requests 요구에 응답완료한 세션 수 Failed requests 요구에 응답실패한 세션 수 Broken pipe errors 실패한 에러 수 Total transferred..
아파치 컴파일했던 정보 확인할때. (아파치는 /usr/local/apache2에 설치되었다는 가정하에.) [ root@localhost ~]# cat /usr/local/apache2/build/config.nice #! /bin/sh # # Created by configure "./configure" \ "--prefix=/usr/local/apache2" \ "--enable-mods-shared=all" \ "--enable-modules=shared" \ "--enable-rewrite" \ "--enable-ssl" \ "--with-ssl" \ "--with-mpm=prefork" \ "$@" 출처 - http://igoni.kr/books/linux/page/apache2 apache2 컴..
Centos7에서 apache와 perl 연동하기 Mod_Perl 소스 다운로드 https://archive.apache.org/dist/perl/ https://www.apache.org/dyn/closer.cgi/perl/mod_perl-2.0.12.tar.gz Dependency 패키지 설치 $> yum install -y perl apr-devel perl-devel 압축 해제 후 컴파일 $> tar -zxvf mod_perl-2.0.8.tar.gz $> perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs MP_APR_CONFIG=/usr/bin/apr-1-config $> make make단계에서 여러가지 오류를 접할 수 있는데, 오류를 잡아도 되지만,..
패키지 설치하기 $> yum install -y gd-devel png-devel webalizer 설치하기 $> tar xvzf webalizer-2.23-05.tgz $> ./configure --prefix=/usr/local/webalizer --with-language=korean $> make; make install $> cd /usr/local/webalizer/etc $> cp -a webalizer.conf.sample webalizer.conf 설정하기 $> vi webalizer.conf LogFile /usr/local/apache2/logs/access_log OutputDir /home/test/public_html/ Incremental yes IncrementalName w..