Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- xargs
- vscode
- Source
- tomcat
- Windows
- resource
- lsof
- 네트워크
- web.xml
- Mac
- 줄바꿈 문자
- port
- maVen
- JavaScript
- Eclipse
- 단축키
- context
- GIT
- IntelliJ
- Quartz
- Windows 10
- VirtualBox
- plugin
- ssh
- import
- profile
- bash
- grep
- netsh
- find
Archives
- Today
- Total
develog
[mariadb] isolation level 변경하기 본문
/etc/mysql/my.cnf 설정 파일에 아래 내용을 추가한다
# /etc/mysql/my.cnf
[mysqld]
transaction-isolation = READ-COMMITTED
mariadb 를 재시작한다
변경됐는지 확인한다
select @@global.tx_isolation,
@@session.tx_isolation,
@@autocommit;
Comments