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

마리아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

MariaDB is hosted on launchpad; You can find the latest source and
email lists at MariaDB in Launchpad

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