In this script, we will see how to send emails in Python using the SMTPLIB library. SMTPLIB is a popular python library that is useful to send email via script. You do not have to install it, because the library comes by default. In the below python script we use Gmail for the demo, but […]
Python Script For Login Multiple Server
This post will see how to write a python script for login multiple Unix servers and execute a command. Additionally, the python script is going to save the output of that command in a text file. Automate Boring Stuff With Python Overview of Python Script For Login Multiple Unix Server Before writing any scripts, it […]
How To Configure iSCSI In SVM Netapp Cluster Mode And Windows Server
Today we will discuss how we can configure iSCSI in SVM NetApp Cluster-Mode. Basically iSCSI protocol is used for LUN allocation to various hosts via LAN. In iSCSI, the data transfer happens via Local Area Network. This is why the performance is less in comparison to the FC protocol. You can try to increase […]
Execute Unix Command From Windows Server
As a system administrator, many times situation comes when you need to execute some Unix command from windows. In most of the cases, you will download a putty, login to the Unix server, and then execute a command. Now, if you want to run the Unix command from the Windows command prompt then there is […]
How to Convert Python Scripts To Binary Files (.exe)
In this post, we will see how we can convert python scripts to binary files. In a more pythonic way how to convert .py file to .exe file. But first, lets understand why there is a need of binary files. Automate Boring Stuff With Python Merits of Binary Files The binary file can be executed […]