当前位置:网站首页>Upgrade openssl-1.1.1p for openssl-1.0.2k
Upgrade openssl-1.1.1p for openssl-1.0.2k
2022-07-05 23:50:00 【Try not to work overtime!】
Previously used version 1.0.2k
![]()
First download 1.1.1 edition
wget https://www.openssl.org/source/openssl-1.1.1p.tar.gz
If the download reports the following error Add... After the connection --no-check-certificate
wget https://www.openssl.org/source/openssl-1.1.1p.tar.gz --no-check-certificate

mkdir /usr/local/openssl-1.1 Create build directory
tar xvf openssl-1.1.1p.tar.gz decompression 1.1.1 Version pack
cd openssl-1.1.1p Switch to the extracted directory
./config --prefix=/usr/local/openssl-1.1/
make && make install compile
ln -s /usr/local/openssl-1.1/bin/openssl /usr/bin/openssl Configure new version
ln -s /usr/local/openssl-1.1/include/openssl/ /usr/include/openssl Configure new version
echo “/usr/local/openssl-1.1/lib” >> /etc/ld.so.conf Update DLL data
chmod 755 -R /usr/local/openssl-1.1/ Propose rights to corresponding documents
ldconfig -v
openssl version -a
If the following information is mentioned :
![]()
This is because openssl The location of the library is not correct , Need to specify and configure again openssl Location of the library
ln -s /usr/local/openssl-1.1/lib/libssl.so.1.1 /usr/lib64/libssl.so.1.1
ln -s /usr/local/openssl-1.1/lib/libcrypto.so.1.1 /usr/lib64/
openssl version View version number in

边栏推荐
- How to insert data into MySQL database- How can I insert data into a MySQL database?
- [gym 102832h] [template] combination lock (bipartite game)
- yate. conf
- Qt 一个简单的word文档编辑器
- How to get all the values stored in localstorage
- Latex multiple linebreaks
- Which side projects can be achieved? Is it difficult for we media to earn more than 10000 a month?
- Objective C message dispatch mechanism
- 21. PWM application programming
- Redis高可用——主从复制、哨兵模式、集群
猜你喜欢
随机推荐
C file and folder operation
Why use weak pointers for delegation- Why use weak pointer for delegation?
VBA fast switching sheet
PADS ROUTER 使用技巧小记
Dynamic planning: robbing families and houses
Use CAS instead of synchronized
In C#, why can't I modify the member of a value type instance in a foreach loop?
Effet Doppler (déplacement de fréquence Doppler)
ts类型声明declare
Part III Verilog enterprise real topic of "Niuke brush Verilog"
Différence entre hors bande et en bande
Zhuan: in the future, such an organization can withstand the risks
[SQL] SQL expansion languages of mainstream databases (T-SQL, pl/sql, pl/pgsql)
[classical control theory] summary of automatic control experiment
Bao Yan notes II software engineering and calculation volume II (Chapter 13-16)
MySQL replace primary key delete primary key add primary key
俄外交部:日韩参加北约峰会影响亚洲安全稳定
How to get all the values stored in localstorage
Use mapper: --- tkmapper
Rasa 3.x 学习系列-Rasa X 社区版(免费版) 更改









