본문 바로가기

데이타베이스74

MYSQL STOPPING server from pid file /usr/local/mysql/var/서버명.pid MYSQL 서비스 시작시 다음과 같은 오류 발생 후 서비스가 시작되지 않는 경우 STOPPING server from pid file /usr/local/mysql/var/서버명.pid DB Data 폴더에 있는 에러 로그를 확인해보세요! cat /usr/local/mysql/var/서버명.err (var OR data) ~~~~ 오류 내용 ~~~~~ 090406 09:16:21 mysqld started InnoDB: No valid checkpoint found. InnoDB: If this error appears when you are creating an InnoDB database, InnoDB: the problem may be that during an earlier attempt you .. 2009. 4. 6.
[mysql] ERROR 1016: Can't open file: '테이블명.MYD'. (errno: 145) 복구 에러 메세지 Error 1016 : Can't open file: '테이블.MYI'. (errno: 145) 복구 방법 명령어 : mysqlcheck -u계정명 -p --auto-repair -B DB명 Enter password : 비밀번호 또는 mysql에 접속후 repair 테이블명; 을 해주셔도 됩니다. mysql> repair table 테이블명; +---------------------+--------+----------+----------+ | Table | Op | Msg_type | Msg_text | +---------------------+--------+----------+----------+ | 테이블명 | repair | status | OK | +-----------------.. 2009. 3. 5.
MYSQL 필드속에 일괄적으로 내용 집어넣기 필드에 이미 값이 있는 상태에서 특정 값을 추가로 집어넣기 예로 reg_date 라는 필드에 "1234"라는 값이 있는데 추가로 "00" 이라는 값을 붙이고 싶을때 concat 을 사용합니다. update member set code = concat(reg_date,"00") 결과 : "123400" 출처 : 세이박스 http://saybox.tistory.com 2009. 1. 15.
MYSQL 설치시 configure: error: 발생시 checking "LinuxThreads"... "Not found" configure: error: This is a linux system and Linuxthreads was not found. On linux Linuxthreads should be used. Please install Linuxthreads (or a new glibc) and try again. See the Installation chapter in the Reference Manual for more information. 가 나타나면.... /usr/include/pthread.h 파일에서 암때나 /* Linuxthreads */ 를 입력 이유 : mysql configure 과정에서 pthread.h 파일을 찾아 위 문.. 2009. 1. 15.