컴퓨터
-
-
mysql의 백업과 복원컴퓨터 2009. 1. 23. 03:11
1. mysql 덤프하기 (백업) mysqldump -u[사용자아이디] -p 데이터베이스명 [테이블명] > 저장될 파일명 ex) mysqldump -unaver -p mydatabase > naver_20061217.sql 예) mysqldump -unaver -p mydatabase member_table > naver_20061217.member_table.sql 2. mysql restore (복구) mysql -u[사용자아이디] -p [디비명] < 덤프파일명 예) mysql -unaver -p naver < naver_20061217.sql 머 100프로 깔끔하게 되진 않을수 있다. euc_kr 기반의 데이타 베이스에서 utf로 컴파일된 mysql에서는 젤케 하면 한글 다깨진다. 그럼 방법은.....
-
리눅스에서 VNC 설정컴퓨터 2009. 1. 7. 10:17
[root@localhost test]#yum -y install vnc [root@localhost test]#yum -y install vnc-server [root@localhost test]#cd ~ [root@localhost test]#mkdir .vnc -> /root/.vnc 디렉토리 생성!! [root@localhost test]#vi /etc/sysconfig/vncservers --> 마지막 줄에 VNCSERVERS="1:root"추가 [root@localhost test]#vncpasswd passwd : 임의로 설정 verify : 임의로 설정 [root@localhost test]#vi /root/.vnc/xstartup --> 3,4라인 주석 제거 접속 할 때에는 vnc 를 실..
-