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下如何設定靜態路由,Linux怎麼新增靜態路由?
在linux下設定永久路由的方法 1.在 etc rc.local裡新增 2.在 etc sysconfig network裡新增到末尾3.etc sysconfig static router any net x.x.x.x 24 gw y.y.y.y開啟 ip proc sys net ipv4...
linux塊裝置掛載問題求助,linux下掛載檔案的時候總是出現如下提示是怎麼回事?
不知道你的linux是哪種的linux,什麼版本的。我想你的問題就出現在 從分割槽到掛載完成這段。一 如果你分的本機硬碟,在用fdisk分割槽完用w儲存退出之後,系統會有個提示,讓你敲partprobe或partx命令讓核心讀取你的分割槽資訊 rhel6是用partx命令 而且可能要敲二三遍才能看見...
Linux下zip壓縮檔案時怎樣排除指定的檔案
確實是用引數 x aaa bbb 兩個資料夾要寫全路徑。如 zip r test.zip test x test aaa x test bbb 在用tar命令打包的時候,增加引數 exclude 就能達到目的。例如 以tomcat 為例,打包的時候要排除 tomcat logs 目錄,命令如下 ta...