Openssl 在SSL模式下运行mesos时出现分段错误

Openssl 在SSL模式下运行mesos时出现分段错误,openssl,mesos,Openssl,Mesos,在SSL模式下运行mesos时,我不断遇到分段错误 回溯coredump后,我发现: #0 0x00007f93060b7592 in free () from /lib/x86_64-linux-gnu/libc.so.6 #1 0x00007f9303ebe8cd in CRYPTO_free () from /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 #2 0x00007f9303f7bfde in EVP_CIPHER_CTX_cleanup

在SSL模式下运行mesos时,我不断遇到分段错误

回溯coredump后,我发现:

#0  0x00007f93060b7592 in free () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x00007f9303ebe8cd in CRYPTO_free () from /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
#2  0x00007f9303f7bfde in EVP_CIPHER_CTX_cleanup () from /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
#3  0x00007f93042e4275 in ?? () from /lib/x86_64-linux-gnu/libssl.so.1.0.0
#4  0x00007f93042e59ca in SSL_set_accept_state () from /lib/x86_64-linux-gnu/libssl.so.1.0.0
#5  0x00007f93059a5c72 in ?? () from /usr/lib/x86_64-linux-gnu/libevent_openssl-2.0.so.5
#6  0x00007f930a801a74 in process::network::internal::LibeventSSLSocketImpl::accept_SSL_callback (request=request@entry=0x7f92f8000a80) at src/posix/libevent/libevent_ssl_socket.cpp:1172
#7  0x00007f930a8021ea in process::network::internal::LibeventSSLSocketImpl::accept_callback (this=this@entry=0x55569161b430, request=request@entry=0x7f92f8000a80) at src/posix/libevent/libevent_ssl_socket.cpp:1124
#8  0x00007f930a8027bc in process::network::internal::LibeventSSLSocketImpl::<lambda(evconnlistener*, int, sockaddr*, int, void*)>::operator()(evconnlistener *, int, sockaddr *, void *, int) (listener=0x555691667980, socket=24, 
    addr=<optimized out>, arg=0x55569161be30, addr_length=<optimized out>, __closure=<optimized out>) at src/posix/libevent/libevent_ssl_socket.cpp:988
#9  0x00007f9305e0829c in ?? () from /usr/lib/x86_64-linux-gnu/libevent-2.0.so.5
#10 0x00007f9305dfa639 in event_base_loop () from /usr/lib/x86_64-linux-gnu/libevent-2.0.so.5
#11 0x00007f930a81c41d in process::EventLoop::run () at src/posix/libevent/libevent.cpp:98
#12 0x00007f93066cbd00 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#13 0x00007f930699c6ba in start_thread () from /lib/x86_64-linux-gnu/libpthread.so.0
#14 0x00007f930613a60d in clone () from /lib/x86_64-linux-gnu/libc.so.6
以及用于运行mesos的命令:

mesos_master --ip=172.24.51.99  --advertise_ip=172.24.51.99 --hostname_lookup=false --acls=file:///opt/mesos/etc/acl.json --modules=file:///opt/mesos/etc/modules.json --port=5050 --quorum=3 --work_dir=/ghostcache2/mesos/registry --zk=zk://mycluster1.random.cluster.com:2181,mycluster2.random.cluster.com:2181,mycluster3.random.cluster.com:2181,mycluster4.random.cluster.com:2181,mycluster5.random.cluster.com:2181/mesos.mycluster --cluster=mycluster --hostname=mycluster2.random.cluster.com --offer_timeout=30secs --webui_dir=/opt/mesos/share/mesos/webui --whitelist=file:///opt/mesos/etc/whitelist --authenticate_agents=true --authenticators=crammd5 --authorizers=local --credentials=file:///opt/mesos/secrets/all_credentials.json --authenticate_frameworks=true
我尝试将mesos(从1.7.0升级到1.9.0)、libevent(从2.0.21升级到2.1.8/2.1.12)升级到最新版本,但仍然没有成功。不知道我错过了什么。感谢您的帮助

mesos_master --ip=172.24.51.99  --advertise_ip=172.24.51.99 --hostname_lookup=false --acls=file:///opt/mesos/etc/acl.json --modules=file:///opt/mesos/etc/modules.json --port=5050 --quorum=3 --work_dir=/ghostcache2/mesos/registry --zk=zk://mycluster1.random.cluster.com:2181,mycluster2.random.cluster.com:2181,mycluster3.random.cluster.com:2181,mycluster4.random.cluster.com:2181,mycluster5.random.cluster.com:2181/mesos.mycluster --cluster=mycluster --hostname=mycluster2.random.cluster.com --offer_timeout=30secs --webui_dir=/opt/mesos/share/mesos/webui --whitelist=file:///opt/mesos/etc/whitelist --authenticate_agents=true --authenticators=crammd5 --authorizers=local --credentials=file:///opt/mesos/secrets/all_credentials.json --authenticate_frameworks=true