일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- xPlatform
- SSL
- Kotlin
- hadoop
- JavaScript
- plugin
- Sqoop
- Java
- Eclipse
- Android
- NPM
- vaadin
- mapreduce
- SQL
- 공정능력
- MSSQL
- table
- IntelliJ
- tomcat
- Express
- mybatis
- R
- Spring
- Python
- GIT
- react
- SPC
- 보조정렬
- es6
- window
- Today
- Total
목록was (19)
DBILITY
CATALINA_OPS에 옵션 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=PORT \ -Dcom.sun.management.jmxremote.ssl=false \ -Dcom.sun.management.jmxremote.authenticate=false \ -Djava.rmi.server.hostname=REAL_IP_ADDRESS 을 추가 후 재시작, 원격서버일 경우 localhost나 127.0.0.1을 입력하면 접근 안되더라는 socket오류 등이 발생한다면 서버측 방화벽 확인이 필요하다. #!/bin/sh export CATALINA_HOME=/opt/tomcat export CATALINA_OPTS="$CATALINA_O..
매번 배포때마다 지겹기도 하다. 실은 배포 예약을 하고 싶어서 간단하게 작성을 했다가 WAS가 불행하게도 종료되지 않을 경우를 대비하여 검색해서 코드를 추가했다. crontab과는 별개로 1회성 실행예약은 atd를 사용하면 된다. at -t yyyymmddhhMM -f shellscript.sh 형태로 입력하면 예약 실행이된다. at -l 하면 목록을 볼 수 있다. 삭제는 at -d job-number로 가능하다. at -c job-number는 내용을 볼 수 있다. log는 cat /var/log/cron #!/bin/sh export CATALINA_HOME=/opt/tomcat /bin/su -p -s /bin/sh root $CATALINA_HOME/bin/shutdown.sh sleep 10 i..
watch -n 10 'netstat -anp | grep ":80\|:443" | grep ESTABLISHED | wc -l' or watch -n 10 'netstat -anp | grep ":80\|:443" | egrep "(ESTABLISHED|SYNC)" | wc -l' 10초마다 명령을 실행하여 화면에 표시해 준다. netstat, grep, egrep, wc 명령의 옵션들은 알아서 찾아 보자. watch --help Usage: watch [options] command Options: -b, --beep beep if command has a non-zero exit -c, --color interpret ANSI color and style sequences -d, --differen..
기억이 나지 않는다. 모르겠다. 적어 두자. [root@localhost tomcat]# ./bin/version.sh Using CATALINA_BASE: /opt/tomcat Using CATALINA_HOME: /opt/tomcat Using CATALINA_TMPDIR: /opt/tomcat/temp Using JRE_HOME: / Using CLASSPATH: /opt/tomcat/bin/bootstrap.jar:/opt/tomcat/bin/tomcat-juli.jar Server version: Apache Tomcat/8.0.52 Server built: Apr 28 2018 16:24:29 UTC Server number: 8.0.52.0 OS Name: Linux OS Version: 3..