下载native 地址:http://tomcat.apache.org/download-native.cgi tar -xvzf tomcat-native-1.2.10-src.tar.gz (修改为你下载的最新版本) cd tomcat-native-1.1.10-src/native/ (修改为你下载的最新版本) ./configure
如果执行./configure的时候出现openssl错误 https://www.openssl.org/source/下载最新的版本 执行如下命令: tar -xvzf openssl-1.1.0e.tar.gz(注意最新版本,否则可能报错) cd openssl-1.1.0e/ ./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl make && make install
安装好以后,进入再次进入native目录 ./configure --width-ssl=/usr/local/openssl make && make install