1樓:匿名使用者
換成高版本的openssl 編譯
./config --disable-shared --enable-static --prefix=/usr/local/openssl --openssldir=/usr/local/openssl
make
make install 都通過了。
但是找不到 libeay32.a
openssl-1.0.0c目錄下只有libcrypto.a 和libssl.a
2樓:蘇小素
readme看過沒?
install看過沒?
預設就是生成.a的,如果要so,./config shared。
oot@ubuntu3:~/openssl-0.9.
8e# ./config --disable-shared --enable-static --prefix=/usr/local/openssl --openssldir=/usr/local/openssl
operating system: x86_64-whatever-linux2
configuring for linux-x86_64usage: configure [no-...] [enable-...
] [-d***] [-l***] [-l***] [-f***] [-k***] [no-hw-***|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-krb5] [386] [--prefix=dir] [--openssldir=openssldir] [--with-***[=vvv]] [--test-sanity] os/compiler[:flags]
如何在由openssl生成的j**a中使用.key和.crt檔案
3樓:笑喘是病得抽
您好,這樣:
第一步,從key和crt生成
pkcs12格式的回keystore
openssl pkcs12 -export -in mycert.crt -inkey mykey.key
-out mycert.p12 -name tomcat -cafile myca.crt
-caname root -chain
第二步 生成tomcat需要答的keystorekeytool -importkeystore -v -srckeystore mycert.p12 -srcstoretype pkcs12 -srcstorepass 123456 -destkeystore tomcat.keystore -deststoretype jks -deststorepass 123456 。
4樓:匿名使用者
如何生成openssl生成https證書
5樓:匿名使用者
自簽名的ssl證書是不會被瀏覽器信任的,建議您直接**:gworg ssl辦理一個公網信任的證書使用,**又不貴,而且省省力。
linux下如何檢視log檔案,linux中怎樣檢視日誌
cat logfile grep 需要檢視的日期 date.logfile 然後慢慢分析date.logfile 即可 用grep來顯示某個日期的條目.具體命令自己查查 是什麼型別的?如果是應用程式產生的,可以用crontab自動進行日誌的輪轉,使日誌變成單個的小檔案。如apache squid的日...
linux下,怎樣同時修改目錄下所有檔案的建立時間
在linux中,檔案沒有 建立時間 這個說法。linux中的檔案的時間屬性只有三個 atime access time mtime modified time ctime change time 不過,有時有人把ctime理解為create time 建立時間 這是不對的,為什麼呢?因為,我們知道乙...
怎樣深入的學習linux,希望在linux方面有所發展
學習linux分好幾種層次,我個人覺得可以用中學裡學的課文 皰丁解牛 來對比。說白了也就是對事物的認識一般都是由表及裡的過程,學習linux也是一樣的。以前總覺的學理的人只要會數理化就行了,很多老師們由於自身的素質問題也不由自主的暗示著我們這樣做。現在覺得很後悔當初沒有學好文,文太重要了,很多時候他...