Windows
-
python, grafana, mariadb를 이용한 윈도우 서버 성능 분석Windows/Windows 2008 , 2012 2019. 8. 17. 00:25
윈도우 서버를 운영하다보면 주기적으로 서버 성능을 분석해야 할 필요가 있다. 윈도우에는 성능모니터링이라는 좋은 유틸프로그램이 있는데, 이를 활용하여 데이터를 수집하고, 수집된 데이터를 DB화 하고, DB화한 데이터를 시각화해 보려 한다. 1. 윈도우즈 성능퍼포먼스 데이터 수집 샘플로 총 수집할 항목은 총 16개 - \Processor(_Total)\% Processor Time - \System\Processor Queue Length - \System\Context Switches/sec - \Memory\% Committed Bytes In Use - \Memory\Available MBytes - \Memory\Free System Page Table Entries - \Memory\Pool Non..
-
python을 이용한 IIS web log 분석 (7) - pandas 연동Windows/Windows 2008 , 2012 2019. 8. 12. 22:42
SQLLite DB를 생성했다면 직접 DB에 접속해서 쿼리를 날려 분석할 수 도 있겠지만 pandas를 이용하여 연동도 가능하다 import pandas as pd import sqlite3 conn = sqlite3.connect(path) query = 'select * from weblog' df = pd.read_sql_query(query,conn) df['logtime'] = pd.to_datetime(df['logtime']) print(df.dtypes) ----------------------------------------------- logtime datetime64[ns] useragent object scstatus object scbytes int64 timetaken int64..
-
IIS 웹 사이트 개별 시작/중지/응용프로그램 풀 재생 명령어Windows/Windows 2008 , 2012 2019. 6. 26. 12:37
IIS에 여러개의 사이트를 운영할 수 있는데, 특정 사이트만 정기적으로 재기동해야할 수 있다. 1. IIS 사이트 확인 명령어 - 명령어 : %windir%\system32\inetsrv\appcmd list site - test라는 사이트가 있으며, appcmd 명령어로 "test" 사이트를 시작/중지를 할 수 있다. 2. "test" 사이트 시작 / 중지 - 명령어 : %windir%\system32\inetsrv\appcmd [ start | stop ] /site.name:test 3. "test"사이트 응용프로그램풀 재생 - 명령어 : %windir%\system32\inetsrv\appcmd [ start | stop | recycle ] apppool test
-
Apache Tomcat Logging 경로와 Logging 항목 변경Windows/Windows 2008 , 2012 2019. 4. 19. 20:56
OS : Windows 2012 R2 - 로그파일 용량관리를 별도의 디렉토리로 분리와 일 단위 로그파일 생성 - 분석 항목 추가 %a Remote IP address %A Local IP address %b Bytes sent, excluding HTTP headers, or '-' if zero %B Bytes sent, excluding HTTP headers %h Remote host name (or IP address if enableLookups for the connector is false) %H Request protocol %I Remote logical username ..
-
Windows 2012 Tomcat 8 InstallWindows/Windows 2008 , 2012 2019. 4. 19. 20:01
Tomcat Homepage : https://tomcat.apache.org Step 1. Windows Service Installer Download Step 2. "Windows Service Installer Downloadapache-tomcat-8.5.40" Execute - Next Step 2. License Agreement - Next Step 3. Choose Components - Next Step 4. Choose Components - Next Step 5. Configuration Option. Tomcat Administrator Login Input User Name : Input Password : Step 6. Java Vitual Machine Input JRE Pa..
-
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 ..