기타게임 분류
mysql 설치하면서 발생한 에러 해결방법
컨텐츠 정보
- 43 조회
- 0 추천
- 0 비추천
-
목록
본문
root@localhost:/opt/mysql/scripts# ./mysql_install_db --base-dir=/opt/mysql --datadir=/opt/mysql/data
FATAL ERROR: Could not find ./bin/my_print_defaults
If you compiled from source, you need to run 'make install' to
copy the software into the correct location ready for operation.
If you are using a binary release, you must either be at the top
level of the extracted archive, or pass the --basedir option
pointing to that location.
FATAL ERROR: Could not find ./bin/my_print_defaults
해결은
21 basedir="/opt/mysql"
22 builddir=""
23 ldata="/opt/mysql/data"
위 라인에 직접 basedir ldata 에 직접 경로 넣어주고
./mysql_install_db
FATAL ERROR: Could not find ./bin/my_print_defaults
If you compiled from source, you need to run 'make install' to
copy the software into the correct location ready for operation.
If you are using a binary release, you must either be at the top
level of the extracted archive, or pass the --basedir option
pointing to that location.
FATAL ERROR: Could not find ./bin/my_print_defaults
해결은
21 basedir="/opt/mysql"
22 builddir=""
23 ldata="/opt/mysql/data"
위 라인에 직접 basedir ldata 에 직접 경로 넣어주고
./mysql_install_db
-
등록일 09.07
-
등록일 09.07
관련자료
댓글 0
등록된 댓글이 없습니다.