[계정 백업]
tar cvf 파일명.tar 압축할 폴더/
tar cvf 파일명.tar --excloude=제외할 폴더 압축할 폴더/
[계정 복구]
tar xvf 파일명.tar
압축할때 z 옵션.
[MySQL 백업]
mysqldump -u사용자ID -p비밀번호 DB이름 > DB이름.sql
[MySQL테이블 단위 백업]
mysqldump -u사용자ID -p비밀번호 DB이름 테이블이름 > DB이름_테이블이름.sql
[DB복구]
mysql -u아이디 -p패스워드 복구할 DB이름 < db.sql (백업한 자신의 DB파일)
[계정용량 확인]
du -h --max-depth=0
[Mysql DB생성 만들기]
mysql -u roo -p
password ****
mysql> create database test;
mysql> grant all privileges on test.* to test@localhost identified by 'testpw' with grant option;
mysql> FLUSH PRIVILEGES;
test 는 database 명이고 test : id, 'testpw' : 비밀번호입니다. 님의 경우는 아래와 같이하면 사용자 계정을 생성할수 있습니다.
mysql> grant all privileges on testsql.* to tester@'%' identified by 'tester에 해당하는 비밀번호' with grant option;
[Mysql 비번 수정]
쉘 : # mysqladmin 사용자 password new_password
mysql: set password=password(new_password);
[한글 인코딩]
한글 UTF-8 인코딩을 원할 경우
$ export LC_ALL=ko_KR.utf8
EUC-KR 인코딩을 원할 경우
$ export LC_ALL=ko_KR.euckr
1. 사용자 디렉토리에 .profile 파일에 다음으로 변경 예)UTF8 환경
#LANG=C
#LANGUAGE=C
LANG=ko_KR.UTF-8
LANGUAGE=ko_KR.UTF-8
2. /etc/sysconfig/i18n 편집 예)UTF8 환경
다른거 주석처리하고 다음줄 추가
LANG="en_US.UTF-8"
SYSFONT="latarcyrheb-sun16"
'IT' 카테고리의 다른 글
조선일보 폰트. (0) | 2007.03.01 |
---|---|
서태지 컴파니 CSS (0) | 2007.02.21 |
리눅스 Mysql 계정 추가 하기 (0) | 2007.02.17 |
PStart 프로그램 업데이트 ~ (0) | 2007.02.15 |
PHP4.1 로 업그레이드로 인한 DB 로그인 오류. (0) | 2007.02.14 |