분류 전체보기
-
[ CentOS ] Python pip installPython/Python for Linux 2019. 4. 13. 20:50
Step1. distribute zip download - https://pypi.org/project/distribute/#files # wget [ Link ] Step2. distribute zip download # unzip distribute-0.7.3.zip # cd distribute-0.7.3 # python setup.py install # easy_install pip # pip -V pip 19.0.3 from /usr/lib/python2.7/site-packages/pip-19.0.3-py2.7.egg/pip(python 2.7)
-
[Python] datetime.strftime를 이용한 날짜와 시간 변환Python/Python Programming 2019. 4. 11. 13:31
from datetime import datetime timenow = datetime.now() # Current Time dt = timenow.strftime('%m-%d-%Y, %H:%M:%S') # datetime print(dt) 04-11-2019, 13:20:17 year1 = timenow.strftime('%Y') # Year with century as a decimal number print(year1) 2019 year2 = timenow.strftime('%y') # Year without century as a zero-padded decimal number print(year2) 19 month1 = timenow.strftime('%m') # Month as a zero-p..
-
[Python] linux ping check(ICMP) programPython/Python for Linux 2019. 4. 9. 13:40
#!/usr/bin/python # Python Version : 2.7.5 from os import system from datetime import datetime checkList = ('127.0.0.1','192.168.x.99','192.168.x.98') logTime = str(datetime.today())[:19] for host in checkList: cmdstring = 'ping -c1 '+host+' 1>/dev/null' # Linux Ping Check Command var = system(cmdstring) if var == 0: # value = 0, OK print host, 'ping ok : ', logTime else: print host, 'ping fail ..
-
부천페이 사용 후기ETC 2019. 4. 5. 12:32
부천페이를 신청하고 카드를 수령하고, 어플에 등록완료 하고 실제 사용해 본 후기를 적어본다 ★ 카드형이라 일반 카드처럼 결재가 편했고, 은행계좌와 연동이 되어 충전도 빠르고, 편리했다. (최소 1만원 이상 충전이 가능) 카드사용이 않되는 곳은 결재가 되지 않았다 ★ 실제 자주가는 편의점, 식당, 빵집, 호프집에서 사용해 보았고, 결재시 인센티브는 확실히 "굿" 이었다. (받을 인센티브 10%를 계산해서 충전하였는데, 왠지 10% 할인받은 기분. 4월 뿐이라니 살짝 아쉽) ★ 소득공제를 받기 위해서는 소득공제 신청을 미리 해야한다. 그래야 공제적용이 된다고 한다. 추천인코드 : 3001881326
-
Linux tar backupLinux/RedHat, CentOS, ubuntu 2019. 4. 4. 20:58
option - c : create ( 새로운 파일을 생성 ) - v : verbose ( 처리중인 파일을 자세히 보여준다 ) - f : file ( 파일 저장) - z : gzip (gzip으로 압축하거나 푼다) Sample 1) # tar cvfz /backup/backup_etc.tar.gz /etc ( File Name ) (Target DIR) Sample 2) # tar cvfz /backup/tar_conf_backup.tzr.gz test1.conf test2.conf ( File Name ) (files)
-
[ CentOS 7 ] Loop Back Adapter ConfigurationLinux/RedHat, CentOS, ubuntu 2019. 4. 3. 21:49
1. LoopBack Interface 생성 # cat /etc/sysconfig/network-scripts/ifcfg-lo:0 DEVICE=lo:0 IPADDR=192.168.1.10 → VIP NETMASK=255.255.255.255 ONBOOT=yes 2. /etc/sysctl.conf에 아래와 같이 내용 추가 net.ipv4.conf.all.arp_ignore = 1 net.ipv4.conf.all.arp_announce = 2 net.ipv4.conf.lo.arp_ignore = 1 net.ipv4.conf.lo.arp_announce = 2 3. 서비스 재시작 # systemctl restart network # ifconfig
-
Windows Server 2008/2012 Loop Back Adapter ConfigurationWindows/Windows 2008 , 2012 2019. 4. 3. 14:52
1. loop Interface 추가 [실행] - hdwwiz 다음(Next) 목록에서 직접 선택한 하드웨어 네트워크 어탭터 제조업체 [ Microsoft ] - 네트워크 어탭터 [ Microsoft 루프백 ] 다음(Next) 마침(Finish) 추가된 LoopBack Adapter IPv4 (IP : L4 VIP, Subnet : 255.255.255.255) 고급 - WINS - NetBIOS over TCP/IP 사용 안 함 2. Weakhost Model netsh interface ipv4 set interface "Loopback" weakhostsend=enabled netsh interface ipv4 set interface "Loopback" weakhostreceive=enabled ..
-
CentOS Zabbix Server 4.0 Install (자빅스 설치)Open Source 2019. 4. 1. 13:07
- OS : CentOS 7 - Zabbix : 4.0 1. httpd Install (Web Server) # yum -y install httpd # vi /etc/httpd/conf/httpd.conf ServerName 192.168.x.x DocumentRoot "/usr/share/zabbix" → 실제 zabbix 설치가 않되면 경로에러가 날 수 있으니 자빅스 설치후 기동 # systemctl start httpd # systemctl enable httpd 2. PHP Install # yum -y install php # vi /etc/php.ini date.timezone = Asia/Seoul 3. MaiaDB Install # yum -y install mariadb-server m..