일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- apache mod rewrite
- PHP 구글 OTP 인증
- mysql root 비밀번호 변경
- modsecurity 설치
- bootstrap
- PHP 정규식 예제
- JQuery checkbox 컨트롤
- svn 충돌 해결 resolved
- group_concat 구분자
- usb efi 시스템 파티션 삭제
- magic bytes
- javascript
- PHP 구글 OTP 연동
- php 특정 문자열 취환
- 세로 중앙 정렬
- (using password: YES)" when trying to connect
- 아파치 웹 서버의 정보 숨기기
- 비밀번호정규식
- 구글 OTP 인증
- 파라미터 & 오류
- 비밀번호검증정규식
- html pdf 변환
- 부트스트랩4 세로 중앙 정렬
- wkhtmltopdf 실행 오류
- 자바스크립트비밀번호검증
- 우분투 mysql 비밀번호 없이 로그인 될때
- libxrender1
- bootstrap modal
- svn 충돌 해결 resolve
- mysqldump: Got error: 1045
- Today
- Total
목록분류 전체보기 (273)
투덜이 개발자
[MySQL] 로컬에 설치된 MySql 한글처리 1. 파일열기 C:\Program Files\MariaDB 10.6\bin\my.ini 2. 아래와 같이 수정 [mysqld] datadir=C:/Program Files/MariaDB 10.6/data port=8835 innodb_buffer_pool_size=4077M innodb_strict_mode = 0 innodb_log_file_size = 512M character-set-server=utf8 general_log=ON log_bin_trust_function_creators = TRUE character-set-client-handshake = FALSE init_connect="SET collation_connection = utf8_g..
// 새로 고침 const entries = performance.getEntriesByType("navigation")[0]; if (entries.type === "reload") { console.log('새로고침'); }
MySQL 날짜 SORT(order by) 가 안될 경우 select h_seq , history_date , DATE_FORMAT(history_date,'%Y') as history_year , DATE_FORMAT(history_date,'%m.%d') as history_date , contents from tbl_history where view_yn = 'Y' and del_yn = 'N' order by history_date desc, h_seq desc h_seq|history_date|history_year|history_date|contents | -----+------------+------------+------------+--------------------------------..
MySQL에서 Oracle처럼 ROWNUM 사용법 https://developer-jjun.tistory.com/23 [MySQL] ROWNUM을 사용하여 번호매기기 MySQL에서 Oracle처럼 ROWNUM 사용법 SET구문을 사용하여 ROWNUM 값을 초기화 후 조회 SET @rownum:=0; SELECT @rownum:=@rownum+1, b.* FROM buyingboard b WHERE절에서 초기화 SELECT @rownum:=@rownum+1, b.* FROM buyingboard b WHERE (@rown developer-jjun.tistory.com
ERMASTER INSTALL ( 수동 설치 ) 오랜만에 다시 설치 할려니 설치가 되지 않아 구글링 결국 수동 설치 org.insightech.er_1.0.0.v20150619-0219,plugins/org.insightech.er_1.0.0.v20150619-0219.jar,4,false https://codedragon.tistory.com/7435 ERMASTER - install(수동 설치하기) ERMASTER - install(수동 설치하기)· ERMASTER 파일 다운로드· ERMASTER 파일 설치하기· bundles.info 파일 수정하기· 이클립스 재시작 ERMASTER 파일 다운로드http://codedragon.tistory.com/5896 ERMASTER 파일 설치하기ecl code..
DB 서버 외부 mysql 커넥션 지연시 처리 # vi /etc/my.cnf [mysqld] skip-external-locking skip-host-cache skip-name-resolve https://senioradm.tistory.com/26 [DB tuning] skip-name-resolve MySQL Server는 외부로부터 접속 요청을 받을 때마다 인증을 위해서 IP 주소를 hostname으로 바꾸는 과정을 거치게 되는데 접속하는 커넥션 수가 많다면 서버에 부하가 발생된다. 이런 경우 my.cnf에서 s senioradm.tistory.com https://hoguinside.blogspot.com/2013/12/db-mysql.html HoguInside & ㅁ ㅇ ㄷ nail: db ..
MySQL mysql-bin(binary logs) 정리 및 삭제 무한정 늘어나는 MySQL 로그들... 정리가 필요하다.. mysql> show binary logs; mysql> purge master logs to 'mysql-bin.000220'; Query OK, 0 rows affected (0.32 sec)
현재 연결되어 있는 연결수는 아래 스크립트로 확인 할 수 있다. SHOW STATUS LIKE 'Threads_connected'; 커넥션 연결 정보를 확인할 수 있다. show variables like '%max_connect%'; Too many connections 와 같은 커넥션 오류가 발생한다면 아래명령어로 mysql 재부팅하지 않고 바로 적용하여 늘릴 수 있다. set global max_connections = 200; # vi /etc/my.cnf 에서 수정하는 경우 [mysqld] max_connections = 505