그러냐

mysql 수동 설치시 에러 mysql_install_db 실행시 bash err등 본문

mysql

mysql 수동 설치시 에러 mysql_install_db 실행시 bash err등

관절분리 2021. 8. 2. 13:25
반응형

리눅스에서 mysql 수동 설치시 bash 에러가 날 경우

 

https://stackoverflow.com/questions/10570964/bashscripts-mysql-install-db-no-such-file-or-directory

 

파일 잘못받은거임

 

이렇게 linux 파일명이 포함된걸로 다운받아야함

 

mysql-5.5.24-linux2.6-x86_64.tar.gz

 

--------------------------------------------------------------------------------------

 

FATAL ERROR: Could not find ./bin/my_print_defaults

 

./scripts/mysql_install_db 이렇게 상위 폴더에서 실행해야함

 

--------------------------------------------------------------------------------------

 

libaio.so 파일이 없다고함

 

https://centos.pkgs.org/7/centos-x86_64/libaio-devel-0.3.109-13.el7.x86_64.rpm.html

 

libaio-devel-0.3.109-13.el7.x86_64.rpm CentOS 7 Download

libaio-devel-0.3.109-13.el7.aarch64.rpm 0.3.109 aarch64 CentOS Official libaio-devel All All All

centos.pkgs.org

 

여기가서 다운받은후

 

rpm -ivh libaio-0.3.107-10.el6.x86_64.rpm

 

이렇게 실행하고 whereis libaio

 

하면 나온다

 

그다음에 다시

 

./scripts/mysql_install_db 

반응형