解决make: *** 没有指明目标并且找不到 makefile。 停止。
执行一下安装keepalived语句报错:
./configure --prefix=/usr/local/keepalived
make
make install
报错信息:
configure: error:
!!! OpenSSL is not properly installed on your system. !!!
!!! Can not include OpenSSL headers files. !!!
[root@jiekou keepalived-2.0.7]# make
make: *** 没有指明目标并且找不到 makefile。 停止。
[root@jiekou keepalived-2.0.7]# make install
解决方法:
那就是执行./configure --prefix=/usr/local/keepalived不成功,原因是OpenSSL is not properly installed on your system.
执行这句话安装OpenSSL:yum install openssl-devel -y