Email: inbox [at] sysadmin.lk
LinkedIn: https://www.linkedin.com/in/prabatht
Facebook: https://www.facebook.com/prabath.hinoize
Related Articles
How To Save All Docker Images And Copy/Move To Another Host?
Follow the below steps to export all docker images and import them to another system. Step #1 Export or save all images to one tar file. docker save $(docker images –format ‘{{.Repository}}:{{.Tag}}’) -o allimages.tar Step #2 scp -i key.pem rocky@192.168.1.1:/tmp/allimages.tar . Step #3 Load all images to docker on new host. docker load -i allimages.tar
Connect Cisco SPA400 SIP Gateway (4 FXO Ports) with Asterisk
On Asterisk /etc/asterisk/sip.conf, you need to configure the account exactly similar to User ID of SPA400 The entries in sip.conf to enable Asterisk register to SPA400 are as follow: [general] register => 9000@192.168.0.6/9000 Replace 9000 with the value you entered in the User ID of SPA400, and replace 192.168.0.2 with the IP address of the […]
secure your web site with SSL (letsencrypt) in Sinhala (සිංහල)
අද මම කියල දෙන්නේ apache වල virtual host එකක් හදල free SSL certificate එකක් දාන විදිය ssl දන්නා කලින් ඔයාල mod ssl install කරගන්න ඕන මේ විදියට. [root@test]# yum install mod_ssl අපි free SSL දාන්නේ letsencrypt වලින්. එකට අපි GIT install කරගෙන එකේ clone එකක් හදාගමු අපේ host එකේ [root@test]# yum install git [root@test]# sudo […]