Few months ago I've purchased a fantastic Mini-1U server to my home Lab. It's a SuperMicro SYS-E200-9A in a small box (Width 193mm x Height 43mm x Depth 226mm) with a 4 Core Intel Atom® Processor C3558 CPU and SSD DoM. Here I will collect my notes and useful tips How To install, configure and operate it. So lets start.
I decided to replace SSL and TLS Certificates at my Supermicro IPMI (Intelligent Provisioning Management Interface). Warning: Server will restart after cirtificate update ! There are many options how to create Certificates. Here is two options. One is for Linux and the second is for Windows. Let's start with Linux. To create certificate you need OpenSSL at your Linux installation. It's included in almost all distributives. To check version of OpenSSL use this command: #openssl version OpenSSL 1.0.2g 1 Mar 2016 I suggest to use at least 2048 bit certificate. First we create private 2048 bit RSA key. The filename can be any you wish, in this example I will store private RSA key in pvt.pem. #openssl genrsa -out pvt.pem 2048 or you can user genpkey option #openssl genpkey -algorithm RSA -out pvt.pem -pkeyopt rsa_keygen_bits:2048 Using this private RSA key I create Certificate Request #openssl req -new -key pvt.pem -out crt.pem Then I use my privat
Comments
Post a Comment