본문 바로가기
반응형

Big Data19

Splunk Architecture: Tutorial On Forwarder, Indexer And Search Head If you want to implement Splunk in your infrastructure, then it is important that you know how Splunk works internally. I have written this blog to help you understand the Splunk architecture and tell you how different Splunk components interact with one another.In case you want more clarity on what is Splunk, then I recommend you to read this blog of mine, which will give you an understanding o.. 2019. 2. 5.
How to delete data / index (reset start from scratch) There isn't any great way to do this from the UI. However, there is a really simple way to do this from the command line: splunk stop splunk clean eventdata -index yourindex splunk startIt cleans very fast, since it is just deleting all the files. If you want to clean ALL indexes, just leave off the 2019. 2. 3.
MySQL 원격 접속 허용 MySQL 외부 접속 허용 설정MySQL에 원격 접속 허용하기MySQL에 root 원격 접속 허용하기목차1 문제상황2 확인3 변경4 원래 상태로 복구5 LISTEN IP대역 변경6 같이 보기7 주석1 문제상황[편집]MySQL을 설치하면 기본적으로 로컬(localhost)에서만 접속이 가능하고 외부에서는 접속이 불가능하게 되어 있다.외부에서 접속해보면 다음과 같은 오류 메시지가 나온다.[1]Host '135.79.246.80' is not allowed to connect to this MySQL server Toad for MySQL과 같은 DB 관리 도구를 사용하여 DB에 원격으로 접속하려면 허용해주는 로컬 작업이 필요하다.여기서는 root를 원격에서 접속할 수 있도록 설정한다. 이것을 응용하면 다른 .. 2018. 12. 7.
bitnami mysql를 workbench 통한 원격접속 bitnami mysql를 workbench 통한 원격접속 1. "C:\Bitnami\wampstack-5.6.26-2\mysql\my.ini" 파일 옵션 변경bind-address = 127.0.0.1bind-address = 0.0.0.0bind-address 를 0.0.0.0으로 변경 2. mysql 을 접속한후# mysql -u root -p mysql> CREATE USER 'username'@'1.2.3.4' IDENTIFIED BY 'password'; -> GRANT ALL PRIVILEGES ON *.* TO 'username'@'1.2.3.4' WITH GRANT OPTION; -> \q아래와 같은 쿼리문 실행 username : 계정명1.2.3.4 : 접속할 IPpassword : 비.. 2018. 12. 7.
반응형