- OBCon_SCADA
- 주요 명령어
- 로그와 Table 확인
- 설치시 필요 사항
OBCon_SCADA
주요 명령어
mysql -uroot -p비밀번호 mysql
mysql -uscada -p비밀번호 scadadb
cd /work/appl/obcon_scada
/work/appl/obcon_scada/scadactl.bash restart
/work/appl/obcon_scada/scada_devicectl.bash start 02
/work/appl/obcon_scada/scada_devicectl.bash stop 02
/work/appl/obcon_scada/scada_devicectl.bash status
ps -ef | grep node
TODAY=`date +%Y%m%d`
cd /work/appl/obcon_scada/logs
tail -f scada_${TODAY}_* | egrep 'error|_handler|Start on data' | egrep '2067|2068'
egrep 'error|_handler|Start on data' scada_${TODAY}_* > zzout001.log
로그와 Table 확인
#--- 로그 모니터링
watch -n 2 ls -alF scada_${TODAY}_*
#--- 오류 조회
tail -f scada_${TODAY}_* | grep -i error
tail -f scada_${TODAY}_* | egrep 'error|_handler|Start on data'
#--- 데이터 접수 확인 과 Handler 실행 확인
grep ${SITEKEY}_${TYPE}_${DEVICEKEY} scada_${TODAY}_* | egrep 'Start on data|_handler'
tail -f scada_${TODAY}_* | grep ${SITEKEY}_${TYPE}_${DEVICEKEY} | egrep '_handler|Start on data'
#--- 데이터 접수 확인
grep 'Start on data' scada_20190225_* | grep ${SITEKEY}_${TYPE}_${DEVICEKEY}
tail -f scada_${TODAY}_* | grep 'Start on data' | grep ${SITEKEY}_${TYPE}_${DEVICEKEY}
#--- Handler 실행 확인
grep _handler scada_20190225_* | grep ${SITEKEY}_${TYPE}_${DEVICEKEY}
tail -f scada_${TODAY}_* | grep _handler | grep ${SITEKEY}_${TYPE}_${DEVICEKEY}
#--- 오류 데이터 삭제
grep 'Delete error receive data' scada_20190225_*
tail -f scada_${TODAY}_* | grep 'Delete error receive data'
#--- Device 데이터 모니터링
mysql -uscada -p비밀번호 scadadb
select site, authenticateId, hash, isAdmin, isGlobalAdmin
from users;
select site, type, deviceKey, eventDatetime, description
from notifications
where site = 2;
select site, type, deviceKey, apply, status
from devices;
select site, type, deviceKey, apply, status, setDatetimeReq, setDatetimeRes
from devices;
select *
from devicedata2s
where siteKey = '02'
and statusDatetime = '20190128193505';
select siteKey, type, deviceKey, statusDatetime, ac, temperature, sensitivity
from devicedata2s
where siteKey = '02';
설치시 필요 사항
ico 이미지 (브라우저에 화면 이름 좌측에 표시되는 이미지)
로그인 화면 하단에 표시되는 이미지
메뉴 좌측 상단에 표시되는 회사 이미지
지도에 표시하는 아이콘 이미지
최종 수정일: 2024-09-30 12:26:19
이전글 :
다음글 :