IT
-
JVM 환경에서 LDAP 연동 후 빈번한 로그인 실패 발생시 대응 방법출처: https://mcpaint.tistory.com/276 [MC빼인트와 함께]IT 2019. 8. 22. 16:45
https://mcpaint.tistory.com/276 JVM 환경에서 LDAP 연동 후 빈번한 로그인 실패 발생시 대응 방법 Jenkins에 LDAP을 연결하였는데 너무 빈번하게 로그인 실패가 발생하였다. 로긴 한번 하려면 2~3번 정도는 실패.. 안되겠다 싶어 로그를 보니 아래와 같은 로그가 많았다. org.acegisecurity.AuthenticationServic.. mcpaint.tistory.com JVM 환경에서 LDAP 연동 후 빈번한 로그인 실패 발생시 대응 방법 Jenkins에 LDAP을 연결하였는데 너무 빈번하게 로그인 실패가 발생하였다. 로긴 한번 하려면 2~3번 정도는 실패.. 안되겠다 싶어 로그를 보니 아래와 같은 로그가 많았다. org.acegisecurity.Authent..
-
이벤트뷰어 백업IT 2019. 6. 18. 18:14
@echo off net use \\ip\Backup\log\Eventlog /user:id pw #set "date=%YYYY%%MM%%DD%" set "target=\\ip\Backup\log\Eventlog" wmic nteventlog where filename='Application' backupeventlog "%target%\Application-%ComputerName%_%date%.evt" wmic nteventlog where filename='Security' backupeventlog "%target%\Security-%ComputerName%_%date%.evt" wmic nteventlog where filename='System' backupeventlog "%target%\S..
-
nagios notiIT 2019. 4. 30. 10:54
#출처 https://github.com/obaarne/Nagios2Slack/blob/master/slack_host_notify.sh #!/usr/bin/env bash # Edit your Slack hook URL and footer icon URL SLACK_URL=https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX FOOTER_ICON=http://env.baarnes.com/Nagios.png # Host Notification command example : # define command { # command_name slack-host # command_line /usr/lib64/nagios/plug..
-
쉘스크립트 리스트IT 2019. 4. 16. 15:34
리스트 이름.txt 리스트 MDB명.txt 리스트 user.txt 아래 명령어에 txt 안에 있는 리스트명 넣고 싶을때 Connect-Mailbox -Identity "이름" -Database "MDB" -User "mb14" --------- #!/bin/bash cat 리스트 이름.txt| while read line do echo ""Connect-Mailbox -Identity "\"$line"\" done >> a1 cat MDB명.txt | while read line2 do echo ""-Database "\"$line2"\" done >> a2 cat user.txt | while read line3 do echo ""-User "\"$line3"\" done >> a3 root@dev p..