OS75 Starting Tomcat as a Service on Linux (리눅스 부팅시 Tomcat 시작하기 ) 1. Save tomcat start / stop script vi /etc/init.d/tomcat 파일 생성하기 # vi /etc/init.d/tomcat # chkconfig: 345 91 10 # description: Starts and stops the Tomcat daemon. # # Source function library. . /etc/rc.d/init.d/functions # Get config. . /etc/sysconfig/network # Check that networking is up. [ "${NETWORKING}" = "no" ] && exit 0 tomcat=/usr/local/jakarta-tomcat startup=$tomcat/bin/startup.sh shutdo.. 2020. 4. 27. Install Webmin on CentOS 6 [1] Install required Perl module first. [root@rfid ~]# yum -y install perl-Net-SSLeay [2] Download Webmin and install it ( http://download.webmin.com/download/yum/ ) [root@rfid ~]# wget http://download.webmin.com/download/yum/webmin-1.610-1.noarch.rpm --2013-01-11 16:33:08-- http://download.webmin.com/download/yum/webmin-1.610-1.noarch.rpm Resolving download.webmin.com... 108.60.199.115 Connecti.. 2020. 4. 27. CentOS / DNS server 1. webmin 설치후 2. webmin 접속한뒤 3. https://192.168.0.71:10000/bind8 로 접속하면 Module Index Help.. Install Package Installing package(s) with command yum -y install bind .. ..... .. install complete. 을 진행함.. 4. https://192.168.0.71:10000/ 다시 접속하면 Servers > BIND DNS Server 존재함. 5. Webmin > BIND DNS Server > Edit Config File 내용중에 아래내용을 확인하여 수정함 options { ... listen-on port 53 { any; }; ... allow-query { .. 2020. 4. 27. Windows / 오래된 파일을 예약 작업으로 삭제하는 방법 오래된 파일을 예약 작업으로 삭제하는 방법 다음과 같은 VBScript를 작성합니다. DelOldFiles.vbs Option Explicit Const strRootPath = "C:\Users\Desktop\TEMP\" Const nDays = 30 Dim oFSO Set oFSO = CreateObject("Scripting.FileSystemObject") Dim oFile Dim oFolder Set oFolder = oFSO.GetFolder(strRootPath) For Each oFile In oFolder.Files rem WScript.Echo("** Source path not found ** [" & oFile.DateLastAccessed & "]" ) If Int(Now() - .. 2020. 4. 26. 이전 1 ··· 7 8 9 10 11 12 13 ··· 19 다음 반응형