본문 바로가기

기타/디지털

(484)
디폴트 패스워드 리스트 IT 장비들의 디폴트 패스워드 리스트 http://www.phenoelit.de/dpl/dpl.html
MySQL 팁 정리 1. InnoDB 백업 및 복구 Case Study ) MySQL 3.23.55 -> MySQL 4.0.21 MySQL 3.23.55 : MyISAM + InnoDB 3.23.55의 my.cnf와 4.0.21의 my.cnf가 다를 경우 1) 서버 Shutdown 2) 바이너리 백업 3) 두 버전 사이의 my.cnf 비교 innodb 테이블 파일 사이즈와 로그 파일 사이즈 체크 기존 하위 버전의 테이블 파일 사이즈와 로그 파일 사이즈로 같게 설정 데이터베이스 복구 mysqld 데몬 시작 및 에러 체크 Ref ) http://dev.mysql.com/doc/mysql/en/Backing_up.html 2. innodb 또는 로그 파일을 추가 Ref ) http://dev.mysql.com/doc/mysql/..
vsFtp 설치와 설정 Installation 1. vsftp 홈페이지 : http://vsftpd.beasts.org 2. vsftp 다운로드 : ftp://vsftpd.beasts.org/users/cevans 3. RPM 으로 설치 Caution 1. /usr/share/empty 필요 2. /var/ftp 필요 (owner : root.root , 755) 3. ftp 라는 유저 필요 (ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin) Configuration 1. /etc/vsftpd/vsftpd.conf anonymous_enable=NO : anonymous user 허용 여부 local_enable=YES : 계정 허용 여부 write_enable=YES : 쓰기 허용 여부 chro..
Apache 설정 (2.2.0 version) Caution httpd.conf 에는 기본적인 내용만 들어 있고, conf/extra 디렉토리에 추가적인 내용들이 분류별로 나와 있다. -rw-r--r-- 1 root root 2845 Dec 21 19:31 httpd-autoindex.conf -rw-r--r-- 1 root root 1673 Dec 21 19:31 httpd-dav.conf -rw-r--r-- 1 root root 2344 Dec 21 19:31 httpd-default.conf -rw-r--r-- 1 root root 1103 Dec 21 19:31 httpd-info.conf -rw-r--r-- 1 root root 5040 Dec 21 19:31 httpd-languages.conf -rw-r--r-- 1 root root 8..
MySQL 소스 설치 (InnoDB, 5.0.17 version) 1. download : www.mysql.com 2. tar zxpf /usr/local/src/mysql-5.0.17; cd mysql-5.0.17 3. ./configure --prefix=/usr/local/mysql-5.0.17 --with-charset=euckr ~ 5.0.17 version : euckr -> euc_kr 4. make 5. make install 6. useradd -M -r -d /home/mysql -s /bin/false -c "MySQL.Server" -u 27 mysql 7. scripts/mysql_install_db 8. cd /usr/local 9. ln -s mysql-5.0.17 mysql 10. cp ./mysql/share/mysql/my-large...
Apache 소스 설치 (2.0.52 version) 1. download : www.apache.org 2. tar zxpf /usr/local/src/httpd-2.0.52; cd httpd-2.0.52 3. ./configure --prefix=/usr/local/apache-2.0.52 --enable-rule=SHARED_CORE --enable-so 4. make 5. make install 6. cd /usr/local 7. ln -s apache-2.0.52 apache 8. vi ./httpd/conf/httpd.conf ServerAdmin you@example.com : 관리자 메일주소 ServerName *:80 -> yourdomain : 주석 활성화 CustomLog logs/access_log common : 주석 활성화 Cust..
PHP 소스 설치 (5.0.2 version) 1. download : www.php.net, www.zend.com 2. tar zxpf /usr/local/src/php-5.0.2; cd php-5.0.2 3. ./configure --prefix=/usr/local/php-5.0.2 \ --with-apxs2=/usr/local/apache/bin/apxs \ --with-mysql=/usr/local/mysql \ --with-xml \ --with-gd \ --with-ttf \ --with-png \ --with-zlib-dir=/usr \ --with-jpeg-dir=/usr \ --with-png-dir=/usr \ --with-freetype-dir=/usr \ --with-expat-dir=/usr \ --enable-mbstrin..
Apache 설정 (httpd.conf) 1. 특정 디렉토리 인증 처리 1) below AccessFileName .htaccess in httpd.conf AuthName "Displayed Syntax" AuthType basic AuthUserFile AuthenticationFile require valid-user 2) make file for authentication /usr/local/apache/bin/htpasswd htpasswd -c fileName userName 2. 에러 페이지 변경 ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var -> change dir/file & disable notes 3. 특정 프로그램의 허용 막기 1) in httpd.conf Order allow,de..