전체 글 64

mac m1 vscode + java + tomcat + postgresql

VScode 다운로드자바 17.0.8.1 다운apache-tomcat 10.1.14postgresql 14.8 1. java 설치https://jdk.java.net/archive/or https://www.azul.com/downloads/?package=jdk#download-openjdk원하는 버전 다운로드 및 설치.   2. vscode + java : Extension Pack for Java 설치 maven 으로 관련 파일들 설치됨. 3. tomcat 연동1) 톰켓 다운로드 : https://tomcat.apache.org/download-10.cgi2) VS code 익스텐션 Community Server Connectors 설치3) 톰켓 추가.    3. DB (docker 설치 후 doc..

카테고리 없음 2024.12.01

AWS ubuntu 22.04 php 7.4 설치.

sudo apt update패키지 저장소sudo apt-get install software-properties-commonsudo add-apt-repository ppa:ondrej/phpsudo apt updatesudo apt-get install php7.4 php7.4-cli php7.4-fpm php7.4-mysql php7.4-gd php7.4-curl php-common php7.4-mbstring php7.4-zip php7.4-xml php7.4-xmlrpc php7.4-opcache패키지 삭제sudo apt-get --purge remove패키지 검색sudo apt-cache search패키지 정보 보기sudo apt-cache show 설치된 패키지 조회apt --installed..

Programming/php 2024.10.19

일라스틱 서치.

elastic search 를 설치하면 해당 주소로 이동해 간단한 테스트를 할 수 있다. (주소는 자신에게 맞게 수정)http://10.30.0.185:5601/app/enterprise_search/overview -> Getting started  1. api key 만들기. -k  -k, --insecure (TLS SFTP SCP) By default, every secure connection curl makes is verified to be secure before the transfer takes place. This option makes curl skip the verification step and proceed without checking. ..

엘라스틱 스택 2024.10.01

엘라스틱 서치 설치

ubuntu 설치 https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html1. pgp 키 가져오기 (Pretty Good Privacy)wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg2. 저장소 정보 업데이트.sudo apt-get install apt-transport-httpsecho "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.c..

엘라스틱 스택 2024.10.01

엘라스틱 스택.

엘라스틱 스택.https://www.elastic.co/elastic-stackELv2 및 SSPL 라이선스 계약.엘라스틱 스택의 핵심컴포넌트 : 엘라스틱서치, 키바나, 로그스태시, 비츠It's comprised of Elasticsearch, Kibana, Beats, and Logstash (also known as the ELK Stack) and more. Reliably and securely take data from any source, in any format, then search, analyze, and visualize.  1) 엘라스틱 서치.- 전문 검색 엔진이자 다목적 데이터 저장소. JAVA 기반이고, 아파치 루씬을 기반으로 만들어짐.https://www.elastic.co/gu..

엘라스틱 스택 2024.09.19