2012년 5월 29일 화요일

SQLyog 서버정보 백업하기


[Windows XP]
C:/Documents and Settings/사용자 아이디/Application Data/프로그램폴더


[Windows 7]
C:/Users/사용자 아이디/AppData/Roaming/프로그램폴더





[EditPlus3]
/EditPlus 3/ftp2_u.ini


[SQLYog]
/SQLyog/sqlyog.ini


[SecureCRT]
/VanDyke/Config/Sessions 하위 디렉토리/파일 전부


[FileZilla]
/FileZilla xml.파일 전부(사이트관리자만 필요할경우 sitemanager.xml)

2012년 5월 17일 목요일

PHP memcached.ini


[memcached]
extension = memcached.so
; Use session locking
; valid values: On, Off
; the default is On
memcached.sess_locking = On
; Session spin lock retry wait time in microseconds.
; Be carefull when setting this value.
; Valid values are integers, where 0 is interpreted as
; the default value. Negative values result in a reduces
; locking to a try lock.
; the default is 150000
memcached.sess_lock_wait = 150000
; memcached session key prefix
; valid values are strings less than 219 bytes long
; the default value is "memc.sess.key."
memcached.sess_prefix = "memc.sess.key."
; memcached session binary mode
memcached.sess_binary = Off
; Set the compression type
; valid values are: fastlz, zlib
; the default is fastlz
memcached.compression_type = "fastlz"
; Compression factor
; Store compressed value only if the compression
; factor (saving) exceeds the set limit.
;
; store compressed if:
; plain_len > comp_len * factor
;
; the default value is 1.3 (23% space saving)
memcached.compression_factor = "1.3"
; The compression threshold
;
; Do not compress serialized values below this threshold.
; the default is 2000 bytes
memcached.compression_threshold = 2000
; Set the default serializer for new memcached objects.
; valid values are: php, igbinary, json, json_array
;
; json - standard php JSON encoding. This serializer
; is fast and compact but only works on UTF-8
; encoded data and does not fully implement
; serializing. See the JSON extension.
; json_array - as json, but decodes into arrays
; php - the standard php serializer
; igbinary - a binary serializer
;
; The default is igbinary if available and php otherwise.
memcached.serializer = "igbinary"

2012년 5월 11일 금요일

IE9 인터넷 익스플로러9 속도 저하 (랙) 없애기

인터넷 옵션 -> 고급 -> 가속 그래픽 -> GPU 렌더링 대신 소프트웨어 렌더링 사용*

체크 후 재시작

2012년 5월 8일 화요일

MySQL 유저생성 및 권한 설정

# MySQL --> user1 계정에 DB_이름 형태의 DB를 생성하면서 모든 권한을 부여
GRANT ALL PRIVILEGES ON `DB_%`.* TO user1@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;



# 적용
FLUSH PRIVILEGES;

2012년 5월 7일 월요일

MySQL 함수 만들기 설정

# 함수 만들기 설정 확인
SHOW GLOBAL VARIABLES LIKE 'log_bin_trust_function_creators';


# 설정 ON
SET GLOBAL log_bin_trust_function_creators='ON';


# 적용
FLUSH PRIVILEGES;

MySQL 이벤트 스케쥴러 설정

# MySQL 5.1 이상

# 이벤트 스케쥴러 설정 확인
SHOW VARIABLES LIKE '%event%';

# 이벤트 스케쥴러 ON
SET GLOBAL event_scheduler = ON;

# 이벤트 스케쥴러 OFF
SET GLOBAL event_scheduler = OFF;

# 환경설정에 추가 (my.cnf)
event_scheduler=ON



# 적용
FLUSH PRIVILEGES;

2012년 5월 6일 일요일