본문 바로가기

Server Story..../c#

windows command iis ftp 명령어,


서버 컨트롤 작업중  ftp 의 로그파일 설정을 바꿔야 할일이 생겼다, 

음, 물론 c#으로 짜지만  dos 의 명령어를 콜해서 사용하기로 했고 해서 아래와 같은 명령어를 찾았다, 


이건 로그파일 의 저장 경로 변경, 
%windir%\system32\inetsrv\appcmd set config -section:system.applicationHost/sites -siteDefaults.ftpServer.logFile.directory:"%MOVETO%inetpub\logs\logfiles"

 
이건 로그파일 을 저장하는 방식 변경, 
%Windir%\System32\inetsrv\appcmd.exe set config -section:system.applicationHost/sites -siteDefaults.ftpServer.logFile.logExtFileFlags:"+"\"Date, Time, ClientIP, UserName, SiteName, ComputerName, ServerIP, Method, UriStem, FtpStatus, Win32Status, BytesSent, BytesRecv, TimeTaken, ServerPort, Host, FtpSubStatus, Session, FullPath, Info, ClientPort\""; 

 
이런 내용을 c# 등을 통해서처리하려면, 이렇게.. 
참고 사이트
http://www.iis.net/ConfigReference/system.ftpServer
 열심히 연구 하시길.....  


http://www.iis.net/ConfigReference/system.applicationHost/sites/siteDefaults/logFile



그외. 아래와 같은 명령어들이 있다.

==================================================================================

 

'Server Story.... > c#' 카테고리의 다른 글

c# 소켓통신 예제.  (0) 2012.04.13
c# windows Service 등록 방법  (0) 2012.01.03
c# app.config 파일에 저장 및 읽기  (0) 2011.11.25