일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- Mac
- 줄바꿈 문자
- Eclipse
- vscode
- find
- Windows
- ssh
- grep
- VirtualBox
- profile
- resource
- import
- 단축키
- 네트워크
- lsof
- plugin
- netsh
- bash
- web.xml
- context
- maVen
- IntelliJ
- Windows 10
- GIT
- xargs
- port
- Quartz
- tomcat
- Source
- Today
- Total
목록전체 글 (1785)
develog
-- characterSet, collate 설정 (데이터베이스 레벨)ALTER DATABASE my_database CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;-- characterSet, collate 설정 (테이블 레벨)ALTER TABLE my_table CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;-- characterSet, collate 설정 (컬럼 레벨)ALTER TABLE my_column MODIFY column_name VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

/etc/mysql/my.cnf 설정 파일에 아래 내용을 추가한다# /etc/mysql/my.cnf[mysqld]transaction-isolation = READ-COMMITTED mariadb 를 재시작한다 변경됐는지 확인한다select @@global.tx_isolation, @@session.tx_isolation, @@autocommit;
-- deadlock 확인show engine innodb status;-- isolation 확인select @@global.tx_isolation, @@session.tx_isolation;-- 글로벌 isolation 레벨 변경SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED;-- 세션 isolation 레벨 변경SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;

맥에서 tar 로 압축하고리눅스에서 tar 를 압축해제 할 때tar cvfz build.tar.gz build/* '._' 으로 시작하는 파일들이 생긴다 아래 방법으로 tar 압축하면 '._' 파일이 생기지 않는다COPYFILE_DISABLE=1 tar cvfz build.tar.gz build/*

about:config 를 입력하고security.mixed_content.block_active_content 설정을 false 로 설정한다

에러 메시지Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type ‘allow pasting’ below and hit Enter to allow pasting. 콘솔 입력창에 'allow pasting' 을 입력하고 엔터를 누른다다시 붙여넣기를 한다