Formation Openstack Utilisateur

Total Page:16

File Type:pdf, Size:1020Kb

Formation Openstack Utilisateur FORMATION OPENSTACK UTILISATEUR 1 ABOUT THESE TRAINING MATERIALS 2 . 1 TRAINING MATERIALS WRITTEN BY PARTICULE ex Osones/Alterway Cloud Native experts Devops experts Our training offers: https://particule.io/en/trainings/ Sources: https://github.com/particuleio/formations/ HTML/PDF: https://particule.io/formations/ 2 . 2 COPYRIGHT License: Creative Commons BY-SA 4.0 Copyright © 2014-2019 alter way Cloud Consulting Copyright © 2020 particule. Since 2020, all commits are the property of their owners 2 . 3 INTRODUCTION 3 . 1 GOALS OF THE TRAINING: CLOUD Understand concepts and benefits of cloud Know the vocabulary related to cloud Overview of cloud market players and focus on AWS and OpenStack Know how to take advantage of IaaS Be able to decide what is cloud compatible or not Adapt its system administration and development methods to a cloud environment 3 . 2 GOALS OF THE TRAINING: OPENSTACK Discover OpenStack and use its different services Know how the project works and its capabilities Understand the internals of each OpenStack component Be able to make the right configuration choices Be capable of manually deploying an OpenStack cloud providing IaaS Know the best practices for deploying OpenStack Be able to track down the cause of an error in OpenStack Be able how to react in front of a bug and know the fix process 3 . 3 REQUIREMENTS Advanced sys admin skills for Linux such as Ubuntu, Red Hat or Debian, including: Package management Configuration files and services handling LVM (Logical Volume Management) and filesystems Notions: Virtualization: KVM (Kernel-based Virtual Machine), libvirt Network: iptables, namespaces SQL Optional: Comfortable in a Python environment 3 . 4 CLOUD, OVERVIEW 4 . 1 FORMAL DEFINITION 4 . 2 SPECIFICATIONS Provide one or more service(s)... Self service Through the network Sharing resources Fast elasticity Metering Inspired by the NIST definition https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800- 145.pdf 4 . 3 SELF SERVICE User goes directly to the service No humain intermediary Immediate responses Services catalog for their discovery 4 . 4 THROUGH THE NETWORK User uses the service through the network The service provider is remote to the consumer Network = internet or not Usage of standard network protocols (typically: HTTP) 4 . 5 SHARING RESSOURCES A cloud provided services to multiple users/organizations (multi-tenant) Tenant or project: logical isolation of resources Resources are available in large quantities (considered unlimited) Resources usage is not visible Accurate location of resources is not visible 4 . 6 FAST ELASTICITY Provisionning and deletion of resources almost instantaneous Enables scaling Ability to automate these scaling actions Virtually no limit to this elasticity 4 . 7 METERING Usage of cloud resources is monitored by the provider The provider can do capacity planning and billing from these informations User is therefore billed depending on accurate usage of resources User can take advantage of these informations 4 . 8 MODELS service models: IaaS, PaaS, SaaS deployment models: public, private, hybrid 4 . 9 IAAS Infrastructure as a Service Infrastructure: Compute Storage Network Target users: administrators (system, storage, network) 4 . 10 PAAS Platform as a Service Two concepts: Environment to develop/deploy an application (language/framework specific - example: Python/Django) Higher level resources than infrastructure, example: DBMS Target users: application developers 4 . 11 SAAS Software as a Service Target users: end users Not to be confused with the economic definition of SaaS 4 . 12 SOMETHING AS A SERVICE? Load balancing as a Service (Infra) Database as a Service (Platform) MyApplication as a Service (Software) etc. 4 . 13 SERVICE MODELS IN ONE DIAGRAM IaaS - PaaS - SaaS (source: Wikipedia) 4 . 14 PUBLIC OR PRIVATE CLOUD? Who is it for? Public: everyone, available on internet Private: to an organization, available on its network 4 . 15 HYBRID CLOUD Usage of multiple public and/or private clouds Attractive concept but implementation is hard a priori Some use cases fit perfectly Continuous integration (CI) Incentives: Avoid lock-in Cloud bursting 4 . 16 VIRTUALIZATION INSTANT Let's make it clear. Virtualization is a technology that can implement the compute function A cloud providing compute resources can use virtualization But it can also use: Bare-metal Containers 4 . 17 APIS ARE KEY Reminder: API stands for Application Programming Interface In the software sense: Interface for a program to use a library In the cloud sense: Interface for a program to use a service (XaaS) Programming interface (through the network, often HTTP) Explicit boundary between the provider and the user Defines how the user interacts with the cloud to manage their resources Manages: CRUD (Create, Read, Update, Delete) 4 . 18 API REST One ressource == one URI (Uniform Resource Identifier) Usage of HTTP verbs to define operations (CRUD) GET POST PUT DELETE Usage of HTTP return codes Resources are represented in the HTTP responses' body 4 . 19 REST - EXAMPLES GET http://endpoint/volumes/ GET http://endpoint/volumes/?size=10 POST http://endpoint/volumes/ DELETE http://endpoint/volumes/xyz 4 . 20 REAL EXAMPLE GET /v2.0/networks/d32019d3-bc6e-4319-9c1d-6722fc136a22 { "network":{ "status":"ACTIVE", "subnets":[ "54d6f61d-db07-451c-9ab3-b9609b6b6f0b" ], "name":"private-network", "provider:physical_network":null, "admin_state_up":true, "tenant_id":"4fd44f30292945e481c7b8a0c8908869", "provider:network_type":"local", "router:external":true, "shared":true, "id":"d32019d3-bc6e-4319-9c1d-6722fc136a22", "provider:segmentation_id":null } } 4 . 21 WHY CLOUD? ECONOMICAL POINT OF VIEW Consider IT resources as service provider resources Shift the "investment" budget (Capex) to the "operation" budget (Opex) Cut costs by sharing resources, and maybe with economies of scale Reduce delivery times Match costs to the real usage of resources 4 . 22 WHY CLOUD? TECHNICAL POINT OF VIEW Abstract from the lower layers (server, network, OS, storage) Get rid of the technical administration of resources and services (DB, firewalls, load-balancing, etc.) Design infrastructures which can scale on the fly Act on resources through lines of code and manage infrastructures "as code" 4 . 23 MARKET 4 . 24 AMAZON WEB SERVICES (AWS), LEADER AWS logo Started in 2006 At first: "e-commerce" web services for developers Then: other services for developers And finally: infrastructure resources Recently, SaaS 4 . 25 PUBLIC IAAS ALTERNATIVES TO AWS Google Cloud Platform Microsoft Azure Rackspace DreamHost DigitalOcean In France: Cloudwatt (Orange Business Services) Numergy (SFR) OVH Ikoula Scaleway Outscale 4 . 26 PRIVATE IAAS OpenStack CloudStack Eucalyptus OpenNebula 4 . 27 OPENSTACK IN A FEW WORDS OpenStack logo Was born in 2010 OpenStack Foundation since 2012 Written in Python and distributed under Apache 2.0 license Large support from the industry and various contributions 4 . 28 PUBLIC PAAS EXAMPLES Amazon Elastic Beanstalk (https://aws.amazon.com/fr/elasticbeanstalk) Google App Engine (https://cloud.google.com/appengine) Heroku (https://www.heroku.com) 4 . 29 PRIVATE PAAS SOLUTIONS Cloud Foundry, Foundation (https://www.cloudfoundry.org) OpenShift, Red Hat (https://www.openshift.org) Solum, OpenStack (https://wiki.openstack.org/wiki/Solum) 4 . 30 INFRASTRUCTURE AS A SERVICE CONCEPTS 4 . 31 BASICS Infrastructure: Compute Storage Network 4 . 32 COMPUTE RESOURCES Instance Image Flavor Keypair (SSH) 4 . 33 INSTANCE Dedicated to compute Short typical lifetime, to be considered ephemeral Should not store persistent data Non persistent root disk Based on an image 4 . 34 CLOUD IMAGE Disk image containing an already installed OS Infinitely instanciable Can talk to the metadata API 4 . 35 METADATA API http://169.254.169.254 Available from the instance Provides informations about the instance Exposes userdata The cloud-init tool helps take advantage of this API 4 . 36 FLAVOR Instance type in AWS Defines an instance model regarding CPU, RAM, disk (root), ephemeral disk The ephemeral disk has, like the root disk, the advantage of often being local and thus fast 4 . 37 KEYPAIR SSH public key + private key Cloud manages and stores the public key This public key is used to give SSH access to the instances 4 . 38 NETWORK RESOURCES 1/2 L2 network Network port L3 network Router Floating IP Security group 4 . 39 NETWORK RESOURCES 2/2 Load Balancing as a Service VPN as a Service Firewall as a Service 4 . 40 STORAGE RESOURCES Cloud provides two kinds of storage Block Object 4 . 41 BLOCK STORAGE Volumes that can be attached to an instance Access to raw devices such as /dev/vdb Ability to use any kind of file system Ability to use LVM, encryption, etc. Compatible with all existing applications Requires provisioning space by defining volume size 4 . 42 SHARED STORAGE? Block storage is not a shared storage solution like NFS NFS is at a higher layer: file system A volume is a priori connected to a single host 4 . 43 "BOOT FROM VOLUME" Starting an instance with its root disk on a volume Root disk data persistence Gets similar to classical server 4 . 44 OBJECT STORAGE API: CRUD on data Push and retrieve objects in/from a container/bucket No data hierachy, no directories, no file system Read/write access through APIs only No provisioning necessary Application must be designed to take advantage of object storage 4 . 45 ORCHESTRATION Orchestrate creation and management of resources in the cloud Architecture definition in a template Resources created
Recommended publications
  • IP Spoofing in and out of the Public Cloud
    computers Article IP Spoofing In and Out of the Public Cloud: From Policy to Practice Natalija Vlajic *, Mashruf Chowdhury and Marin Litoiu Department of Electrical Engineering & Computer Science, York University, Toronto, ON M3J 1P3, Canada; [email protected] (M.C.); [email protected] (M.L.) * Correspondence: [email protected] Received: 28 August 2019; Accepted: 25 October 2019; Published: 9 November 2019 Abstract: In recent years, a trend that has been gaining particular popularity among cybercriminals is the use of public Cloud to orchestrate and launch distributed denial of service (DDoS) attacks. One of the suspected catalysts for this trend appears to be the increased tightening of regulations and controls against IP spoofing by world-wide Internet service providers (ISPs). Three main contributions of this paper are (1) For the first time in the research literature, we provide a comprehensive look at a number of possible attacks that involve the transmission of spoofed packets from or towards the virtual private servers hosted by a public Cloud provider. (2) We summarize the key findings of our research on the regulation of IP spoofing in the acceptable-use and term-of-service policies of 35 real-world Cloud providers. The findings reveal that in over 50% of cases, these policies make no explicit mention or prohibition of IP spoofing, thus failing to serve as a potential deterrent. (3) Finally, we describe the results of our experimental study on the actual practical feasibility of IP spoofing involving a select number of real-world Cloud providers. These results show that most of the tested public Cloud providers do a very good job of preventing (potential) hackers from using their virtual private servers to launch spoofed-IP campaigns on third-party targets.
    [Show full text]
  • Kalray, Vates and Scaleway Announce Collaboration to Develop and Deliver Virtualization Solutions Powered by Acceleration Dpu-Based Cards
    KALRAY, VATES AND SCALEWAY ANNOUNCE COLLABORATION TO DEVELOP AND DELIVER VIRTUALIZATION SOLUTIONS POWERED BY ACCELERATION DPU-BASED CARDS The companies intend to provide a power-optimized and energy-saving virtualization stack using Kalray's acceleration cards and targeting data-intensive applications. Grenoble / Paris - France, July 12,2021 - Kalray (Euronext Growth Paris : ALKAL), a leading provider in the new generation of processors specialized in Intelligent Data Processing from Cloud to Edge, Vates, an open source software company specializing in secure and open source virtualization, and Scaleway, the leading French and European alternative IaaS and PaaS provider and Bare Metal pioneer, announce their collaboration to promote an energy-optimized and secure environment in data centers. This first collaboration will combine Kalray's new K200-LP™ acceleration card, incorporating Kalray's latest generation MPPA® DPU Coolidge™ processor, with Vates' optimized XCP-ng open source virtualization solution to create a secure, performance-optimized virtualization stack targeting data-intensive applications. This stack could be operated and managed by vendors, particularly French or European sovereign vendors in Scaleway's ultra-high performance environmental data centers. Virtualization environments have been a huge success for more than a decade in the data center world by allowing a large number of virtual machines to run on a single physical machine. These environments are now widely deployed both in the Cloud and in on-premise data centers. However, the hypervisor, the software part that is at the heart of these environments, must evolve to continue to be more efficient in terms of performance and energy consumption, while being more flexible and more secure.
    [Show full text]
  • Hitachi Cloud Accelerator Platform Product Manager HCAP V 1
    HITACHI Inspire the Next 2535 Augustine Drive Santa Clara, CA 95054 USA Contact Information : Hitachi Cloud Accelerator Platform Product Manager HCAP v 1 . 5 . 1 Hitachi Vantara LLC 2535 Augustine Dr. Santa Clara CA 95054 Component Version License Modified 18F/domain-scan 20181130-snapshot-988de72b Public Domain Exact BSD 3-clause "New" or "Revised" a connector factory 0.0.9 Exact License BSD 3-clause "New" or "Revised" a connector for Pageant using JNA 0.0.9 Exact License BSD 3-clause "New" or "Revised" a connector for ssh-agent 0.0.9 Exact License a library to use jsch-agent-proxy with BSD 3-clause "New" or "Revised" 0.0.9 Exact sshj License Exact,Ma activesupport 5.2.1 MIT License nually Identified Activiti - BPMN Converter 6.0.0 Apache License 2.0 Exact Activiti - BPMN Model 6.0.0 Apache License 2.0 Exact Activiti - DMN API 6.0.0 Apache License 2.0 Exact Activiti - DMN Model 6.0.0 Apache License 2.0 Exact Activiti - Engine 6.0.0 Apache License 2.0 Exact Activiti - Form API 6.0.0 Apache License 2.0 Exact Activiti - Form Model 6.0.0 Apache License 2.0 Exact Activiti - Image Generator 6.0.0 Apache License 2.0 Exact Activiti - Process Validation 6.0.0 Apache License 2.0 Exact Addressable URI parser 2.5.2 Apache License 2.0 Exact Exact,Ma adzap/timeliness 0.3.8 MIT License nually Identified aggs-matrix-stats 5.5.1 Apache License 2.0 Exact agronholm/pythonfutures 3.3.0 3Delight License Exact ahoward's lockfile 2.1.3 Ruby License Exact Exact,Ma ahoward's systemu 2.6.5 Ruby License nually Identified GNU Lesser General Public License ai's
    [Show full text]
  • Formation Conteneurs
    FORMATION CONTENEURS 1 ABOUT THESE TRAINING MATERIALS 2 . 1 TRAINING MATERIALS WRITTEN BY PARTICULE ex Osones/Alterway Cloud Native experts Devops experts Our training offers: https://particule.io/en/trainings/ Sources: https://github.com/particuleio/formations/ HTML/PDF: https://particule.io/formations/ 2 . 2 COPYRIGHT License: Creative Commons BY-SA 4.0 Copyright © 2014-2019 alter way Cloud Consulting Copyright © 2020 particule. Since 2020, all commits are the property of their owners 2 . 3 GOALS OF THE TRAINING: CLOUD Understand concepts and benefits of cloud Know the vocabulary related to cloud Overview of cloud market players and focus on AWS and OpenStack Know how to take advantage of IaaS Be able to decide what is cloud compatible or not Adapt its system administration and development methods to a cloud environment 2 . 4 CLOUD, OVERVIEW 3 . 1 FORMAL DEFINITION 3 . 2 SPECIFICATIONS Provide one or more service(s)... Self service Through the network Sharing resources Fast elasticity Metering Inspired by the NIST definition https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800- 145.pdf 3 . 3 SELF SERVICE User goes directly to the service No humain intermediary Immediate responses Services catalog for their discovery 3 . 4 THROUGH THE NETWORK User uses the service through the network The service provider is remote to the consumer Network = internet or not Usage of standard network protocols (typically: HTTP) 3 . 5 SHARING RESSOURCES A cloud provided services to multiple users/organizations (multi-tenant) Tenant or project: logical isolation of resources Resources are available in large quantities (considered unlimited) Resources usage is not visible Accurate location of resources is not visible 3 .
    [Show full text]
  • The State of the Internet in France 2019 REPORT
    2019 The state of the internet in France 2019 REPORT French Republic - June 2019 The state of the internet in France 2019 REPORT TABLE OF CONTENTS ENSURING THE INTERNET ENSURING FUNCTIONS PROPERLY 08 INTERNET OPENNESS 47 1. IMPROVING INTERNET 4. GUARANTEEING QUALITY OF SERVICE NET NEUTRALITY 48 MEASUREMENT 10 1. Arcep’s commitment 1. Potential biases of quality at the European level 48 of service measurement 10 2. Work in progress 49 2. Work begun in 2018 3. Analysing observed practices 57 on characterising the user environment 11 4. European cooperation for a coherent application of the Regulation 59 3. Towards more transparent and robust testing methodologies 12 4. Importance of choosing 5. FOSTERING THE OPENNESS the right test servers 17 OF DEVICES 61 5. How to maximise a QoS 1. Arcep’s work 61 test’s reliability? 20 2. Regulatory review 62 6. Arcep’s monitoring of mobile Internet quality 20 3. Review of market practices 63 2. MONITORING DATA Lexicon 66 INTERCONNECTION MARKET 23 Annex 1: Implementation of an Application 1. The internet’s evolving architecture 23 Programming Interface (API) in boxes 71 2. State of data interconnection Annex 2: in France 27 Test servers provided by the different quality of service measurement tools 74 3. ACCELERATING Annex 3: Increasing the accuracy THE TRANSITION TO IPv6 34 of QoS testing 79 1. IPv4 addresses are running out quickly, the transition to IPv6 is a growing imperative 34 2. Barometer of the transition to IPv6 in France 35 3. Co-construction with the ecosystem to accelerate the transition to IPv6 41 04 THE STATE OF THE INTERNET IN FRANCE Arcep’s 2019 Arcep examines Internet components and vital signs that it is responsible Internetfor monitoring: quality ofcheck-up service, data interconnection, the transition to IPv6, net neutrality and the openness of devices.
    [Show full text]
  • Cloud Providers Spreadsheet Digitalocean Amazon Azure
    Cloud Providers Spreadsheet Digitalocean Amazon Azure Ferdy misapplying supplementally? Shotten Thorpe speed-ups roundly or schillerize ringingly when Michal is mythic. Posticous Broddie sometimes invigilated any sprawl albumenised unboundedly. Our business areas of these services you do i deployed using cloud providers See how can unique fingerprint was generated and verify it roam the blockchain. Depending on the internet speed of the viewer, AWS automatically streams the video at the appropriate resolution. Google cloud providers, amazon web apps that generates the. Worked for HKT Teleservices under the account of PCCW Global. The cloud provides managed spark, provide is usually work towards a service, feel free tier is? This is where your notebooks, BI tools like Tableau or Quicksight, or your machine learning toolchain lives. There are amazon cloud providers have been excluded, azure to prevent asset losses and spreadsheet sits at reverie employees have no experience. We try or leave a positive mark on go world through infant and technology. Data algorithms allow Fairmarkit to be intelligent with how they recommend their suppliers, and ultimately drive more business. For companies in the cloud computing space, an obvious partner is AWS, which has many programs built to help support its ecosystem for developers. APIs for maps, routes, and places based on Google Maps. Aws provides amazon ebs volumes to provide a provider. Why AWS is important? If you need. Swit is a team collaboration platform that seamlessly combines team chat with task managements in a new way. The text data some of TOAST, designed on here own technology and established in Pan.
    [Show full text]
  • Automatická Konfigurace Serverů a Instalace OS
    ZADÁNÍ BAKALÁŘSKÉ PRÁCE I. OSOBNÍ A STUDIJNÍ ÚDAJE Příjmení: Skružný Jméno: Petr Osobní číslo: 457860 Fakulta/ústav: Fakulta informačních technologií Zadávající katedra/ústav: Katedra počítačových systémů Studijní program: Informatika Studijní obor: Bezpečnost a informační technologie II. ÚDAJE K BAKALÁŘSKÉ PRÁCI Název bakalářské práce: Automatická konfigurace serverů a instalace OS Název bakalářské práce anglicky: Automactic server configuration and OS installation Pokyny pro vypracování: Prozkoumejte volně dostupné systémy pro automatickou instalaci serverů, např. Foreman, Ironic, Crowbar, MaaS. Vyberte z nich jeden nejvhodnější na základě funkcionality, jednoduchosti instalace, použití a velikosti uživatelské základny a vytvořte konfiguraci pro instalaci Linuxu (ideálně s podporou více distribucí) a Windows na dvou druzích serverů (HPE, SuperMicro). Systém by měl umět mimo instalace operačního systému na servery také nastavit IP adresy rozhraní pro správu serveru a rozhraní do datové sítě a konfigurovat RAID řadiče serverů. Seznam doporučené literatury: Dodá vedoucí práce. Jméno a pracoviště vedoucí(ho) bakalářské práce: Ing. Tomáš Vondra, Ph.D., katedra kybernetiky FEL Jméno a pracoviště druhé(ho) vedoucí(ho) nebo konzultanta(ky) bakalářské práce: Datum zadání bakalářské práce: 31.12.2018 Termín odevzdání bakalářské práce: _____________ Platnost zadání bakalářské práce: _____________ ___________________________ ___________________________ ___________________________ Ing. Tomáš Vondra, Ph.D. podpis vedoucí(ho) ústavu/katedry doc. RNDr.
    [Show full text]
  • Formation Openstack
    FORMATION OPENSTACK 1 ABOUT THESE TRAINING MATERIALS 2 . 1 TRAINING MATERIALS WRITTEN BY PARTICULE ex Osones/Alterway Cloud Native experts Devops experts Our training offers: https://particule.io/en/trainings/ Sources: https://github.com/particuleio/formations/ HTML/PDF: https://particule.io/formations/ 2 . 2 COPYRIGHT License: Creative Commons BY-SA 4.0 Copyright © 2014-2019 alter way Cloud Consulting Copyright © 2020 particule. Since 2020, all commits are the property of their owners 2 . 3 INTRODUCTION 3 . 1 GOALS OF THE TRAINING: CLOUD Understand concepts and benefits of cloud Know the vocabulary related to cloud Overview of cloud market players and focus on AWS and OpenStack Know how to take advantage of IaaS Be able to decide what is cloud compatible or not Adapt its system administration and development methods to a cloud environment 3 . 2 GOALS OF THE TRAINING: OPENSTACK Discover OpenStack and use its different services Know how the project works and its capabilities Understand the internals of each OpenStack component Be able to make the right configuration choices Be capable of manually deploying an OpenStack cloud providing IaaS Know the best practices for deploying OpenStack Be able to track down the cause of an error in OpenStack Be able how to react in front of a bug and know the fix process 3 . 3 REQUIREMENTS Advanced sys admin skills for Linux such as Ubuntu, Red Hat or Debian, including: Package management Configuration files and services handling LVM (Logical Volume Management) and filesystems Notions: Virtualization: KVM (Kernel-based Virtual Machine), libvirt Network: iptables, namespaces SQL Optional: Comfortable in a Python environment 3 .
    [Show full text]
  • SOLUTION CLOUD : LAQUELLE CHOISIR ? Cloud Radar - AWS, Azure, Google Cloud Avant-Propos
    SOLUTION CLOUD : LAQUELLE CHOISIR ? Cloud Radar - AWS, Azure, Google Cloud Avant-propos Pourquoi cette étude ? La documentation sur le sujet du cloud devient pléthorique, mais il est malheu- reusement rare de trouver une ressource indépendante, objective et com- parative. En effet, les différents acteurs mondiaux du Cloud ont des histoires et des philosophies très différentes, qui les ont poussés à proposer des outils eux-mêmes uniques. Nous retrouvons bien évidemment des points communs à tous, comme la ca- pacité de démarrer des serveurs virtuels, plus ou moins spécialisés, mais cela ne constitue que la base de ces services. À l’inverse, c’est ce qui différencie ces fournisseurs qui est le plus intéressant. Comme nous allons le voir, les clouds proposent des services souvent com- parables, mais pas équivalents pour autant. Amazon Web Services offre une palette de service quasi infinie, est le roi du micro service, mais à des coûts souvent plus élevés que ses concurrents, et n’offre pas toujours les meilleures performances selon l’usage ciblé. Si vous êtes dans l’analyse de données, le fameux “Big Data”, l’intelligence artificielle, ou le container, Google Cloud Platform sera plus adapté. Si vous êtes déjà très empreint de culture Microsoft, Azure pourrait s’imposer. Il n’y a donc pas “un” cloud ou “le” cloud, mais plusieurs infrastructures avec chacune leurs forces et leurs faiblesses. Le but de cette étude comparative est, à ce titre, de mettre en lumière ces différences afin de vous guider dans le choix du bon cloud, selon vos enjeux et vos besoins. Sommaire Une étude indépendante et scientifique Oceanet Technology souhaite souligner qu’aucune rémunération, sous aucune forme directe ou indirecte, n’a été perçue par l’équipe d’auteurs ou la société.
    [Show full text]
  • Iaas - Introduction
    POUR DES COMPÉTENCES TOUJOURS À LA POINTE IaaS - Introduction Emmanuel Braux Institut Mines Telecom / IMT Atlantique [email protected] Institut Mines-Télécom Plan IaaS - Introduction . Architectures Cloud . IaaS Institut Mines-Télécom IaaS - Introduction ► Architectures Cloud Définition et concepts « Whatever » as a service Types de Cloud IaaS Institut Mines-Télécom IaaS - Introduction Architectures Cloud ► Définition et concepts « Whatever » as a service Types de Cloud Les acteurs du IaaS Vocabulaire liés au IaaS Institut Mines-Télécom IaaS - Introduction Wikipédia dit : « Le cloud computing, [. ], est l’exploitation de la puissance de calcul ou de stockage de serveurs informatiques distants par l’intermédiaire d’un réseau, généralement l’internet. [. ] le cloud computing est l’accès via un réseau de télécommunications, À LA DEMANDE et EN LIBRE-SERVICE, à des ressources informatiques partagées, configurables. [. ] Il s’agit donc d’une délocalisation de l’infrastructure informatique. » Institut Mines-Télécom IaaS - Introduction Concepts . Accès à des services en ligne • Puissance de calcul, capacité de stockage, fonctionnalités réseau, … • Outils, Applications, environnement de travail . En mode « libre-service » (notion de catalogue) . A la demande et facturation à l’usage . Flexibilité et élasticité Institut Mines-Télécom IaaS - Introduction Architectures Cloud Définition et concepts ► « Whatever » as a service Types de Cloud IaaS Institut Mines-Télécom IaaS - Introduction XaaS : Whatever as a Service . Principalement • IaaS Infrastructure as a Service • PaaS Platform as a Service • SaaS Software as a Service . Mais aussi • Database as a Service • Network as a Service • Storage as a Service • Load balancing as a Service • DNS as a Service • Caas, Faas, Kaas, • … Institut Mines-Télécom IaaS - Introduction SaaS : Software as a service .
    [Show full text]
  • Comparative Performance Evaluation of Popular Virtual Private Servers 343
    Comparative Performance Evaluation of Popular Virtual Private Servers 343 Comparative Performance Evaluation of Popular Virtual Private Servers Josip Balen1, Denis Vajak1, Khaled Salah2 1 Faculty of Electrical Engineering, Computer Science and Information Technology Osijek, J. J. Strossmayer University of Osijek, Croatia 2 ECE Department, Khalifa University of Science, Technology and Research, UAE [email protected], [email protected], [email protected]* Abstract trend inspired by cloud computing, can be observed, as described in [1-2] and [3]. In order to meet user Virtual Private Server (VPS) enables user access to an demands for a high performance, new technologies and operating system instance with a fine-grained control of services emerged, such as grid, utility computing, private software and hardware resources. Many various virtualization or autonomic, mobile, and pervasive factors can affect VPS performance and they primarily computing. The main advantage of these technologies include physical server hardware specifications, installed is that users can use them according to their nees as operating system, virtualization layer, and the underlying they enable ubiquitous, convenient, on-demand network infrastructure. Therefore, it is very important to network access to a shared pool of configurable properly select a VPS host that meets users, applications computing resources that can be rapidly provisioned and services resource and performance requirements. and released with a minimal management effort or This paper presents a performance evaluation of three service provider interaction, as described in [4-6] and popular VPS hosts; namely Digital Ocean, Linode and [7]. VULTR. Performance measurement was conducted under Virtual Private Servers (VPS) offer a cost-effective the same controlled conditions for all three VPS hosts way of providing a powerful and flexible multipurpose using a popular benchmark application for Unix server.
    [Show full text]
  • Tina Compatibility Guide
    Compatibility Guide Tina 2021 Atempo Paris Headquarters |23 Avenue Carnot, 91300 MASSY|Tél: +33 164 868 300 |[email protected] N°1 EUROPEAN SOFTWARE VENDOR FOR DATA PROTECTION ATEMPO.COM Details of this document Title Tina 2021 Type Compatibility Guide Date 30/04/2021 Author Renaud Bonnevie Classification Public Status Released Version 30/04/2021 Release Tina 2021 Atempo Paris Headquarters |23 Avenue Carnot, 91300 MASSY|Tél: +33 164 868 300 |[email protected] N°1 EUROPEAN SOFTWARE VENDOR FOR DATA PROTECTION ATEMPO.COM Compatibility Guide Author : Renaud Bonnevie Tina 2021 Diffusion : Public Date : 30/04/2021 Table of contents General Information .......................................................................................................................................................................................................................... 4 Important Notices ............................................................................................................................................................................................................................. 4 Time Navigator Operating System compatibility ........................................................................................................................................................................... 7 HyperVision Agent for VMware ......................................................................................................................................................................................................
    [Show full text]