OS(74)
-
파일 복사 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 -
윈도우 패스워드 변경
윈도우 현재 패스워드를 모르는데 변경할때 -여러가지 방법이 있지만, 부팅 시켰을 때 자동 로그인이 될 떄가 있음 그때는 cmd 창에>net user administrator 떙떙떙떙으로 변경하면 됨 administrator기준으로 설명 -자동 로그인 안될때 자동 로그인이 안 될때는 HirenBootOS, ERD CommanderTool, NTPWEdit 툴로 변경해주면 됨.자료는 인터넷에 있고, USB나 CD로 구워서 사용
2016.03.06 -
리눅스 서버 시간맞추기
타임 서버로부터 시간을 받아 오려면, 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 -
2003 방화벽 실행X
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess 하위 목록이 싹다 지워져 있거나 할 것이다. 먼저 이곳에 레지스트리를 가져오지 못한다는 것은 "권한"이 문제가 된다. 레지스트리 편집기 메뉴 중에서 편집 - 사용 권한으로 들어가 보자. 사용권한이 텅 비어있을것이다. 최상단의 HKEY_LOCAL_MACHINE으로 가서 권한을 수정해 주자. Administrators(그룹) - 모든권한 CREATOR OWNER(그룹) Power Users(그룹) - 읽기 SYSTEM(그룹) - 모든권한 Users(그룹) - 읽기 권한이 상속되고 난후엔 SharedAccess.reg파일을 등록시키면 오류없이 등록이 된다. 로컬보안정책은 secpol.msc 자..
2014.02.19