SSL Certificate for Free - Tech Arkit





openssl req -new \ certificate.csr

openssl rsa -in privkey.pem -out keyfile.key

openssl x509 -in certificate.csr -out cert.cert -req -signkey keyfile.key -days 365

cp cert.cert /etc/ssl/certs/server.crt

cp keyfile.key /etc/ssl/private/server.key



mkdir -p /etc/pki/tls/private/

mkdir -p /etc/pki/tls/certs/

sudo cp cert.cert /etc/pki/tls/certs/cert.crt

sudo cp keyfile.key /etc/pki/tls/private/server.key



cd /etc/httpd/conf.d/

vim ssl.conf



\VirtualHost *:443\

 ServerAdmin root@localhost

 ServerName TechArkit-Server.local

 DocumentRoot /var/www/html

SSLEngine on

SSLProtocol all -SSLv2 -SSLv3

SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5

SSLHonorCipherOrder on

SSLCertificateFile /etc/pki/tls/certs/arkit.com.crt

SSLCertificateKeyFile /etc/pki/tls/private/arkit.com.key

#SSLCertificateChainFile /etc/pki/tls/certs/arkit.com.csr

\/VirtualHost\



systemctl restart httpd

httpd -t

vi /etc/hosts

192.168.2.43 TechArkit-Server.local

httpd -t

IPv6 Address Assigning to Linux Interface RHCE - Tech Arkit



Youtube PlayLists

RHCE: https://goo.gl/LGTmDK

Shell-Scripting: https://goo.gl/a1Hu3s

Linux-Commands: https://goo.gl/QDoL7h

RHCSA Certification: https://goo.gl/X2Ksqn

Putty Software Tricks: https://goo.gl/MB1Do2

Linux OS: https://goo.gl/62p8s9



Follow Us on Social Media

Telegram Group: https://goo.gl/KPvMda | https://arkit.co.in/one-linux-tutorial/

Reddit: http://bit.ly/redditark | https://goo.gl/mcUvef

Mailing List: http://bit.ly/feedburnerark | https://goo.gl/fb/WAU7JG

Facebook: https://fb.com/linuxarkit | https://goo.gl/2QN4sD

LinkedIn: http://bit.ly/linkedark | https://goo.gl/ZLcikC

Twitter: https://twitter.com/aravikumar48

Google Plus: http://bit.ly/gplusark | https://goo.gl/79zwX9

Network Teaming Configuration in RHEL7 - RHCE - Tech Arkit





Use network teaming or bonding to configure aggregated network links between two Red Hat Enterprise Linux systems. Red Hat Certified Engineer Course. EX300 examination preparation guide.



https://arkit.co.in/rhel7-how-to-configure-nic-teaming/



nmcli connection show

nmcli connection add type team con-name team0 ifname team0 config '{"runner":{"name": "activebackup"}}'

nmcli connection modify team0 ipv4.addresses 192.168.2.156/24 ipv4.gateway 192.168.2.2 ipv4.dns 192.168.2.2 connection.autoconnect yes ipv4.method manual

nmcli connection add type team-slave con-name team0-port0 ifname ens37 master team0

nmcli connection add type team-slave con-name team0-port1 ifname ens38 master team0

nmcli connection show

ip addr



#RHCE #Linux_Tutorial #Certification #Video_Guide