본문 바로가기

전체 글

8080 포트 프로세스 종료 - cmdnetstat -ano | find "LISTENING" | findstr ":8080" >nul && (for /f "tokens=5" %a in ('netstat -ano ^| find "LISTENING" ^| findstr ":8080"') do taskkill /F /PID %a >nul 2>&1 & echo killed) || echo no process on 8080 - power shell$p = Get-NetTCPConnection -LocalPort 8080 -ErrorAction SilentlyContinue; if ($p) { Stop-Process -Id $p.OwningProcess -Force; echo "killed" } else { echo "no process .. 더보기
OrcaSQL v0.2.0 OrcaSQL OrcaSQL은 Windows 11 및 macOS를 지원하는 MySQL 데스크톱 GUI 클라이언트입니다.쿼리 편집·결과 그리드 인라인 편집·스키마 관리·SSH 터널을 통합한 Wails v3 기반 네이티브 앱입니다.소스 코드는 Private 저장소에서 관리됩니다. 이 저장소는 릴리스 바이너리만 제공합니다.주요 기능연결 관리다중 MySQL 연결 동시 운용 (연결 탭)SSH 터널 / HTTP 프록시 경유 연결연결 그룹화, 색상 태그, 드래그 정렬OS 키체인(Keychain / Credential Manager) 비밀번호 보안 저장다중 인스턴스 동시 실행 지원SQL 에디터Monaco 기반 SQL 에디터 (VS Code와 동일한 엔진)DataGrip 스타일 자동완성 — 테이블·컬럼·db.table .. 더보기
Intellij Idea에서 unable to find valid certification path to requested target 오류 unable to find valid certification path to requested target 오류 발생 1. 인증서를 구한다.2. 자바를 설치한다. (예. 자바 21)3. 터미널을 실행한다.4. 아래 명렁어를 터미널에서 실행한다. ( 자바 설치후 환경 변수 미 설정시 C:\Program Files\Java\jdk-21\bin\keytool.exe ) keytool.exe -import -trustcacerts -file "C:\Users\Administrator\Downloads\인증서.cer" -alias companyca -keystore "C:\Users\Administrator\AppData\Local\Programs\IntelliJ IDEA\jbr\lib\security\.. 더보기
React 19 Cheat Sheet React Server Components빌드 시간 또는 요청별로 실행되는 서버 렌더링 컴포넌트.// dashboard.tsximport * as db from './db.ts'import { createOrg } from './org-actions.ts'import { OrgPicker } from './org-picker.tsx'// look! it's async!export async function Dashboard() { // wait a sec! const orgs = await db.getOrgs() return ( {/* this is all server-only code */} Dashboard {/* OrgPicker is a client-side c.. 더보기
WSL1 Rocky OS 8.5 PHP 7.4 설치해보기 rockyos8.5 다운로드 주소 : https://github.com/rocky-linux/sig-cloud-instance-images/blob/Rocky-8.5-x86_64/rocky-8.5-docker-x86_64.tar.xz GitHub - rocky-linux/sig-cloud-instance-images Contribute to rocky-linux/sig-cloud-instance-images development by creating an account on GitHub. github.com # 설치 # 설치 폴더 세팅 (개별 설정) cd d:\ mkdir AppData\RockyLinux8 # wsl ver 1 세팅 wsl --set-default-version 1 # wsl --imp.. 더보기
vscode에서 spring boot 설치해보기 1. vscode download Visual Studio Code - Code Editing. Redefined Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 2. Java in Visual Studio Code Java in Visual Stud.. 더보기
centos apache 에서 vue router history mod가 안될때 .htaccess 파일 업로드 RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] .htaccess 인식을 못할경우 추가 vi /etc/httpd/conf/httpd.conf Options -Indexes +FollowSymLinks AllowOverride FileInfo AuthConfig Limit ssl이 있는경우 ssl.conf는 별도 추가 설정 안함. 참조 Apache 2.2 섹션설정https://httpd.apache.org/docs/2.2/ko/sec.. 더보기
javascript 타이머 특정 시간(cycleSecond ) 마다 반복 실행 var cycleSecond = 5; // 주기 (초) setInterval(function() { event(); //이벤트 },cycleSecond*1000); 특정 시간(cycleSecond ) 이후 이벤트 발생function timer_event(){ event(); //이벤트} setTimeout(timer_event(), cycleSecond*1000); 더보기