Data Center Automation with SUSE Manager Federal Deployment Agency Bundesagentur für Arbeit Data Center Automation Project
|
|
|
- Avice Harrington
- 10 years ago
- Views:
Transcription
1 Data Center Automation with SUSE Manager Federal Deployment Agency Bundesagentur für Arbeit Data Center Automation Project Ralf Bueker DSE Bundesagentur für Arbeit
2 What is a DSE? DSE means Designated Support Engineer Designated to one customer Onside 4 days a week Working embedded in the customers IT team Takes care of and escalates support issues Interface for the customer to SUSE Assist the customer in ongoing project 2
3 The Customer: Federal Employment Agency The Federal Employment Agency (Bundesagentur für Arbeit: BA) is the largest provider of labor market services in Germany, with more than 800 branch offices nationwide. BA is a governmental organization based in Nuremberg, Germany Employs ~100,000 people IT- staff ~2,100 internal and external admins and engineers BA drives ~100 different tailored applications (VAM, ALG2, ZELOS. ALEGRO ) for their customers 3
4 The Task The BA software systems needs to be changed and upgraded according to social laws Obtaining the laws requires a lot of development and testing A test server should match perfectly in existing infrastructure. No solution from scratch The allocation of test HW had been identified as a bottleneck (~6 weeks waiting period for appropriate HW) 4
5 DCA Challenges No common API / Authorization / CMDB New data added in every step of the process No consistent server classification (templates) Complex software stack needs to be applied Solution should match for Linux and Windows Servers should seamlessly match in the current admin/ update/ monitoring infrastructure For Linux: ARS (Remedy) tool (end user GUI) UC4 (task management) Soap Service SUSE Manager / Python script VMware ESX 5
6 6 Workflow
7 SUSE Manager and the Python script SUSE Manager Configuration XML and Schema AutoYaST customization Cobbler to create profiles and boot ISO ESX Server communication Monitoring installation 7
8 SUSE Manager Configuration Create Distribution Create profile(s) Create configuration channel Create software channel Create activation key(s) /etc/cobbler/settings and set: redhat_management_permissive: 1 // allows login in cobbler api Install DCA Python scripts 8
9 SUSE Manager Profile / AutoYaST
10 SUSE Manager Configuration Create Distribution Create profile(s) Create configuration channel Create software channel Create activation key(s) /etc/cobbler/settings and set: redhat_management_permissive: 1 // allows login in cobbler api Install DCA Python scripts 10
11 11 Configuration Channel
12 12 Configuration Files
13 SUSE Manager Configuration Create Distribution Create profile(s) Create configuration channel Create software channel Create activation key(s) /etc/cobbler/settings and set: redhat_management_permissive: 1 // allows login in cobbler api Install DCA Python scripts 13
14 14 Software Channel
15 SUSE Manager Configuration Create Distribution Create profile(s) Create configuration channel Create software channel Create activation key(s) /etc/cobbler/settings and set: redhat_management_permissive: 1 // allows login in cobbler api Install DCA Python scripts 15
16 16 Activation Key
17 SUSE Manager Configuration Create Distribution Create profile(s) Create configuration channel Create software channel Create activation key(s) /etc/cobbler/settings and set: redhat_management_permissive: 1 // allows login in cobbler api Install DCA Python scripts 17
18 Python Script: Class CreateServer Main program Installation flow control Reports back to soap service (back channel) Other helper functions Error Handler Logger Function 18
19 XML and Schema Parameters and settings can easily be checked and restricted by an appropriate XML schema. All parameters used during the installation from different programs can be collected and mapped in the schema The schema rules deliver a readable and evaluable description of data and objects for all different integrated applications Python delivers with lxml a very good library to handle xml and schema 19
20 20 Schema
21 Python Script Class XmlInputHandler XML_input XmlParseInput XmlValidateInput XmlGetEntry apply ".//" to search string to enforce search from root XmlGetSubTree FormatXML Used to create index for multivalued Attributes needed in more than one output xml (nic, disc) 21
22 22 Input file
23 Python Script Class PrepareIsoInstallation MountEsx Mount ESX Drive for iso Images XmlGetKopts Collects information for Installation Kernel Options GetDistro Gets the SUSE Manager distro from server class provided CopyToEsx Obvious 23
24 Python Script Class EsxHandler 1 / 2 VMware vcenter provides an API for its services ( For DCA this API has been published and partly customized as a webservice. Sending an xml to the webservice triggers requested function. Install server Clone install server Delete server PowerOn esx_data (publish returnvalues from ESX) 24
25 Python Class EsxHandler 2 / 2 SendToEsx: used to send xml to ESX Server InputStringDelete, InputStringVmCreate, InputStringCloneCreate, InputStringPowerOn, InputStringQueryTask: creates xml input for ESX Tasks FormatXml: parses answers from ESX (not necessary xml ) check_esx_output: processes ESX output ExtractTaskId: Gets ESX task ID for status query getmac: gets the randomly created MAC address(es) for the new virtual machine from ESX output 25
26 26 ESX Input
27 Python Class SumaHandler 1/2 OpenSumaConnection (key = client.auth.login(username, password, timeout) GetServerSumaId ((client.system.getid(key, servername))) DeleteServerFromSuma (client.system.deletesystem(systemid)) RebootServer (client.system.schedulereboot(key, sumaid, now) RunRemoteBashScript client.system.schedulescriptrun(key, sumaid, "root", "root", 5, script, now) 27
28 Python Class SumaHandler 2/2 OsaRefresh subprocess.call ([curl, -Sks, " + self. suma_server + "/rhn/systems/details/overview.do?sid=" + str(sumaid) + "&ping=1"]) list_system_events (client.system.listsystemevents(key, msumaid)) get_server_dmi (client.system.getdmi(key, sumaid)) CloseSumaConnection (client.auth.logout(key)) 28
29 Python Class AutoYaSTHandler AutoYaSTGetAutoYaSTfile: gets appropriate autoyast file template from /var/lib/rhn/kickstarts/upload/ AutoYaSTGetParameterList: get the parameter list from the AutoYaST template AutoYaSTSetMetaData: creates a dictionary from AutoYaST parameter and values from XML input file AutoYaSTCreateNewAyfile : creates a specific AutoYaST file for the new server 29
30 Class CobblerHandler 1/2 Cobbler creates the iso image for the installation. To allow automatic boot boot.template has to be rewritten. This is implemented in a class with following functions: CobblerBuildProfile: creates profile profile_id = server.new_profile(token) server.modify_profile(profile_id, 'name', bcpname, token) server.modify_profile(profile_id, 'distro', bcpdistro, token) server.modify_profile(profile_id, 'kopts', bcpkopts, token) server.modify_profile(profile_id, 'kickstart', bcpkickstart, token) server.save_profile(profile_id, token) 30
31 Class CobblerHandler 2 / 2 cobbler_build_iso_template: customizes the /etc/cobbler/iso/boot.template, so that the new iso is booted automatically Build_iso_template cobbler_build_iso: build iso image and copies to ESX server (currently nfs share) Could be done by xmlrpc (see: pydoc cobbler.api on SuMa Server), currently uses cmdline cobbler buildiso commandline on Suma Server cobbler_delete_profile_if_exist: obivous 31
32 32 Boot.template
33 Class BootstrapMonitor 1 / 3 FirstPing: waits till the new server is pingable for the first time SumaReg: queries SUSE Manager if the new Server is already registered SumaHandler.GetServerSumaId WaitForBootstrapEnd: SumaHandler.RunRemoteBashScript ConfigDone: uses the same as above to see if all configuration from the channel is completed SumaHandler.RunRemoteBashScript 33
34 Class BootstrapMonitor 2 / 3 CheckConfigLog: analyzes configuration on the new server (return value remote script cat /var/adm/autoinstall/logs/bootstrap.sh.log had any errors LastBoot: SumaHandler.RebootServer FinalUp: SumaHandler.get_server_dmi RemoteCleanUp: cleans all the remains from installation from the server SumaHandler.RunRemoteBashScript 34
35 Your Server is ready! Sending a success message to the SOAP Webservice SOAP webservice forwards message to UC4 Next Step in workflow can be triggered (I.E. DB installation) Clean up the SUSE Manager and DCA environment (Deleting the profiles of the new Server, iso files ) 35
36 Operating Experience DCA has been introduced to the internal customer The SUSE Manager implementation won against the VMware cloning approach Several hundred DCA installations have already performed successfully Stress tests have been performed (we delivered 20 Server in 30 minutes instead of 6 weeks ) The customer wants to develop DCA further A cloud software like SUSE Cloud should replace the homegrown SUSE Manager Python implementation 36
37 Lessons Learned 1 / 2 Local caches and infrastructure play an important role when doing live provisioning in a productive environment Error handling is vital part of process management and should be considered carefully A schema is a very useful to control and parameters from participating applications Automatic logging of every single step in the automatic process is vital! 37
38 Lessons Learned 2 / 2 We showed the customer: complex installation and configuration can be described flexible in SUSE Manager server classification can be mapped in SUSE Manager An existing administration concept can be represented in SUSE Manager Thanks to the API SUSE Manager can flexibly used in a complex environment for several tasks 38
39 Corporate Headquarters Maxfeldstrasse Nuremberg Germany (Worldwide) Join us on: 39
40 Unpublished Work of SUSE LLC. All Rights Reserved. This work is an unpublished work and contains confidential, proprietary and trade secret information of SUSE LLC. Access to this work is restricted to SUSE employees who have a need to know to perform tasks within the scope of their assignments. No part of this work may be practiced, performed, copied, distributed, revised, modified, translated, abridged, condensed, expanded, collected, or adapted without the prior written consent of SUSE. Any use or exploitation of this work without authorization could subject the perpetrator to criminal and civil liability. General Disclaimer This document is not to be construed as a promise by any participating company to develop, deliver, or market a product. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. SUSE makes no representations or warranties with respect to the contents of this document, and specifically disclaims any express or implied warranties of merchantability or fitness for any particular purpose. The development, release, and timing of features or functionality described for SUSE products remains at the sole discretion of SUSE. Further, SUSE reserves the right to revise this document and to make changes to its content, at any time, without obligation to notify any person or entity of such revisions or changes. All SUSE marks referenced in this presentation are trademarks or registered trademarks of Novell, Inc. in the United States and other countries. All third-party trademarks are the property of their respective owners.
Running SAP HANA One on SoftLayer Bare Metal with SUSE Linux Enterprise Server CAS19256
Running SAP HANA One on SoftLayer Bare Metal with SUSE Linux Enterprise Server CAS19256 Brad DesAulniers Senior Software Engineer [email protected] @cb_brad Ryan Hodgin Senior IT Architect [email protected]
Advanced Systems Management with Machinery
Advanced Systems Management with Machinery Andreas Jaeger Thomas Göttlicher Senior Product Manager [email protected] Software Engineer [email protected] Who Are We? Andreas Jaeger Product Manager Thomas
Relax-and-Recover. Johannes Meixner. on SUSE Linux Enterprise 12. <[email protected]>
Relax-and-Recover on SUSE Linux Enterprise 12 Johannes Meixner Topics What is Relax-and-Recover? What means disaster recovery here? How does disaster recovery work? How does Relax-and-Recover
We are watching SUSE
We are watching SUSE Monitoring at SUSE and in SUSE Linux Enterprise Server 12 Martin Čaj Linux System Administrator Prague Czech Republic [email protected] Joachim Werner Senior Product Manager Nürnberg Germany
Build Platform as a Service (PaaS) with SUSE Studio, WSO2 Middleware, and EC2 Chris Haddad
Build Platform as a Service (PaaS) with SUSE Studio, WSO2 Middleware, and EC2 Chris Haddad VP, Platform Evangelism WSO2 [email protected] Section Break Text Here (32pt) Cloudy Goals Improve efficiency and
Implementing Linux Authentication and Authorisation Using SSSD
Implementing Linux Authentication and Authorisation Using SSSD Lawrence Kearney Enterprise Service and Integration Specialist Technology Transfer Partnership (TTP) [email protected] Mark Robinson
DevOps and SUSE From check-in to deployment
DevOps and SUSE From check-in to deployment Rodolfo Bejarano SUSE Systems Engineer [email protected] Rick Ashford SUSE Systems Engineer [email protected] 2 Agenda 3 Introductions Development
Challenges Implementing a Generic Backup-Restore API for Linux
Challenges Implementing a Generic Backup-Restore API for Linux Matthias G. Eckermann Senior Product Manager [email protected] Vault, Boston, March 2015 2015-03-12 13:45 UTC Picture: "Escribano" by Jean Le Tavernier
Using SUSE Linux Enterprise to "Focus In" on Retail Optical Sales
Using SUSE Linux Enterprise to "Focus In" on Retail Optical Sales Patrick Mullin Scott Steele Senior Technical Specialist SUSE Consulting [email protected] Point of Sale Manager National Vision, Inc. [email protected]
SUSE Storage. FUT7537 Software Defined Storage Introduction and Roadmap: Getting your tentacles around data growth. Larry Morris
SUSE FUT7537 Software Defined Introduction and Roadmap: Getting your tentacles around data growth Larry Morris Sr. Product Manager [email protected] AGENDA Enterprise Market SUSE Product SUSE Solutions
SUSE Linux uutuudet - kuulumiset SUSECon:sta
SUSE Linux uutuudet - kuulumiset SUSECon:sta Olli Tuominen Technology Specialist [email protected] 2 SUSECon 13 4 days, 95 Sessions Keynotes, Breakout Sessions,Technology Showcase Case Studies, Technical
SUSE OpenStack Cloud 4 Private Cloud Platform based on OpenStack. Gábor Nyers Sales Engineer @SUSE [email protected]
SUSE OpenStack Cloud 4 Private Cloud Platform based on OpenStack Gábor Nyers Sales Engineer @SUSE [email protected] Introductory video ChalkTalk: SUSE OpenStack Cloud 2 Stetting the Stage for SUSE OpenStack
Configuration Management in SUSE Manager 3
Configuration Management in SUSE Manager 3 TUT20515 Klaus Kämpf Product Owner, SUSE Manager [email protected] Agenda 2 SUSE Manager 3 themes About Configuration Management Choosing the right stack Getting
SUSE Linux Enterprise 12 Security Certifications Common Criteria, EAL, FIPS, PCI DSS,... What's All This About?
SUSE Linux Enterprise 12 Security Certifications Common Criteria, EAL, FIPS, PCI DSS,... What's All This About? Matthias G. Eckermann Senior Product Manager SUSE Linux Enterprise [email protected] Agenda Evaluation
Operating System Security Hardening for SAP HANA
Operating System Security Hardening for SAP HANA Peter Schinagl Technical Architect Global SAP Alliance [email protected] Markus Gürtler Architect & Technical Manager SAP Linux Lab [email protected] Corporate
SUSE Linux Enterprise 12 Security Certifications
SUSE Linux Enterprise 12 Security Certifications Common Criteria, FIPS, PCI DSS, DISA STIG,... What's All This About? Thomas Biege Team Lead Maintenance/Security [email protected] 2 Evaluation Validation
TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla
TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla Sales Engineer [email protected] Agenda Overview Manual Deployment Orchestration Generic workload autoscaling Sahara Dedicated for Hadoop
How SUSE Is Helping You Rock The Public Cloud
How SUSE Is Helping You Rock The Public Cloud James Mason Robert Schweikert Technical Architect, Public Cloud [email protected] Public Cloud Architect [email protected] Topics 2 A very quick and brief Public
Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction
Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction Arun Singh Sr. Technical Manager [email protected] Agenda 2 Introduction SUSE Components Oracle
Workflow und Identity Management - Genehmigungsprozesse, Role Mining, Role Design und Compliance Management
Workflow und Identity Management - Genehmigungsprozesse, Role Mining, Role Design und Compliance Management Stefan Stiehl Senior Technology Sales Specialist Identity Security Management [email protected]
Deploying Hadoop with Manager
Deploying Hadoop with Manager SUSE Big Data Made Easier Peter Linnell / Sales Engineer [email protected] Alejandro Bonilla / Sales Engineer [email protected] 2 Hadoop Core Components 3 Typical Hadoop Distribution
How To Make A Cloud Work For You
OpenStack Deep Dive Alan Clark OpenStack, Chairman of the Board Director, SUSE [email protected] Community Size Q2 2014 ECOSYSTEM SIZE (Members + Sponsors + Supporters) 390 Companies Members: 26 Sponsors:
Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP
Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Agenda ADP Cloud Vision and Requirements Introduction to SUSE Cloud Overview Whats New VMWare intergration HyperV intergration ADP
SUSE Customer Center Roadmap
SUSE Customer Center Roadmap Simona Arsene Product Manager Services Artem Chernikov Engineer Cloud & System Management Agenda SCC Today Live Demo of SCC Registration Process New features 2 1 Nov 2012 Alpha
HO15982 Deploy OpenStack. The SUSE OpenStack Cloud Experience. Alejandro Bonilla. Michael Echavarria. Cameron Seader. Sales Engineer cs@suse.
HO15982 Deploy OpenStack The SUSE OpenStack Cloud Experience Alejandro Bonilla Sales Engineer [email protected] Michael Echavarria Sales Engineer [email protected] Cameron Seader Sales Engineer [email protected]
Using btrfs Snapshots for Full System Rollback
Using btrfs Snapshots for Full System Rollback Matthias G. Eckermann Senior Product Manager [email protected] Enterprise End User Summit, New York, June 2014 2014-06-20 15:44 UTC Why this? Minimizing Downtime
kgraft Live patching of the Linux kernel
kgraft Live patching of the Linux kernel Vojtěch Pavlík Director SUSE Labs [email protected] Why live patching? Common tiers of change management: 1. Incident response (we're down, actively exploited )
Public Cloud. Build, Use, Manage. Robert Schweikert. Public Cloud Architect [email protected]
Public Cloud Build, Use, Manage Robert Schweikert Public Cloud Architect [email protected] Public Cloud Build, Use, Manage Introduction About me Disclaimers Build vs. Ready made What do I... Now what?
High Availability and Disaster Recovery for SAP HANA with SUSE Linux Enterprise Server for SAP Applications
High Availability and Disaster Recovery for SAP HANA with SUSE Linux Enterprise Server for SAP Applications Uwe Heinz Product Manager SAP [email protected] Fabian Herschel Senior Architect SAP LinuxLab
Big Data, SAP HANA. SUSE Linux Enterprise Server for SAP Applications. Kim Aaltonen [email protected]
Big Data, SAP HANA SUSE Linux Enterprise Server for SAP Applications Kim Aaltonen [email protected] 2 Agenda 3 Big Data SAP HANA Optimized Linux for SAP Why SUSE for SAP? Summary 4 5 Big Data What
Of Pets and Cattle and Hearts
Of Pets and Cattle and Hearts The SUSE Systems Management Story Joachim Werner Senior Product Manager, SUSE [email protected] Who am I? 2 SUSE and Linux Workloads in the Enterprise SUSE Studio Datacenter Private
Oracle Products on SUSE Linux Enterprise Server 11
Oracle Products on SUSE Linux Enterprise Server 11 Technical Introduction Arun Singh Sr. Technical Manager [email protected] Agenda Introduction SUSE Products Oracle Products Road Map Question and Answer
Wicked A Network Manager Olaf Kirch
Wicked A Network Manager Olaf Kirch Director SUSE Linux Enterprise [email protected] 2 Agenda Why Wicked!? What we want to achieve What Wicked can do today/tomorrow Architecture Wicked little intro Why Wicked!?
SUSE Cloud 5 Private Cloud based on OpenStack
SUSE Cloud 5 Private Cloud based on OpenStack Michał Jura Senior Software Engineer Linux HA/Cloud Developer [email protected] 2 New solutions emerge: Infrastructure-as-Service Cloud = 3 SUSE Cloud Why OpenStack?
Ceph Distributed Storage for the Cloud An update of enterprise use-cases at BMW
Ceph Distributed Storage for the Cloud An update of enterprise use-cases at BMW Andreas Pöschl, BMW Senior Solutions Architect [email protected] Michael Vonderbecke, BMW Solutions Architect [email protected]
Software Defined Everything
Software Defined Everything, s, Containers, and Storage Pete Chadwick Senior Product Manager [email protected] Joachim Werner Senior Product Manager [email protected] Data Center History - 1970s One (big)
HO5604 Deploying MongoDB. A Scalable, Distributed Database with SUSE Cloud. Alejandro Bonilla. Sales Engineer [email protected]
HO5604 Deploying MongoDB A Scalable, Distributed Database with SUSE Cloud Alejandro Bonilla Sales Engineer [email protected] Agenda SUSE Cloud Overview What is MongoDB? 2 Getting familiar with the Cloud
SUSE Enterprise Storage Highly Scalable Software Defined Storage. Gábor Nyers Sales Engineer @SUSE [email protected]
SUSE Enterprise Storage Highly Scalable Software Defined Storage Gábor Nyers Sales Engineer @SUSE [email protected] Setting the Stage Enterprise Data Capacity Utilization 1-3% 15-20% 20-25% Tier 0 Ultra
Securing Your System: Security Hardening Techniques for SUSE Linux Enterprise Server
Securing Your System: Security Hardening Techniques for SUSE Linux Enterprise Server Marcus Meissner Software Engineer SUSE Craig Gardner Software Engineer SUSE Roman Drahtmueller Software Engineer SUSE
High Availability Storage
High Availability Storage High Availability Extensions Goldwyn Rodrigues High Availability Storage Engineer SUSE High Availability Extensions Highly available services for mission critical systems Integrated
Open Source High Availability Writing Resource Agents for your own services. Lars Marowsky-Brée Team Lead SUSE Labs [email protected]
Open Source High Availability Writing Resource Agents for your own services Lars Marowsky-Brée Team Lead SUSE Labs [email protected] Agenda Introduction Resource Agents in context Basic Resource Agents (+ code)
Wicked Trip into Wicked Network Management
Wicked Trip into Wicked Network Management Matthias G. Eckermann Senior Product Manager [email protected] LinuxCon 2013 NA 2013-09-12 15:40 UTC Some Words of Encouragement There is a theory which states, that
How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open
How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open Simon Briggs Technology Specialist [email protected] Open Source = openmind 3 Protect Investment & Work Together 4 Cloud Definitions
Linux w chmurze publicznej SUSE na platformie Microsoft Azure
Linux w chmurze publicznej SUSE na platformie Microsoft Azure Grzegorz Piotrowski Solution Architect C2O C EH, ISO27001-2, ITIL SM, PMI P2, MCT CCEE Virtualization MCSE Private Cloud VCA Cloud [email protected]
From Idea to Working Deployment:
From Idea to Working Deployment: A Practical Guide for Deploying SUSE Manager Alessandro Renna Christophe Le Dorze Sales Engineer [email protected] Sales Engineer [email protected] Agenda 2 SUSE Manager
Btrfs and Rollback How It Works and How to Avoid Pitfalls
Btrfs and Rollback How It Works and How to Avoid Pitfalls Thorsten Kukuk Senior Architect SUSE Linux Enterprise Server [email protected] rm -rf /? I will be discussing what is needed for rollback: Btrfs /
File Management Suite. Novell. Intelligently Manage File Storage for Maximum Business Benefit. Sophia Germanides Sophia.germanides@novell.
File Management Suite Novell Intelligently Manage File Storage for Maximum Business Benefit Sophia Germanides [email protected] David Condrey [email protected] Agenda Customer Challenges
Novell Collaboration Vibe OnPrem
Novell Collaboration Vibe OnPrem Evergreen Preview Corne Groesbeek Open Horizons Tracy Smith Product Manager [email protected] Collaboration Solutions Collaboration solutions from Novell help enterprise
TUT8155 Best Practices: Linux High Availability with VMware Virtual Machines
TUT8155 Best Practices: Linux High Availability with VMware Virtual Machines Jeff Lindholm SUSE Sr. Systems Engineer [email protected] Agenda SUSE Linux Enterprise High Availability Extension 12 Level
TUT19344 Managing RH/CentOS with SUSE Manager
TUT19344 Managing RH/CentOS with SUSE Manager Don Vosburg Systems Engineer [email protected] Gokhan Cetinkaya Systems Engineer [email protected] Agenda SUSE Manager overview SUSE Manager and non-suse
Leveraging Wikis to Manage SCP Documentation TWiki Use @ Novell Technical Services
Leveraging Wikis to Manage SCP Documentation TWiki Use @ Novell Technical Services Max Walker Manager, Novell Services [email protected] 30 May 2008 Agenda SCP at Novell Services Global Documentation
CAS18543 Migration from a Windows Environment to a SUSE Linux Enterprise based Infrastructure Liberty Christian School
CAS18543 Migration from a Windows Environment to a SUSE Linux Enterprise based Infrastructure Liberty Christian School Don Vosburg Systems Engineer [email protected] [email protected] Who is
RSA SecurID Software Token Security Best Practices Guide
RSA SecurID Software Token Security Best Practices Guide Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com. Trademarks RSA, the RSA
NIST ITL July 2012 CA Compromise
NIST ITL July 2012 CA Compromise Prepared for: Intelligent People [email protected] 1 NIST ITL Bulletin on CA Compromise http://csrc.nist.gov/publications/nistbul/july-2012_itl-bulletin.pdf These
Introducing Director 11
Introducing Director 11 Agenda Director 11 Introduction Mobile Certificate Manager - CA Import - Mobile Device Management (MDM) Integration - New Certificate Types - User Certificate Mapping - Single-
Kangaroot SUSE TechUpdate Interoperability SUSE Linux Enterprise and Windows
Kangaroot SUSE TechUpdate Interoperability SUSE Linux Enterprise and Windows Gábor Nyers Systems Engineer @SUSE [email protected] Agenda 14:00 Kangaroot Update SUSE Update Data Center Interoperability the
Apache LDAP Configuration
Apache LDAP Configuration using Novell Edirectory and Microsoft Active Directory for the Neanderthal Lawrence Kearney Advisor for Higher Education in the Americas Technology Transfer Partners (TTP) Proposed
Using SUSE Studio to Build and Deploy Applications on Amazon EC2. Guide. Solution Guide Cloud Computing. www.suse.com
Using SUSE Studio to Build and Deploy Applications on Amazon EC2 Guide Solution Guide Cloud Computing Cloud Computing Solution Guide Using SUSE Studio to Build and Deploy Applications on Amazon EC2 Quickly
SUSE Virtualization Technologies Roadmap
SUSE Virtualization Technologies Roadmap Michal Svec Senior Product Manager [email protected] Jason Douglas Senior Engineering Manager [email protected] Agenda Virtualization @SUSE Enhancements in XEN/KVM
SMB in the Cloud David Disseldorp
SMB in the Cloud David Disseldorp Samba Team / SUSE [email protected] Agenda Cloud storage Common types Interfaces Applications Cloud file servers Microsoft Azure File Service Demonstration Amazon Elastic
How To Secure An Rsa Authentication Agent
RSA Authentication Agents Security Best Practices Guide Version 3 Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com. Trademarks RSA,
EMC Data Domain Management Center
EMC Data Domain Management Center Version 1.1 Initial Configuration Guide 302-000-071 REV 04 Copyright 2012-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes
KVM, OpenStack and the Open Cloud SUSECon November 2015
KVM, OpenStack and the Open Cloud SUSECon November 2015 Adam Jollans Program Director, Linux & Open Virtualization Strategy IBM Agenda A Brief History of Virtualization KVM Architecture OpenStack Architecture
Based on Geo Clustering for SUSE Linux Enterprise Server High Availability Extension
CAS7318 A Geo Redundant Cloud VoIP Service Based on Geo Clustering for SUSE Linux Enterprise Server High Availability Extension Brett Buckingham Managing Director, silhouette Research and Development Broadview
Directory Integration in LANDesk Management Suite
Directory Integration in LANDesk Management Suite A white-paper detailing the use of an LDAP Directory in an LANDesk Management Suite environment LANDesk Software Inc. Sam Merrill Technical Marketing Engineer
RHEL to SLES Migration Overview
Migration Program Overview Best Practice www.novell.com RHEL to SLES Migration Overview Published: Feb, 2009 Version # 1.3 Disclaimer Novell, Inc. makes no representations or warranties with respect to
Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4
Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 1. Introduction Oracle provides products that reduce the time, risk,
Novell Identity Manager Driver for Remedy Action Request System (ARS)
Novell Identity Manager Driver for Remedy Action Request System (ARS) 1.1 www.novell.com June 05, 2009 DRIVER GUIDE 1/18 Legal Notices Novell, Inc. makes no representations or warranties with respect to
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012
www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,
NetIQ Sentinel 7.0.1 Quick Start Guide
NetIQ Sentinel 7.0.1 Quick Start Guide April 2012 Getting Started Use the following information to get Sentinel installed and running quickly. Meeting System Requirements on page 1 Installing Sentinel
Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Drupal
SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information
RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware
RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware Contact Information Go to the RSA corporate website for regional Customer Support telephone
White Paper Server. SUSE Linux Enterprise Server 12 Modules
White Paper Server SUSE Linux Enterprise Server 12 Modules Server White Paper SUSE Linux Enterprise Server 12 Modules What Can Modular Packaging Do for You? What if you could use a reliable operating system
Novell Identity Manager
AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with
Audit Management Reference
www.novell.com/documentation Audit Management Reference ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of
An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service
An Oracle White Paper June 2014 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database
SUSE OpenStack Cloud. Become Your Enterprise s Cloud Service Provider
SUSE OpenStack Cloud Become Your Enterprise s Cloud Service Provider What? if you could respond faster to customer demands and market opportunities? What if you could improve server utilization rates and
NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3
NOC PS manual Copyright Maxnet 2009 2015 All rights reserved Page 1/45 Table of contents Installation...3 System requirements...3 Network setup...5 Installation under Vmware Vsphere...8 Installation under
IGEL Universal Management. Installation Guide
IGEL Universal Management Installation Guide Important Information Copyright This publication is protected under international copyright laws, with all rights reserved. No part of this manual, including
QNAP Plug-in for vsphere Client: A User s Guide. Updated December 2012. 2012. QNAP Systems, Inc. All Rights Reserved. V1.0
QNAP Plug-in for vsphere Client: A User s Guide Updated December 2012 2012. QNAP Systems, Inc. All Rights Reserved. V1.0 Note: The information presented is subject to change without notice. Trademarks
CA Performance Center
CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,
Quick Start Guide. for Installing vnios Software on. VMware Platforms
Quick Start Guide for Installing vnios Software on VMware Platforms Copyright Statements 2010, Infoblox Inc. All rights reserved. The contents of this document may not be copied or duplicated in any form,
TIBCO Spotfire Statistics Services Installation and Administration Guide. Software Release 5.0 November 2012
TIBCO Spotfire Statistics Services Installation and Administration Guide Software Release 5.0 November 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH
VBLOCK SOLUTION FOR SAP APPLICATION SERVER ELASTICITY
Vblock Solution for SAP Application Server Elasticity Table of Contents www.vce.com VBLOCK SOLUTION FOR SAP APPLICATION SERVER ELASTICITY Version 2.0 February 2013 1 Copyright 2013 VCE Company, LLC. All
/ Preparing to Manage a VMware Environment Page 1
Configuring Security for a Managed VMWare Enviroment in VMM Preparing to Manage a VMware Environment... 2 Decide Whether to Manage Your VMware Environment in Secure Mode... 2 Create a Dedicated Account
SUSE Virtualization Technologies Roadmap
SUSE Virtualization Technologies Roadmap Michal Svec Mike Latimer Senior Product Manager [email protected] Senior Engineering Manager [email protected] Agenda Virtualization @SUSE Enhancements in XEN/KVM
CA APM Cloud Monitor. Scripting Guide. Release 8.2
CA APM Cloud Monitor Scripting Guide Release 8.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for
Open Enterprise Server Product Roadmap Presentation
Novell Open Enterprise Server Product Roadmap Presentation Lothar Wegner SE Manager [email protected] Nicholas Scholz Product Marketing Manager [email protected] Madhan P Product Manager [email protected]
