Questions for Openshift

Total Page:16

File Type:pdf, Size:1020Kb

Questions for Openshift www.YoYoBrain.com - Accelerators for Memory and Learning Questions for OpenShift Category: Default - (402 questions) OpenShift:&nbsp; 2 primary tools to serve 1. container runtime - creates containers in application in OpenShift platform Linux 2. orchestration engine - manage cluster of servers running containers OpenShift:&nbsp; routing layer a software load balancer, when an application is deployed in OpenShift, a DNS entry is created and added to the load balancer, which interfaces with the Kubernetes service OpenShift:&nbsp; log into cluster and create oc&nbsp;login -u dev -p dev http://....:8443 user named dev with password dev OpenShift:&nbsp; what is the default port for 8443 OpenShift cluster OpenShift:&nbsp; what is a cluster's initial All All identity provider user name/password configuration allows any user and password combination to log in. OpenShift:&nbsp; ____ are the fundamental projects way applications are organized OpenShift:&nbsp; to create a project called oc&nbsp;new-project image-update image-update --display-name='My image update project' OpenShift:&nbsp; how to change to project oc&nbsp;project myProj myProj OpenShift:&nbsp; each application application source code deployment's image is created using _____ custom base image called a builder image and ____ OpenShift:&nbsp; the component that build config controls the creation of your application containers is _____ OpenShift:&nbsp; ____ contains all the info build config needed to build an application using its source code OpenShift:&nbsp; 4 things in build config 1. URL for the application source code 2. Name of builder image to use 3. Name of the application container image that is created 4. Events that trigger a new build to occur OpenShift:&nbsp; the job of deploying and deployment config component upgrading the application is handled by the _____ OpenShift:&nbsp; how are the number of passed into Kubernetes object called a replicas&nbsp;handled by deployment config replication controller OpenShift:&nbsp; ____ component is used deployments to track each deployment for an application by deployment config component OpenShift:&nbsp; image streams used to automate actions in OpenShift.&nbsp; They consist of links to one or more containers and trigger new deployments when components are updated. OpenShift:&nbsp; how to deploy an oc&nbsp;new-app application with CLI OpenShift:&nbsp; see information about the oc&nbsp;describe svc/app-cli service for app-cli OpenShift:&nbsp; see information about oc&nbsp;describe bc/<app-name> build&nbsp;config for <app-name> OpenShift:&nbsp; see information about oc describe dc/<app-name> deploy config for <app-name> OpenShift:&nbsp; create a route for app-cli oc expose svc/app-cli application OpenShift:&nbsp; get information about oc&nbsp;describe route/app-cli route for app-cli OpenShift: CL to create a liveness probe &nbsp; oc&nbsp;set probe OpenShift:&nbsp;2 types of probes 1. liveness probe - pod destroyed if it fails 2. readiness OpenShift: how to manually rollback a oc rollback app-cli deployment for app-cli OpenShift: to enable autoscaling the admin metrics stack must deploy the OpenShift ______ OpenShift: 3 main components of OpenShift Hawkular, Heapster, and Apache Cassandra metrics stack OpenShift: the pods that are used to collect openshift-infra and process metrics run in _____ project OpenShift: how to install metrics stack 1. Enter the openshift-infra project oc&nbsp;project openshift-infra 2. run the ansible playbook ansible-playbook OpenShift: _____ is a process that runs on kubelets each OpenShift node and coordinates which tasks the node should execute with OpenShift master OpenShift: object to monitor the metrics and Horizontal Pod Autoscaler - HPA trigger autoscaling OpenShift: CLI to create an HPA object oc&nbsp;autoscale dc/<app-name> OpenShift: how to see all the Horizontal Pod oc&nbsp;get hpa Autoscalers OpenShift: how to inspect HPA object app-cli oc&nbsp;describe hpa app-cli OpenShift: a ____ is a threshold you can set resource request that affects scheduling and quality of service OpenShift: set a CPU request for all the pods oc&nbsp;set resources dc in app-cli&nbsp;application to 400 millicores app-cli&nbsp;--requests=cpu=400m OpenShift: ____ are arrays of objects that OpenShift templates can be parameterized and spun up on demand OpenShift: how to see the OpenShift oc get templates -n openshift templates that come installed OpenShift: how to import a template into the oc&nbsp;create -f <template_file> -n dev dev project OpenShift: _____ is used to orchestrate Kubernetes containers in an OpenShift cluster OpenShift: on each application node, docker Kubernetes depends on ____ to create the containers for each application deployment OpenShift: how are Linux namespaces used provide isolation for the resources running in for containers the container OpenShift: the purpose of cgroups in provide maximum, guaranteed access limits containers for CPU and memory on the application node OpenShift: Linux command to list lsns namespaces OpenShift: uses _____ Linux namespaces to 5 isolate process and resources on application nodes OpenShift: what is purpose of the mount isolates filesystem content, ensuring that Linux namespace content assigned to the container by OpenShift is the only content available to the process running in the container OpenShift: your OpenShift configuration LVM - logical volume manager uses _____ on this device for container LV - logical volume storage.&nbsp; Each container gets its own _____ when it is created OpenShift: CLI tool to enter an active nsenter&nbsp;--target <PID> namespace for another application OpenShift: purpose of UTS Linux Unix time sharing - lets each container have namespace its own hostname and domain name OpenShift: scale the app-cli application to 2 oc scale dc/app-cli --replicas=2 pods OpenShift: run a command on <pod-name> oc&nbsp;exec <pod-name> command OpenShift: purpose of PID Linux namespace isolating visible PIDs in container to only the applications in container OpenShift: the application component that replication controller - rc handles scaling application pods is called ______ OpenShift: how to see information on oc&nbsp;describe rc app-cli-1 replication controller for deployment app-cli-1 OpenShift: what field in rc (replication select field, lists the tags controller) and service determines which pods they target OpenShift CP: how to register a system with subscription-manager register Red Hat OpenShift CP: pull the latest subscription subscription-manager refresh data from Red Hat subscription manager OpenShift CP: list available Red Hat subscription-manager list --available subscriptions OpenShift CP: when you get pool ID for subscription-manager attach OpenShift Container Platform from --pod=<pool-ID> subscription-manager, how to attach to it OpenShift CP: how to&nbsp;enable more subscription-manager software&nbsp;repos&nbsp;using repos&nbsp;--enable=".." subscription-manager OpenShift CP: the installer for OpenShift atomic-openshift-utils Container Platform is provided by ____ package OpenShift CP: installation command for OCP atomic-openshift-installer install OpenShift CP: command to start OCP systemctl&nbsp;restart atomic-openshift-master-api atomic-openshift-master-controllers OpenShift CP: basic command for admin oc&nbsp;adm tasts OpenShift CP: where is the master config file /ect/origin/master/master-config.yaml OpenShift: delete the default router oc&nbsp;delete all -l router=router OpenShift: create a new default router oc&nbsp;adm&nbsp;router --replicas=1 --service=account=router OpenShift: delete the default registry oc delete all -l docker-registry=default OpenShift: create the docker-registry service oc adm&nbsp;registry using registry service account OpenShift: 3 steps to configure persistent 1. provision a volume that points to a storage storage for the image registry server on your network 2. create a volume claim 3. manually add the claim to the registry service OpenShift: login into remote server oc&nbsp;login -u username -p password <openshift-server> --server=<openshift-server>&nbsp; -- insecure-skip-tls-verify OpenShift: track progress of the build of the oc&nbsp;logs -f bc/ruby-ex application&nbsp;ruby-ex OpenShift: see the build statistics oc&nbsp;get builds OpenShift: get status of applications oc&nbsp;status OpenShift: create a route for external clients oc&nbsp;expose service ruby-ex to application ruby-ex OpenShift: view new route after running oc&nbsp;get route oc&nbsp;expose service OpenShift: how to edit the BuildConfig for oc&nbsp;edit bc/ruby-ex app ruby-ex OpenShift: see the webhook URL in oc&nbsp;describe bc ruby-ex BuildConfig for app ruby-ex OpenShift: manually rebuild image for app oc&nbsp;start-build ruby-ex ruby-ex OpenShift: view a list of projects oc&nbsp;get projects OpenShift: manually start build for ruby-ex oc&nbsp;start-build ruby-ex --follow and stream the logs OpenShift:&nbsp;default OpenShift router HAProxy software OpenShift: S2I Source-to-image - tool for building reproducible docker image.&nbsp; Produces images by injecting source code into a Docker image and assembling a new Docker image OpenShift: add the user named developer to oc&nbsp;adm&nbsp;policy add-role-to-user view project called&nbsp;mysecrets view developer -n mysecrets OpenShift: how to switch to different user oc&nbsp;login --username developer developer if logged into multiple accounts OpenShift: how to switch login to another oc&nbsp;login<cluster2-url> cluster <cluster2> OpenShift: get a list of all OpenShift cluster
Recommended publications
  • Vulnerability Summary for the Week of June 5, 2017
    Vulnerability Summary for the Week of June 5, 2017 Please Note: • The vulnerabilities are categorized by their level of severity which is either High, Medium or Low. • The CVE identity number is the publicly known ID given to that particular vulnerability. Therefore, you can search the status of that particular vulnerability using that ID. • The CVSS (Common Vulnerability Scoring System) score is a standard scoring system used to determine the severity of the vulnerability. High Vulnerabilities Primary CVSS Source & Patch Vendor -- Product Description Published Score Info In Apache Hadoop 2.8.0, 3.0.0-alpha1, and 3.0.0-alpha2, the LinuxContainerExecutor runs docker commands as root with CVE-2017-7669 insufficient input validation. When the docker BID(link is feature is enabled, authenticated users can run 2017-06- external) apache -- hadoop commands as root. 04 8.5 MLIST CVE-2017-9364 Unrestricted File Upload exists in BigTree CONFIRM(link CMS through 4.2.18: if an attacker uploads an is external) bigtreecms -- 'xxx.pht' or 'xxx.phtml' file, they could bypass 2017-06- CONFIRM(link bigtree_cms a safety check and execute any code. 02 7.5 is external) CVE-2017-9435 Dolibarr ERP/CRM before 5.0.3 is vulnerable CONFIRM(link to a SQL injection in user/index.php is external) (search_supervisor and search_statut 2017-06- CONFIRM(link dolibarr -- dolibarr parameters). 05 7.5 is external) CVE-2014-9923 In NAS in all Android releases from CAF BID(link is using the Linux kernel, a Buffer Copy external) without Checking Size of Input vulnerability 2017-06- CONFIRM(link google -- android could potentially exist.
    [Show full text]
  • Guide to Open Source Solutions
    White paper ___________________________ Guide to open source solutions “Guide to open source by Smile ” Page 2 PREAMBLE SMILE Smile is a company of engineers specialising in the implementing of open source solutions OM and the integrating of systems relying on open source. Smile is member of APRIL, the C . association for the promotion and defence of free software, Alliance Libre, PLOSS, and PLOSS RA, which are regional cluster associations of free software companies. OSS Smile has 600 throughout the World which makes it the largest company in Europe - specialising in open source. Since approximately 2000, Smile has been actively supervising developments in technology which enables it to discover the most promising open source products, to qualify and assess them so as to offer its clients the most accomplished, robust and sustainable products. SMILE . This approach has led to a range of white papers covering various fields of application: Content management (2004), portals (2005), business intelligence (2006), PHP frameworks (2007), virtualisation (2007), and electronic document management (2008), as well as PGIs/ERPs (2008). Among the works published in 2009, we would also cite “open source VPN’s”, “Firewall open source flow control”, and “Middleware”, within the framework of the WWW “System and Infrastructure” collection. Each of these works presents a selection of best open source solutions for the domain in question, their respective qualities as well as operational feedback. As open source solutions continue to acquire new domains, Smile will be there to help its clients benefit from these in a risk-free way. Smile is present in the European IT landscape as the integration architect of choice to support the largest companies in the adoption of the best open source solutions.
    [Show full text]
  • Red Hat Directory Server 11 Installation Guide
    Red Hat Directory Server 11 Installation Guide Instructions for installing Red Hat Directory Server Last Updated: 2021-04-23 Red Hat Directory Server 11 Installation Guide Instructions for installing Red Hat Directory Server Marc Muehlfeld Red Hat Customer Content Services [email protected] Legal Notice Copyright © 2021 Red Hat, Inc. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/ . In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries. Node.js ® is an official trademark of Joyent. Red Hat is not formally related to or endorsed by the official Joyent Node.js open source or commercial project.
    [Show full text]
  • Red Hat Enterprise Linux 6 6.4 Release Notes
    Red Hat Enterprise Linux 6 6.4 Release Notes Release Notes for Red Hat Enterprise Linux 6.4 Edition 4 Last Updated: 2017-10-20 Red Hat Enterprise Linux 6 6.4 Release Notes Release Notes for Red Hat Enterprise Linux 6.4 Edition 4 Red Hat Engineering Content Services Legal Notice Copyright © 2012 Red Hat, Inc. This document is licensed by Red Hat under the Creative Commons Attribution-ShareAlike 3.0 Unported License. If you distribute this document, or a modified version of it, you must provide attribution to Red Hat, Inc. and provide a link to the original. If the document is modified, all Red Hat trademarks must be removed. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries. Node.js ® is an official trademark of Joyent. Red Hat Software Collections is not formally related to or endorsed by the official Joyent Node.js open source or commercial project.
    [Show full text]
  • Centos System Administration Essentials
    www.it-ebooks.info CentOS System Administration Essentials Become an efficient CentOS administrator by acquiring real-world knowledge of system setup and configuration Andrew Mallett BIRMINGHAM - MUMBAI www.it-ebooks.info CentOS System Administration Essentials Copyright © 2014 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: November 2014 Production reference: 1181114 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78398-592-0 www.packtpub.com Cover image by Bartosz Chucherko ([email protected]) [ FM-2 ] www.it-ebooks.info Credits Author Project Coordinator Andrew Mallett Neha Thakur Reviewers Proofreaders Jonathan
    [Show full text]
  • Red Hat Jboss Fuse 6.3 Security Guide
    Red Hat JBoss Fuse 6.3 Security Guide Making it safe for your systems to work together Last Updated: 2017-11-09 Red Hat JBoss Fuse 6.3 Security Guide Making it safe for your systems to work together JBoss A-MQ Docs Team Content Services [email protected] Legal Notice Copyright © 2016 Red Hat. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/ . In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries. Node.js ® is an official trademark of Joyent.
    [Show full text]
  • Installation Guide
    Red Hat Directory Server 10 Installation Guide Updated for Directory Server 10.6 Last Updated: 2020-12-07 Red Hat Directory Server 10 Installation Guide Updated for Directory Server 10.6 Marc Muehlfeld Red Hat Customer Content Services [email protected] Petr Bokoč Red Hat Customer Content Services Tomáš Čapek Red Hat Customer Content Services Petr Kovář Red Hat Customer Content Services Ella Deon Ballard Red Hat Customer Content Services Legal Notice Copyright © 2020 Red Hat, Inc. This document is licensed by Red Hat under the Creative Commons Attribution-ShareAlike 3.0 Unported License. If you distribute this document, or a modified version of it, you must provide attribution to Red Hat, Inc. and provide a link to the original. If the document is modified, all Red Hat trademarks must be removed. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
    [Show full text]
  • Vysok´E Uˇcení Technick´E V Brnˇe N´Astroj Pro
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Digital library of Brno University of Technology VYSOKEU´ CENˇ ´I TECHNICKE´ V BRNEˇ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMACNˇ ´ICH TECHNOLOGI´I USTAV´ INFORMACNˇ ´ICH SYSTEM´ U˚ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS NASTROJ´ PRO KONTROLU STAVU VSECHˇ REPLIK VE FREEIPA INFRASTRUKTUREˇ A TOOL TO CHECK STATUS OF ALL REPLICAS IN THE FREEIPA INFRASTRUCTURE DIPLOMOVA´ PRACE´ MASTER’S THESIS AUTOR PRACE´ Bc. DAVID SPˇ UREK˚ AUTHOR VEDOUC´I PRACE´ Ing. JAN ZELENY´ SUPERVISOR BRNO 2013 Abstrakt Tato diplomov´apr´acese zab´yv´amoˇznostmizjiˇstˇen´ıstavu vˇsech replik ve FreeIPA infras- truktuˇre. Na ´uvod pr´acejsou vysvˇetleny d˚uleˇzit´epojmy jako FreeIPA, FreeIPA infras- truktura a replika. FreeIPA server se skl´ad´az nˇekolika souˇc´ast´ı,kter´ebudou pops´any po- drobnˇeji.N´astroj navrˇzen´yv t´etopr´acivyuˇz´ıv´aSNMP pro sledov´an´ıstavu sluˇzebbˇeˇz´ıc´ıch na FreeIPA serveru. N´astroj m´advˇez´akladn´ıˇc´asti,kter´ymijsou konfigurace SNMP agenta a uˇzivatelsk´erozhran´ı. Abstract This master's thesis deals with possibilities how to check status of all replicas in FreeIPA infrastructure. At the begining of the thesis some important terms like FreeIPA, FreeIPA infrastructure and replica are explained. FreeIPA is a composition of several components which will be described. The tool designed in this master thesis uses SNMP for tracking a status of FreeIPA services. Two main parts of the tool are SNMP agent's configuration and user interface. Kl´ıˇcov´aslova FreeIPA, stav replik, stav sluˇzeb,SNMP.
    [Show full text]
  • Red Hat Enterprise Linux 7 7.1 Release Notes
    Red Hat Enterprise Linux 7 7.1 Release Notes Release Notes for Red Hat Enterprise Linux 7.1 Last Updated: 2018-05-18 Red Hat Enterprise Linux 7 7.1 Release Notes Release Notes for Red Hat Enterprise Linux 7.1 Red Hat Customer Content Services Legal Notice Copyright © 2015-2017 Red Hat, Inc. This document is licensed by Red Hat under the Creative Commons Attribution-ShareAlike 3.0 Unported License. If you distribute this document, or a modified version of it, you must provide attribution to Red Hat, Inc. and provide a link to the original. If the document is modified, all Red Hat trademarks must be removed. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries. Node.js ® is an official trademark of Joyent. Red Hat Software Collections is not formally related to or endorsed by the official Joyent Node.js open source or commercial project.
    [Show full text]
  • Error Detection and Correction Suite for Freeipa Infrastructure
    MASARYK UNIVERSITY FACULTY OF INFORMATICS Û¡¢£¤¥¦§¨ª«¬­Æ°±²³´µ·¸¹º»¼½¾¿Ý Error detection and correction suite for FreeIPA infrastructure BACHELOR THESIS Tomáš Babej Brno, spring 2015 Declaration Hereby I declare, that this paper is my original authorial work, which I have worked out by my own. All sources, references and literature used or excerpted during elaboration of this work are properly cited and listed in complete reference to the due source. Tomáš Babej Advisor: Ing. Mgr. et Mgr. Zdenˇek Ríha,ˇ Ph.D. i Acknowledgment I would like to express my gratitude towards everybody who supported my during writing of the thesis. I want to thank Ing. Mgr. et Mgr. Zdenˇek Ríha,ˇ Ph.D. for his help and patient, prompt responses during supervision of my thesis. Additionally, I’m grateful for the support and technological help received from the FreeIPA developers, namely Ing. Petr Špaˇcek,Ing. Martin Košek and MSc. Alexander Bokovoy. ii Abstract The aim of this thesis is to implement a pluggable troubleshooting tool that collects and analyzes information about FreeIPA deployment. The thesis provides a detailed view on the architecture of FreeIPA servers and clients, their interaction and the technologies they are based on. Afterwards, high- level design and implementation details are featured, which serves as a guide for further extension by FreeIPA developers. iii Keywords FreeIPA, LDAP, Kerberos, PKI, Cockpit, troubleshooting, pluggable, tool iv Contents 1 Goal of the Thesis ...........................1 2 Foundational technologies ......................3 2.1 Lightweight Directory Access Protocol . .3 2.1.1 Directory services . .3 2.1.2 Structure of a LDAP directory .
    [Show full text]
  • Latest Release
    RavadaVDI Sep 22, 2021 Administrator Documentation 1 Ravada delivers 3 2 Who is Ravada meant for? 5 3 Ravada VDI documentation 7 3.1 Install Ravada..............................................7 3.2 Install Ravada in Ubuntu.........................................8 3.3 Install Ravada in Debian......................................... 10 3.4 Install Ravada on Fedora......................................... 12 3.5 Install Ravada - Ubuntu Xenial..................................... 15 3.6 Install Ravada from dockers....................................... 15 3.7 Running Ravada in production...................................... 17 3.8 log file.................................................. 19 3.9 Post Install Recomendations....................................... 20 3.10 Development release........................................... 20 3.11 Add KVM storage pool......................................... 24 3.12 Apache.................................................. 25 3.13 How to import a Virtualbox image.................................... 27 3.14 How to create a Virtual Machine..................................... 28 3.15 How to dump a hard drive to Ravada.................................. 29 3.16 How to Install a LDAP Server...................................... 29 3.17 How to add a KVM template....................................... 30 3.18 New ISO image............................................. 31 3.19 How to import a OpenGnsys image................................... 32 3.20 Integrating Ravada and OpenGnsys..................................
    [Show full text]
  • SUSE Linux Enterprise Server: Upgrades & Migrations
    SUSE Linux Enterprise Server: Upgrades & Migrations TUT1146 Paul McKeith – Sales Engineer [email protected] Thorsten Kukuk – Senior Architect [email protected] 1 Agenda 1. Destination: SLES 12 or SLES 15? 2. Upgrade or Fresh Installation? 3. Upgrade Paths / Methods 4. Upgrade / Migration Process Tips 5. Appendix: SLES Support Lifecycle 2 SUSE Enterprise Linux 12 or 15? 3 Support Pack or Major Version Upgrade? What are your goals? GOAL: Maintain Support • End of Life / Lifecycle & Longevity • IHV & ISV Certification Requirements • Regulatory or Enterprise Policy Compliance • Compatible yet secure via backports GOAL: New OS Features - May require SLE 15 GOAL: New Hardware Support - May require SLE 15 GOAL: Minimize Uncertainty • If its not broke, don’t fix nor secure it! (example: TLS 1.2) 4 Server Platform Product Support Lifecycle SUSE ten year support commitment for SUSE Linux Enterprise 11, 12, and 15 https://www.suse.com/support/policy/ 6 Server Platform Product Support Lifecycle SUSE thirteen year support commitment for SUSE Linux Enterprise 11, 12, and 15 https://www.suse.com/support/policy/ 8 More time! Long Term Service Pack Support (LTSS) An option that provides up to 3 years of continued access to technical support, maintenance and security patches beyond general support expiration date. • For vanilla SLES 11,12, & 15 + SLES for SAP 11 SP4 • https://www.suse.com/products/long-term-service-pack-support/ Extended Support Pack Overlay Support (ESPOS) Total of 4.5 years of service pack support (1.5 yrs General + 3 yrs ESPOS).
    [Show full text]