LoginSignup
8
8

More than 5 years have passed since last update.

Ubuntu ServerでOpenSSLのバージョンを1.0.1hにする

Last updated at Posted at 2014-06-21

スクリプトの実行

#!/bin/bash

sudo apt-get update
wget http://www.openssl.org/source/openssl-1.0.1h.tar.gz
tar xvfz openssl-1.0.1h.tar.gz
cd openssl-1.0.1h
./config --prefix=/usr --openssldir=/usr/share/ssl shared
make
make test
sudo make install
sudo apt-get update
sudo apt-get -y upgrade openssl

再起動を行う。

OpenSSLバージョンの確認

$ openssl version
OpenSSL 1.0.1h 5 Jun 2014

上記のように表示されればOK

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8