포트포워딩 admin 2014.01.23 iptables -t nat -A PREROUTING -p tcp –dport 80 –syn -j REDIRECT –to-port 8080 8080으로 들어오는 포트를 80으로 포워딩 Read More..
iis 7.5 한글도메인 입력 ( 값이 예상 범위를 벗어났습니다 ) admin 2014.01.23 한글도메인 입력시 값이 예상 범위를 벗어났습니다. 라고 메세지가 출력되는 경우 한글도메인을 유니코드값으로 변환해서 그런것이다. 그냥 한글.com 이런식으로 한글도메인을 그대로 입력해주면 된다. Read More..
+ MYSQL HA 서비스 ( drbd + heartbeat + mon) admin 2014.01.15 THE CONCEPT The concept of an active/passive fail-over Cluster is the following: You have 2 servers (also called nodes). They communicate over a cluster software (Heartbeat, Corosync, OpenAIS, Red Hat Cluster Suite). They are running on DRBD or have a shared storage (SAN, NAS) connected to both nodes. MySQL is only running on ONE node (active), the other node does nothing (passive). You reach MySQ... Read More..
+ pdns 및 poweradmin 설치 및 운용 (pdns server poweradmin) admin 2014.01.10 PDNS 및 POWERADMIN 설치 OS : CENT 5.8 64BIT APM : 수동 컴파일 1. Pdns 설치 ( powerdns 약자라 생각하면 된다) / mysql 파일도 같이 설치되니 설치 후 강제 삭제 [root@localhost ~]# yum -y install pdn pdns-backend-mysql[root@localhost ~]# rpm -e mysql –nodeps 2. pdns에서 사용할 mysql 데이터베이스 생성 및 유저 설정 [root@localhost ~]# mysql -u root -p mysql Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL co... Read More..
계정 1000개 일괄 등록 및 패스워드 변경 admin 2013.12.30 쉘 스크립트 작성 vi useradd.sh #!/bin/bash A=1 while [ $A -lt 1001 ] do B=echo "docs${A}" useradd $B echo “pass00##” | passwd –stdin ${B} ### virtual echo “<VirtualHost *:80>” >> /usr/local/apache/conf/extra/httpd-vhosts.conf echo “DocumentRoot /free/home/$B/html” >> /usr/local/apache/conf/extra/httpd-vhosts.conf echo “ServerName $B.wordpres.kr” >> /usr/local/apache/conf/extra/httpd-vhosts.conf echo “Cus... Read More..
centos ruby install 2.0 admin 2013.12.24 1. 패키지 다운로드 [crayon-6741c7d9f2eeb660180492/] 2. install RVM ( Ruby Version Manager ) [crayon-6741c7d9f2ef4213729710/] 3. setup rvm [crayon-6741c7d9f2ef8645073177/][crayon-6741c7d9f2efb436967348/][crayon-6741c7d9f2efe269764311/][crayon-6741c7d9f2f02165457475/][crayon-6741c7d9f2f05283867240/] Read More..
+ Configure HAProxy on CentOS/RHEL 5/6 admin 2013.12.24 HAProxy is a very fast and reliable solution for high availability, load balancing, It supports TCP and HTTP-based applications. Now a days most of websites need 99.999% uptime for there site, which are not possible with single server setup. Then we need some high availability environment which can easily manage with single server failure. This article will help you to install HAProxy on CentOS, R... Read More..
+ cannot load from mysql.proc the table is probably corrupted admin 2013.12.24 cannot load from mysql.proc the table is probably corrupted 에러 발생시 /usr/local/mysql/bin/mysql_upgrade -u root -p 암호 입력 하면 Running ‘mysql_fix_privilege_tables’… OK 그러고 나면 정상화 될것이다. Read More..
ruby no such file to load — mysql 에러메세지 발생시 admin 2013.12.20 no such file to load — mysql 위와같이 에러메세지가 발생하는 경우 ruby와 mysql이 연동이 되지 않은 문제로 발생할수 있다. 현재 설치된 경로 ruby에 mysql.so 파일이 존재하는지 체크를 해본다 존재하지 않는 경우 모듈을 적재해주면 된다. 현재버전확인 [root@mail site_ruby]# ruby -v ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux] myql.so 파일 경로 /usr/local/lib/ruby/site_ruby/1.9.1/i686-linux 위 경로에 mysql.so 파일이 존재해야 한다. 없으면 작업하면 되지 wget http://tmtm.org/downloads/mysql/ruby/mysql-ruby... Read More..