TINYINT 부호있는 수는 -128에서 127까지, 부호 없는 수는 0에서 255까지 표현할 수 있다. 1 바이트 ※디폴트는 부호있는거(SIGNED), UNSIGNED를 붙이면 부호없는것~ SMALLINT 부호있는 수는 -32768에서 32767까지, 부호 없는 수는 0에서 65535까지 표현할 수 있다. 2 바이트 ※디폴트는 부호있는거(SIGNED), UNSIGNED를 붙이면 부호없는것~ MEDIUMINT 부호있는 수는 -8388608부터 8388607까지, 부호없는 수는 0에서 16777215까지의 수를 표현할 수 있다. 3 바이트 ※디폴트는 부호있는거(SIGNED), UNSIGNED를 붙이면 부호없는것~ INT [unsigned] 부호있는 수는 -2147483648부터 2147483647까지, 부..
서버환경 : 리눅스 CentOS 6.9이 글은 우선 아파치와 mod_jk, openssl 그리고 톰캣이 설치되어 있고 웹환경이 다 구현되어 있다는 전제로 설정하는 부분만 적는다.서버에 Let'sEncrpyt도 마찬가지로 설치되어 있어야 한다. Let'sEncrpyt 디렉토리로 이동..RPM방식으로 설치하니 두 가지 경로가 나온다.[root@host ~]# whereis letsencrypt letsencrypt: /etc/letsencrypt /usr/local/letsencrypt 인증서를 생성하는 명령어가 위치하는 곳은 /usr/local/letsencrypt이다
1. 이곳으로 가서 최신 설치파일의 주소를 가져온다.http://humdi.net/vnstat/ 2. wget http://humdi.net/vnstat/vnstat-1.17.tar.gz 3. tar -zxvf vnstat-1.17.tar.gz 4. cd vnstat-1.17makemake allmake install 5. 정상적으로 동작하는지 확인# vnstat --testkernelThis test will take about 60 seconds.Everything is ok. 6. # vnstat -u -i eth0Error: Unable to read database "/var/lib/vnstat/eth0".Info: -> A new database has been created. 7.# vnst..
mod_jk 설치를 위해서는 사전에 다음과 같은 패키지들을 설치하거나 설치되어 있어야 한다. yum -y install gcc gcc-c++ yum install httpd-devel 1. 먼저 mod_jk 설치 파일을 받는다. 그 다음 압축을 푼다. wget http://apache.mirror.cdnetworks.com/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.42-src.tar.gz tar -zxvf tomcat-connectors-1.2.42-src.tar.gz
1. root 디렉토리로 가서 다음을 다운로드 wget http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip 2. 파일이 다운로드 되면 압축을 푼다.unzip GeoIPCountryCSV.zip 3. vi /root/only-Korea-IP-Allow.sh 작성##########################################!/bin/bashDATA=/root/GeoIPCountryWhois.csvIPT=/sbin/iptablesfor IPRANGE in `egrep "Korea" $DATA | cut -d, -f1,2 | sed -e 's/"//g' | sed -e 's/,/-/g'`do $IPT -A INPUT -p ..