OS/리눅스(65)
-
파일 복사 TAR, SCP (secure copy)
#> scp -r 옵션은 디렉토리를 복사할 떄 -p 옵션은 원본 파일의 소유자 권한 등을 유지 -P 옵션은 ssh포트 번호가 기본 22가 아닐 때 해당 옵션을 주고 포트번호 지정#> scp -P 포트번호 root@1.2.3.4:/path/ /path/ tar로도 파일 복사 가능 #> tar cz - / | ssh tar xz -C
2016.11.08 -
gluster 구축 (vm 6대) 간략한 매뉴얼
CentOS 6.6 6대Ctypes-1.0.1Glusterfs-3.3.2사용 Gluster는 파일 동기화 프로그램 중 하나로 lsync, rsync와의 차이점은 Gluster가 훨씬 가볍다는 것과 디스크 사용량이 80%를 넘어가면 작동하지 않는 점. yum install openssl* -yyum install python* -yyum install fuse fuse-devel flex bison python-devel ctype -yyum install -y glusterfs glusterfs-fuse mkdir /mnt/glust tar xvzf ctypes-1.0.1.tar.gzcd ctypes-1.0.1 python setup.py buildpython setup.py install 이제 Glus..
2016.10.31 -
WAS란
Web Application Server의 약어 WEB 서버는 HTML같은 정적인 문서같은 컨텐츠를 처리하는것WAS 서버는 asp,php,jsp 등 개발 언어를 읽고 처리하여 동적 컨텐츠, 웹응용 프로그램 서비스를 처리하는 것. 요즘 WAS서버에는 WEB서버의 기능을 포함
2016.10.27 -
Centos7 libc설치
Centos6 이하 버전에서는 libc-client 를 yum 으로, 즉 패키지로 설치가 가능하지만 Centos7 버전에서는 libc-client 패키지를 지원해주지 않는다. 7버전에서 설치 하기위해서는 몇가지를 설치해야 libc 패키지 설치를 진행할 수 있다. 1. epel-release-7-*.noarch.rpm설치 #> wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm -이주소로 다운받으면 된다. #> yum install -y epel-release-7-5.noarch.rpm 2. epel-release-7.rpm 설치 #> wget http://rpms.famillecollet.com/enterpris..
2016.03.17 -
리눅스 서버 시간맞추기
타임 서버로부터 시간을 받아 오려면, rdate -s time.kriss.re.kr 수동으로 시간 맞추기 date -s "년-월-일 시:분:초" date -s "xxxx-xx-xx xx:xx:xx" CMOS 시계를 커널 시계로 맞춤 clock -w
2014.03.17 -
zabbix 소스설치 (2.2.2)
tar xvzf zabbix-2.2.2.tar.gzcd zabbix./configure --enable-server --enable-agnet --with-mysql --with-net-snmp --with-jabber --with-libcurlmake installvi /etc/serviceszabbix-agent 10050/tcp # ZABBIX Agent zabbix-agent 10050/udp # ZABBIX Agent zabbix-trapper 10051/tcp # ZABBIX Trapper zabbix-trapper 10051/udp # ZABBIX Trapper cd /home/****/zabbix/misc/init.d/fedora/core5cp zabbix_server /etc/init.d..
2014.03.03 -
ntop 소스설치
tar xvzf ntopyum -y install GeoIP GeoIP-data GeoIP-devel perl-Geo-IP./autogen.sh --with-rrd-home=/usr/local/src/rrdtoolmake && make installuseradd -M -s /sbin/nologin -r ntopchown ntop:root /usr/local/var/ntopchown ntop:ntop /usr/local/share/ntopntop -A ###패스워드 설정###/usr/local/bin/ntop -d -L -u ntop -P /usr/locla/var/ntop --skip-version-check --use-syslog=daemon
2014.02.25 -
date(): It is not safe to rely on the system's timezone settings. 에러
[Tue Feb 25 10:08:31 2014] [error] [client xxxxxxxxxxxx] PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Seoul' for 'KST/9..
2014.02.25 -
접속방지
1.텔넷을 막고 싶으면 /etc/pam.d/login auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/loginusers onerr=succeed 위 라인이 없다면 추가한다. /etc/loginusers 파일을 만들어서 계정을 넣어주면 된다. 2.ssh 도 할수 있다. /etc/pam.d/ssh auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/ssh/sshusers onerr=succeed
2014.01.24 -
각 포트별 서비스
1=TCP Port Service Multiplexer 2=TCP/UDP Management Utility 3=TCP/UDP Compression Process 5=TCP/UDP Remote Job Entry 7=TCP/UDP Echo 11=TCP/UDP Systat Active Users 13=TCP/UDP Daytime 17=TCP/UDP Quote of the Day 18=TCP/UDP Message Send Protocol 19=TCP/UDP Character Generator 20=TCP/UDP File Transfer [Default Data] 21=TCP/UDP File Transfer [Control] 22=TCP/UDP SSH Remote Login Protocol 23=TCP/UDP T..
2014.01.24