마리아db 수동 설치 중 에러 메시지 해결 방법 질문

우분투 설치 및 부팅과 관련된 문제 해결

Moderator: Dry8r3aD

Post Reply
usr/local
Posts: 1
Joined: 2023/02/02 Thu 11:31 am

마리아db 수동 설치 중 에러 메시지 해결 방법 질문

Post by usr/local » 2023/02/02 Thu 11:42 am

마리아db 설치 전 설정 모두 끝마쳐주고 이제 실행 파일 설치만 하면 거의 성공인데 실행 파일 설치 도중

Installing MariaDB/MySQL system tables in './data' ...
./bin/mysqld: error while loading shared libraries: libsystemd-daemon.so.0: cannot open shared object file: No such file or directory

Installation of system tables failed! Examine the logs in
./data for more information.

The problem could be conflicting information in an external
my.cnf files. You can ignore these by doing:

shell> ./bin/scripts/mysql_install_db --defaults-file=~/.my.cnf

You can also try to start the mysqld daemon with:

shell> ./bin/mysqld --skip-grant --general-log &

and use the command line tool ./bin/mysql
to connect to the mysql database and look at the grant tables:

shell> ./bin/mysql -u root mysql
mysql> show tables;

Try 'mysqld --help' if you have problems with paths. Using
--general-log gives you a log in ./data that may be helpful.

The latest information about mysql_install_db is available at
https://mariadb.com/kb/en/installing-sy ... install_db
MariaDB is hosted on launchpad; You can find the latest source and
email lists at http://launchpad.net/maria

Please check all of the above before submitting a bug report
at http://mariadb.org/jira
란 오류 메시지가 뜨면서 설치가 중지되어버리네요 대충 해석해보면 libsystemd-daemon.so.0을 열수없거나 없다 라는데.... 따로 설치를 해줘야 하는건가요? 아님 심볼릭링크만 설정하면 되는건가요?

Post Reply