Showing posts with label ibmendpoint. Show all posts
Showing posts with label ibmendpoint. Show all posts
IBM Endpoint Manager for Server Automation V8.2, is an add-on to other Tivoli Endpoint Manager solutions. This domain offers a range of server automation capabilities from provisioning VMware virtual machines to deploying middleware softwares like IBM DB2 , IBM Websphere Application Server and Microsoft SQL Server. Advanced server automation capabilities will help you lower your costs and improve efficiency.

IBM Endpoint Manger for Server Automation (IEMfSA) is uniquely positioned as an advanced server automation solution in the Tivoli portfolio that builds on lifecycle management capabilities to enhance IT automation and provide a bridge to cloud computing.

IEMfSA V8.2 features:
        1. Ability to manage physical and virtual endpoints in your data centers.
        2. Support for deploying and managing complex middleware softwares like IBM DB2, IBM WAS and Microsoft SQL Server.
        3. Delivers an easy way to build custom content with a powerful Relevance scripting language.
        4. Allows cross-server sequencing of existing and new fixlets with the help of Automation Plans.
        5. Painless and in-expensive automatic updates of new and current features via the TEM content delivery cloud based service.
Capabilities of IEMfSA v8.2:

Physical and virtual server management provides a single interface across patch management, lifecycle management, and server automation, and simplifies operations and lowers costs. It improves the visibility and control of all your systems including the ability to view and manage both physical and virtual endpoints (laptops, desktops, and servers) from a single interface.

Automation Plans provides the ability to sequence simple Tivoli Endpoint Manager automation tasks into a broader automation flow known as a automation plan which can be saved and reused. These cross-server sequenced tasks enable automation of previously manual operations, helping improve application delivery time and reduce labor costs. This includes the automation and integration of tasks such as creating virtual machines, deploying operating systems, deploying softwares, and setting and enforcing security and compliance settings. Below is a screenshot of a simple automation plan:


Middleware deployment of multitiered business applications typically require a lot of manual intervention to get them deployed and configured in the optimal way to deliver business services. IBM Endpoint Manager for Server Automation provides the ability to easily deploy, configure and manage a variety of middleware applications like IBM DB2, IBM WAS and Microsoft SQL Server.

With IBM Endpoint Manager for Server Automation an organization can leverage advanced server automation capabilities with proven Tivoli Endpoint Manager benefits. IEMfSA simplifies server automation and reduce costs for IT operations.

More Information:
Download datasheet for IBM Endpoint Manager for Server Automation
IBM Endpoint Manager for Server Automation offering
IEMfSA quick start guide 

Architecture of IEMfSA component:


 

IBM Endpoint Manager for Server Automation



Tivoli Endpoint Manager (TEM) can manage physical and virtual targets like servers, desktops, laptops, and specialized equipment such as point-of-sale devices, ATMs and self-service kiosks. One thing that TEM has mastered is patch deployment - a daily need for any organization with more than 2000 computers.

TEM can perform software deployment on 'N' machines with just a few clicks.However TEM lacks the capability to deploy large softwares like DB2 , Websphere Application Server , Oracle , Microsoft SQL Server and many such middle-ware softwares. Why din't TEM provide any fixlets for Middle-ware Management ??? Well deploying Middle-ware is not a every task like deploying latest patches ... Middle-ware softwares are used for datacenters and backend infrastructure.
Lets have a look at what a fixlet is ... Key components of the TEM platform include the TEM Agent, TEM Server and Console, TEM Fixlet messages, and TEM Relays.

TEM Server is the master and TEM agents are the slaves. Server sends commands and slaves listen and implement them if required. TEM Relay lies between the two trying to reduce the load of the Server. Note TEM Relay is a special TEM Agent acting as a bridge between the master and slaves ( Non-technically Relay is a Good slave ).

What are TEM Fixlets then ???? They are a form of questions and answers (commands) sent by TEM Server to all the TEM Clients including our special slave - TEM Relay. Below diagram gives an idea about TEM architecture ...


What is a relevance ??? In simple terms its like a Multiple Choice Question (MCQ) that the TEM server asks the TEM client. If the client answers an option from the valid answers , the relevance is said to be true else false. So Any question asked to the TEM client as a part of "Fixlet Relevance" should be answered in the form of true or false only. So a fixlet consists of multiple relevances and multiple actions (remediation).

For example if you had to decide which computer to deploy WAS on , you'll have the below check list :

  • Which flavor of computers to deploy on ? 
  • What kind of platform architectures WAS supports ? Does it match the architecture of the target computer ?
  • Locale of WAS to install ?
  • Is WAS already installed ? If yes then what version ?
  • Does the computer match the minimum system requirements for installing WAS ?

Lets try to get these questions in the form of relevance language , which the TEM client can understand ...

Which flavor of computers to deploy on ?
Relevance :
name of operating system as lowercase starts with "win"

What kind of platform architectures WAS supports ? Does it match the architecture of the target computer ?
Relevance :
architecture of operating system = "x86_64"

Locale of WAS to install ?
Relevance :
system language as string contains "English"

Is WAS already installed ? If yes then what version ?
Note : This is technique to find out if WAS is already installed or not. There are default methods to find out if a software is installed on a machine. Methods include checking for existence of a application specific file , folder , service , registry entry etc...
 Relevance :
not exists service whose ( service name of it as lowercase contains "ibm websphere application server" )

Does the computer match the minimum system requirements for installing WAS?
Note : In this case we can check for RAM only, however it can be a more specific check.
Relevance :  
size of ram >= 4 * 1024 * 1024 * 1024 

Wondering why am I writing the Relevance in English ? That's the beauty of Tivoli Endpoint Manager , we can write code in simple English language and the TEM client is smart enough to understand it. For best results use robust relevance language in your fixlets.

If a computer (TEM client) answers true to all above questions , then it is said to be relevant. Basically a candidate computer to deploy Websphere Application Server in this case. Once the candidates (TEM clients) have been identified , next step is to get the work done from the slave (TEM client). What is the work ? Install WAS 7.


Considerations for deploying WAS 7 :
  • Need the Websphere Application Server installable and a mechanism to download it locally on the TEM client.
  • Need to reduce the network bandwidth by compressing the binaries.
  • Binaries are compressed , so I need to validate the integrity of the compressed binary file (make sure its not corrupt)
  • Binaries are compressed , need to decompress them on the client.
  • Need to specify how to install the software with custom options the software provides.
  • Want to install the software silently even if no one is using the computer ... that's obvious else why do we need the Tivoli Endpoint Manager software.
  • Need to validate if the software was successfully installed.
  • And lastly, cleanup all the unwanted mess like decompressed binaries , temporary files etc.
Lets try to write an action code (trust me it will be real code but doesn't look like code) :

Need the Websphere Application Server installable and a mechanism to download it locally on the TEM client.
Action : 
download "http://MyTEM-Server:52311/Uploads/Websphere-Application-Server-7.tmp"
Note : this file will be downloaded on the TEM client in a directory named "__Download" for which the path is known to the client

Need to reduce the network bandwidth by compressing the binaries.
This is already done using .tmp file as shown in above download action. There is TEM tool named BFArchive to compress folder and files.

Binaries are compressed , so I need to validate the integrity of the compressed binary file (make sure its not corrupt)
Action : 
continue if { size of "__download\Websphere-Application-Server-7.tmp" = 1549442912 and sha1 of "__download\Websphere-Application-Server-7.tmp" = "3816ca524fd1c5307ff97d322c430a7de5b8ae69" }

Binaries are compressed , need to decompress them on the client.
Action :
extract "__Download\Websphere-Application-Server-7.tmp" "{name of drive of windows folder}\windows\temp\was7"

Note : We are trying to inspect the client by asking "name of drive of windows folder" enclosed in curly brackets. Client will answer "C:", this is pure encapsulation trying to hide the real inspector code and enabling the user to write robust code.

Need to specify how to install the software with custom options the software provides.
This can be done using a response file which the WAS installer can understand. Client need not worry about this file.
Action : 
download "http://MyTEM-Server:52311/Uploads/Websphere-Application-Server-7-ESE.rsp"

Want to install the software silently even if no one is using the computer ... thats obvious else why do we need the Tivoli Endpoint Manager software.
Action :
waithidden "{ name of drive of windows folder }\windows\temp\was7\install.exe -options="{ __Download\WAS-7-ESE.rsp }" -silent "

Here the waithidden command will run the exe and suppress any UI shown by the WAS-7 install.exe. It will also wait till the software is installed and an exit code is returned.

Need to validate if the software was successfully installed.
Here we can check for exit code received by running the above install.exe.
0 = success , anything else is partial success or failure.
Action :
continue if { exit code of action = 0 }

And lastly, cleanup all the unwanted mess like decompressed binaries , temporary files etc.
Action : 
folder delete "{ name of drive of windows folder }\windows\temp\was7"

Done !!! Done !!! Done !!! Successfully deployed Websphere Application Server 7 on a windows machine using Tivoli Endpoint Manager. We can have a better and optimized approach towards deploying middleware.

Middleware Deployment using IBM Tivoli Endpoint Manager

A cutting-edge cloud-based endpoint anti-malware solution integrated with Tivoli Endpoint Manager (TEM).IBM announced a major update to Tivoli Endpoint Manager for Core Protection (TEM-CP), an integrated anti-malware and firewall product for Windows and Mac computers.Note that TEM for Core Protection is the updated name for what was formerly referred to as the BigFix Core Protection Module (CPM).

IBM Tivoli Endpoint Manager for Core Protection

+