개인적인 정리

Cannot find appropriate system libraries for WITH_SSL=system. 본문

DB/MYSQL

Cannot find appropriate system libraries for WITH_SSL=system.

yeon.Biju 2020. 1. 10. 14:55

Cannot find appropriate system libraries for WITH_SSL=system.
Make sure you have specified a supported SSL version. 
Valid options are : 
system (use the OS openssl library), 
yes (synonym for system), 
</path/to/custom/openssl/installation>

CMake Error at cmake/ssl.cmake:65 (MESSAGE):
  Please install the appropriate openssl developer package.

Call Stack (most recent call first):
  cmake/ssl.cmake:293 (FATAL_SSL_NOT_FOUND_ERROR)
  CMakeLists.txt:1181 (MYSQL_CHECK_SSL)

 

 

 

리눅스에서 MySQL 설치시 위와 같은 오류가 발생

 

#yum -y install openssl-devel

Comments