일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- MySQL
- logstash
- 설정
- 유니티
- Kibana
- build
- nodejs
- JavaScript
- elasticsearch
- sample
- Windows
- 엘라스틱서치
- mariadb
- Python
- ssh
- MSSQL
- Ai
- docker
- Git
- s3
- 구글
- ChatGPT
- Linux
- API
- 영어
- unity
- error
- AWS
- JS
- Today
- Total
목록File (3)
가끔 보자, 하늘.
뭔가 실수로 transaction log가 백업되지 않아 커지는 문제가 발생했다면 ldf 파일을 강제로 줄이는 방법이 있습니다. 2008 버전 정도에서는 backup log [db명] with truncate_only 라는 쿼리를 실행해 ldf 파일을 비울 수 있습니다. 만약 truncate_only' is not a recognized backup option 라는 오류가 발생하는 버전이라면 backup log [db명] to disk='null' 이라는 쿼리를 실행해 ldf 파일을 비울 수 있습니다. 간혹 백업 처리 과정마저도 문제가 발생하는 경우는 Database 백업 모드를 simple로 조정 후 shrinkfile('db log logical name' , 1) 이라는 쿼리를 실행하면 log 파..
(https://ongamedev.tistory.com/499- 코드에서 이어집니다.) npm i -D tailwindcss postcss autoprefixer npx tailwindcss init -p vi tailwind.config.js >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (...) content: [ "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", ], (...) > import 'tailwindcss/tailwind.css'; import Link from 'next/link' export default () => ( NextJS Sample Login Home Admi..
클라이언트는 브라우저, 서버는 nodejs로 가정. 업데이트 진행 과정을 확인할 수 있도록 만들었다. 브라우저에서는 아래와 같은 코드로 작업을 하면 된다. 스트림으로 보낼 파일을 지정하고, 해당 서버로 소켓 연결해서 보낸다. 'data' 메세지를 통해 현재 업데이트된 사이즈를 확인할 수 있다.var fn =$("input[type=file]")[0].files[0]; // input 폼을 이용해서 지정된 파일 확인var AllSize = fn.size; // 진행 사항을 체크하기 위한 파일 전체 사이즈var UploadedSize = 0; // 현재 업로드된 용량var socket = io.connect('localhost:8765');var stream = ss.createStream();ss(sock..