How to Architect and Implement Devops on ExaCS

Size: px
Start display at page:

Download "How to Architect and Implement Devops on ExaCS"

Transcription

1 How to Architect and Implement Devops on ExaCS TIP4120 Jeffrey T. Wright Sr. Principal Product Manager Database Cloud Services, Exadata October 25, 2018

2 Agenda Architecture block diagram System credentials OCI Terraform to deploy ExaCS, scale ExaCS OCPUs OCI Python SDK for user and group administration Database creation and patching via Python Demo 2

3 OCI Architecture Block Diagram Tenancy Region e.g., Frankfurt Region e.g., Phoenix Availability Domain 1 Availability Domain 2 Availability Domain 3 Availability Domain 1 Availability Domain 2 Availability Domain 3 ExaCS ExaCS ExaCS ExaCS ExaCS ExaCS Compute Compute Compute Compute Compute Compute VCN VCN Compartment Compartment 3

4 OCI Architecture Block Diagram Tenancy Region e.g., Frankfurt Region e.g., Phoenix Availability Domain 1 Availability Domain 2 Availability Domain 3 Availability Domain 1 Availability Domain 2 Availability Domain 3 ExaCS ExaCS ExaCS ExaCS ExaCS ExaCS Compute Compute Compute Compute Compute Compute VCN Compartment 4

5 Exadata Cloud Service Example DB System Tenancy Region e.g., Frankfurt Availability Domain 2 ExaCS VCN Security Lists Client Subnet Backup Subnet Routing Rules Internet Gateway Service Gateway Compartment 5

6 System Credentials How to log in Cloud credentials Give you access to cloud automation to deploy cloud resources welcome Virtual Machine credentials Give you access to the virtual machines you create with your cloud credentials Token based ssh installed via cloud automation Database Service credentials Give you access to databases you create with your cloud credentials Passwords specified when you create the database service 6

7 Welcome 7

8 OCI Console 8

9 Setting up your Credentials Keys and OCIDs Make an RSA public/private key pair in PEM format Get the fingerprint of your RSA key Get your tenancy OCID and user OCID Set up your local environment variables to run terraform 9

10 Make the Keys # make the private key openssl genrsa -out ~/.oci/oci_api_key.pem 2048 chmod go-rwx ~/.oci/oci_api_key.pem # make the public key from the private key openssl rsa -pubout -in ~/.oci/oci_api_key.pem -out ~/.oci/oci_api_key_public.pem # copy the public key to the clipboard cat ~/.oci/oci_api_key_public.pem pbcopy # get the key's fingerprint openssl rsa -pubout -outform DER -in ~/.oci/oci_api_key.pem openssl md5 -c 10

11 Get the Tenancy OCID 11

12 Get the Tenancy OCID 12

13 Get the User OCID 13

14 Get the User OCID 14

15 Add Your Public Key 15

16 Get Your Compartment OCID 16

17 Get Your Compartment OCID 17

18 Environment Variables export OCI_GO_SDK_DEBUG=1 export TF_LOG=DEBUG export TF_VAR_tenancy_ocid=ocid1.tenancy.oc1..aaaaaaaambnyexdtahy6ug7dy2ngnfnthvvbpfgmgmg3slb73f52wkbudvwq export TF_VAR_region=eu-frankfurt-1 export TF_VAR_compartment_ocid=ocid1.compartment.oc1..aaaaaaaarimctbi7gbn45dj4zdpvuny75aa6lajw2vbvzepgioydyv2i57pq export TF_VAR_user_ocid=ocid1.user.oc1..aaaaaaaagzwawhkatr2yd74nnox4hpylpllvbau7t3wzehqk7nynpmkhbbcq export TF_VAR_private_key_path=/Users/jtwright/.oci/oci_api_key.pem export TF_VAR_fingerprint=a0:fc:3c:2c:e1:9c:4c:3b:7b:37:b7:4a:12:42:ef:56 export TF_VAR_vcn=ocid1.vcn.oc1.eu-frankfurt-1.aaaaaaaaleafo2w7glqy4sarriqlaj7utqz2o4oeyxpmryjw7kg65dxgjnfq 18

19 Get Terraform and the OCI Provider (Plugin) Formal doc Terraform download OCI Provider download

20 Non-Database System Variable Setup variable "tenancy_ocid" { variable "user_ocid" { variable "fingerprint" { variable "private_key_path" { variable "compartment_ocid" { variable "region" { provider "oci" { tenancy_ocid = "${var.tenancy_ocid" user_ocid = "${var.user_ocid" fingerprint = "${var.fingerprint" private_key_path = "${var.private_key_path" region = "${var.region" variable "CLIENT-CIDR" { default = " /24" variable "BACKUP-CIDR" { default = " /24" variable "VPC-CIDR" { default = " /16" variable "availability_domain" { default = "2" data "oci_identity_availability_domains" "ADs" { compartment_id = "${var.tenancy_ocid" data "oci_core_services" "test_services" { filter { name = "name" values = [".*Object.*Storage"] regex = true 20

21 Database System Variable Setup variable "db_disk_redundancy" { default = "HIGH" variable "hostname" { default = "exanode" variable "db_edition" { default = "ENTERPRISE_EDITION_EXTREME_PERFORMANCE" variable "db_admin_password" { default = "WelcoMe-OCI#123" variable "db_name" { default = "TESTDB" variable "character_set" { default = "AL32UTF8" variable "n_character_set" { default = "AL16UTF16" variable "db_workload" { default = "DSS" variable "pdb_name" { default = "TESTPDB" variable "db_version" { default = " " variable "db_home_display_name" { default = "TESTDBHOME" variable "db_system_shape" { default = "Exadata.Quarter1.84" variable "cpu_core_count" { default = "22" variable "data_storage_percentage" { default = "80" variable "db_system_display_name" { default = "TESTDB" variable "license_model" { default = "LICENSE_INCLUDED" variable "ssh_public_key" { default = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaqkoNWcD3QDPH4H6LvUizCwcO1Gnk8Xke2b8VToK8U9PjwGDYdH6afdkF2fq0u+kpbiW15AJoJgSvUKIORn+L+htY F9aWRJ3DcAjm9xaSpb+aFPxeh0b5WbYyL5kISD/uBDJvauubIHe9P1ccHv82Tl1EOVrwL0S3N6wFIOCza4ZGXvpyOM9eKyuxy3qnmQDGJ+SKDzT/Yql4NthI himcu4ixuqixwpuf5q8puzzqdbkmaeihdkixh08y1yfou60ypilwavbegpc1pj3hqne4zbzy4bhkushuhiovjp+qodmjagstljtvaabgjomxooekzfhnq26q LUW9G2eIcrct jtwright@jtwright-mac" 21

22 Create and ExaCS in OCI in 8 Steps 1. Get your userid and compartment from your administrator 2. Create a VCN 3. Create Gateways 4. Create Route Tables 5. Create Security Lists 6. Create DHCP Options 7. Create Subnets 8. Launch an Exadata DB System 22

23 VCN and Gateways resource "oci_core_vcn" "ExaVCN" { cidr_block = "${var.vpc-cidr" compartment_id = "${var.compartment_ocid" dns_label = "frankfurt" display_name = "frankfurt" resource "oci_core_internet_gateway" "ExaIG" { compartment_id = "${var.compartment_ocid" display_name = "ExaIG" vcn_id = "${oci_core_vcn.exavcn.id" resource "oci_core_service_gateway" "ExaSG" { compartment_id = "${var.compartment_ocid" services { service_id = "${lookup(data.oci_core_services.test_services.services[0], "id")" display_name = "ExaSG" vcn_id = "${oci_core_vcn.exavcn.id" 23

24 Route Tables resource "oci_core_route_table" "Client_RT" { compartment_id = "${var.compartment_ocid" vcn_id = "${oci_core_vcn.exavcn.id" display_name = "Client_RT" route_rules { cidr_block = " /0" network_entity_id = "${oci_core_internet_gateway.exaig.id" resource "oci_core_route_table" "Backup_RT" { compartment_id = "${var.compartment_ocid" vcn_id = "${oci_core_vcn.exavcn.id" display_name = "Backup_RT" route_rules { destination = "${lookup(data.oci_core_services.test_services.services[0], "cidr_block")" destination_type = "SERVICE_CIDR_BLOCK" network_entity_id = "${oci_core_service_gateway.exasg.id" 24

25 Node Traffic Security List resource "oci_core_security_list" "NodeTraffic" { compartment_id = "${var.compartment_ocid" display_name = "NodeTraffic" vcn_id = "${oci_core_vcn.exavcn.id" egress_security_rules = [{ destination = "${var.client-cidr" protocol = "6", { destination = "${var.backup-cidr" protocol = 6, { destination = "${var.client-cidr" protocol = 1, { destination = "${var.backup-cidr" protocol = 1 ] ingress_security_rules = [{ source = "${var.client-cidr" protocol = "6", { source = "${var.backup-cidr" protocol = 6, { source = "${var.client-cidr" protocol = 1, { source = "${var.backup-cidr" protocol = 1 ] 25

26 SSH Traffic Security List resource "oci_core_security_list" "SSHTraffic" { compartment_id = "${var.compartment_ocid" display_name = "SSHTraffic" vcn_id = "${oci_core_vcn.exavcn.id" ingress_security_rules { protocol = "6" source = " /0" stateless = false tcp_options = { "min" = 22 "max" = 22 // tcp 26

27 SQLNet Traffic Security List resource "oci_core_security_list" "SQLNet" { compartment_id = "${var.compartment_ocid" display_name = "SQLNet" vcn_id = "${oci_core_vcn.exavcn.id" ingress_security_rules = [{ protocol = "6" source = "${var.client-cidr" tcp_options = { "min" = 1521 "max" = 1521, { protocol = "6" source = "${var.backup-cidr" tcp_options = { "min" = 1521 "max" = 1521 ] 27

28 Client Traffic Security List resource "oci_core_security_list" "Client" { compartment_id = "${var.compartment_ocid" display_name = "Client" vcn_id = "${oci_core_vcn.exavcn.id" egress_security_rules = [{ destination = "${var.client-cidr" protocol = "6", { destination = "${var.backup-cidr" protocol = 6, { destination = "${var.client-cidr" protocol = 1, { destination = "${var.backup-cidr" protocol = 1, ] ingress_security_rules = [{ source = "${var.client-cidr" protocol = "6", { source = "${var.backup-cidr" protocol = 6, { source = "${var.client-cidr" protocol = 1, { source = "${var.backup-cidr" protocol = 1, ] 28

29 Backup Traffic Security List resource "oci_core_security_list" "DB_Backup" { compartment_id = "${var.compartment_ocid" display_name = "DB_Backup" vcn_id = "${oci_core_vcn.exavcn.id" egress_security_rules = [{ destination = "${var.client-cidr" protocol = "6", { destination = "${var.backup-cidr" protocol = 6 ] ingress_security_rules = [{ protocol = "6" source = "${var.client-cidr", { protocol = "6" source = "${var.backup-cidr" ] 29

30 Empty Security Lists for Future Use resource "oci_core_security_list" "Flex1" { compartment_id = "${var.compartment_ocid" display_name = "Flex1" vcn_id = "${oci_core_vcn.exavcn.id" # empty rule set resource "oci_core_security_list" "Flex2" { compartment_id = "${var.compartment_ocid" display_name = "Flex2" vcn_id = "${oci_core_vcn.exavcn.id" # empty rule set 30

31 DHCP Options resource "oci_core_dhcp_options" "ExaDHCP" { compartment_id = "${var.compartment_ocid" vcn_id = "${oci_core_vcn.exavcn.id" display_name = "ExaDHCP" options { type server_type = "DomainNameServer" = "VcnLocalPlusInternet" 31

32 Client Subnet resource "oci_core_subnet" "Client_Subnet_AD2" { availability_domain = "${lookup(data.oci_identity_availability_domains.ads.availability_domains[var.availability_ domain - 1],"name")" cidr_block = "${var.client-cidr" display_name = "Client_Subnet_AD2" compartment_id = "${var.compartment_ocid" vcn_id = "${oci_core_vcn.exavcn.id" route_table_id security_list_ids dns_label dhcp_options_id = "${oci_core_route_table.client_rt.id" = ["${oci_core_security_list.client.id", "${oci_core_security_list.sqlnet.id", "${oci_core_security_list.flex1.id", "${oci_core_security_list.nodetraffic.id", "${oci_core_security_list.sshtraffic.id" ] = "clientad2" = "${oci_core_dhcp_options.exadhcp.id" 32

33 Backup Subnet resource "oci_core_subnet" "Backup_Subnet_AD2" { availability_domain = "${lookup(data.oci_identity_availability_domains.ads.availability_domains[var.availability_ domain - 1],"name")" cidr_block = "${var.backup-cidr" display_name = "Backup_Subnet_AD2" compartment_id = "${var.compartment_ocid" vcn_id = "${oci_core_vcn.exavcn.id" route_table_id = "${oci_core_route_table.backup_rt.id" dns_label security_list_ids dhcp_options_id = "backupad1" = ["${oci_core_security_list.nodetraffic.id", "${oci_core_security_list.db_backup.id", "${oci_core_security_list.sshtraffic.id", "${oci_core_security_list.flex2.id" ] = "${oci_core_dhcp_options.exadhcp.id" 33

34 Create the Exadata DB System resource "oci_database_db_system" "DemoExaCS" { availability_domain = "${lookup(data.oci_identity_availability_domains.ads.availability_domains[var.availability_domain - 1],"name")" compartment_id = "${var.compartment_ocid" database_edition = "${var.db_edition" cpu_core_count = "${var.cpu_core_count" db_home { database { admin_password = "${var.db_admin_password" db_name = "${var.db_name" character_set = "${var.character_set" ncharacter_set = "${var.n_character_set" db_workload = "${var.db_workload" pdb_name = "${var.pdb_name" db_backup_config { auto_backup_enabled = true db_version = "${var.db_version" display_name = "${var.db_home_display_name" shape = "${var.db_system_shape" subnet_id = "${oci_core_subnet.client_subnet_ad2.id" backup_subnet_id = "${oci_core_subnet.backup_subnet_ad2.id" ssh_public_keys = ["${var.ssh_public_key"] display_name = "${var.db_system_display_name" hostname = "${var.hostname" data_storage_percentage = "${var.data_storage_percentage" license_model = "${var.license_model" 34

35 Plan and Apply! jtwright-mac:jtw jtwright$ pwd /Users/jtwright/.terraform.d/plugins/terraform-provider-oci-master/docs/examples/jtw jtwright-mac:jtw jtwright$ terraform plan... Plan: 16 to add, 0 to change, 1 to destroy Note: You didn't specify an "-out" parameter to save this plan, so Terraform can't guarantee that exactly these actions will be performed if "terraform apply" is subsequently run. jtwright-mac:jtw... jtwright$ terraform apply Plan: 16 to add, 0 to change, 1 to destroy. Do you want to perform these actions? Terraform will perform the actions described above. Only 'yes' will be accepted to approve. Enter a value: yes... Apply complete! Resources: 16 added, 0 changed, 1 destroyed. 35

36 How to Scale OCPUs Simply change the DB System variable for OCPU count, plan, and apply variable "cpu_core_count" { default = 44"... Terraform will perform the following actions: ~ oci_core_dhcp_options.exadhcp 2018/10/19 13:43:52 [DEBUG] plugin: waiting for all plugin processes to complete... options.#: "2" => "1" options.1.search_domain_names.#: "1" => "0" options.1.search_domain_names.0: "frankfurt.oraclevcn.com" => "" options.1.type: "SearchDomain" => "" ~ oci_database_db_system.demoexacs cpu_core_count: "22" => "44" Plan: 0 to add, 2 to change, 0 to destroy.... Apply complete! Resources: 0 added, 2 changed, 0 destroyed. jtwright-mac:jtw jtwright$ 36

37 Demo Exadata DB System in OCI via Terraform 37

38 Python API SDK #!/usr/bin/python import oci, pprint, os from oci.identity.models import AddUserToGroupDetails from oci.config import from_file # config = from_file() config = { "compartment" : ocid1.compartment.oc1..aaaaaaaarimctbi7gbn45dj4zdpvuny75aa6lajw2vbvzepgioydyv2i57pq, "region": eu-frankfurt-1, "tenancy" : ocid1.tenancy.oc1..aaaaaaaambnyexdtahy6ug7dy2ngnfnthvvbpfgmgmg3slb73f52wkbudvwq, "user" : ocid1.user.oc1..aaaaaaaagzwawhkatr2yd74nnox4hpylpllvbau7t3wzehqk7nynpmkhbbcq, "fingerprint": a0:fc:3c:2c:e1:9c:4c:3b:7b:37:b7:4a:12:42:ef:56, "key_file": /Users/jtwright/.oci/oci_api_key.pem, "vcn" : ocid1.vcn.oc1.eu-frankfurt-1.aaaaaaaaleafo2w7glqy4sarriqlaj7utqz2o4oeyxpmryjw7kg65dxgjnfq pprint.pprint( config ) identity = oci.identity.identityclient(config) compartment_id = config["tenancy"] 38

39 Create a Group and a User from oci.identity.models import CreateGroupDetails request = CreateGroupDetails() request.compartment_id = compartment_id request.name = "exa-pm-group" request.description = "Exadata PM group" group = identity.create_group(request) pprint.pprint( group.data ) request = CreateUserDetails() request.compartment_id = compartment_id request.name = "exadata-pm" request.description = "Created with the Python SDK" user = identity.create_user(request) pprint.pprint(user.data) request = AddUserToGroupDetails() request.group_id = group.data.id request.user_id = user.data.id response = identity.add_user_to_group(request) pprint.pprint(response.data) 39

40 Create a Database Exadata Cloud at Customer, Oracle Cloud Infrastructure Classic x_id_tenant_name = 'a516946' user = 'jeff.wright@oracle.com' password = 'Welc0me!' baseurl=' servicesurl='paas/service/dbcs/api/v1.1/instances/' url = baseurl + servicesurl + x_id_tenant_name headers = {'X-ID-TENANT-NAME':x_id_tenant_name, 'content-type': 'application/json' payload = { "servicename" : "JTWTEST", "description" : "Test database for JTW", "edition" : "EE_EP", "exadatasystemname": "oow2017exa", "level" : "PAAS_EXADATA", "subscriptiontype": "MONTHLY", "version": " ", "vmpublickeytext": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaqkoNWcD3QDPH4H6LvUizCwcO1Gnk8Xke2b8VToK8U9PjwGDYdH6afdkF2fq0u+kpbiW15AJoJgSvUKIORn+L+htYF9aWRJ3DcAjm9xaSpb+aFPxeh0 b5wbyyl5kisd/ubdjvauubihe9p1cchv82tl1eovrwl0s3n6wfiocza4zgxvpyom9ekyuxy3qnmqdgj+skdzt/yql4nthihimcu4ixuqixwpuf5q8puzzqdbkmaeihdkixh08y1yfou60ypilw avbegpc1pj3hqne4zbzy4bhkushuhiovjp+qodmjagstljtvaabgjomxooekzfhnq26qluw9g2eicrct jtwright@jtwright-mac", "parameters": [ { "adminpassword": "Welc0me#1", "backupdestination": "none", "israc": "yes", "pdbname": "JTWTESTPDB", "sid": "JTWTEST", "type": "db" ] response = requests.post( url, headers = headers, auth = (user, password), data=json.dumps( payload ) ) 40

41 Patch a Database Exadata Cloud at Customer, Oracle Cloud Infrastructure Classic servicesurl="/paas/api/v.1/instancemgmt/" url = baseurl + servicesurl + x_id_tenant_name + "/services/dbaas/instances/" + "JTWTEST" + "/patches/available" headers = {'X-ID-TENANT-NAME':x_id_tenant_name response = requests.get( url, headers = headers, auth = (user, password) ) newestpatchid = 0 for data in response.json(): if data["servicetype"] == "DBaaS": print data["releasedate"] + " " + data["patchnumber"] + " " + data["patchid"] if data["patchid"] > newestpatchid: newestpatchid = data["patchid"] servicesurl="/paas/api/v1.1/instancemgmt/" url = baseurl + servicesurl + x_id_tenant_name + "/services/dbaas/instances/" + "JTWTEST" + "/patches/checks/" + newestpatchid headers = {'X-ID-TENANT-NAME':x_id_tenant_name, 'content-type': 'application/json' payload = { "additionalnote" : "Patch precheck using REST API" response = requests.put( url, headers = headers, auth = (user, password), data=json.dumps( payload ) ) jobid=response.json()["details"]["jobid"] servicesurl="/paas/api/v1.1/instancemgmt/" url = baseurl + servicesurl + x_id_tenant_name + "/services/dbaas/instances/" + "JTWTEST" + "/patches/checks/job/" + jobid headers = {'X-ID-TENANT-NAME':x_id_tenant_name while True: response = requests.get( url, headers = headers, auth = (user, password) ) status=response.json()["status"] print status if status!= "IN_PROGRESS": break time.sleep( 10 ) 41

42 Patch a Database Exadata Cloud at Customer, Oracle Cloud Infrastructure Classic servicesurl="/paas/api/v1.1/instancemgmt/" url = baseurl + servicesurl + x_id_tenant_name + "/services/dbaas/instances/" + "JTWTEST" + "/patches/checks/" + newestpatchid headers = {'X-ID-TENANT-NAME':x_id_tenant_name, 'content-type': 'application/json' payload = { "additionalnote" : "Patch precheck using REST API" response = requests.put( url, headers = headers, auth = (user, password), data=json.dumps( payload ) ) jobid=response.json()["details"]["jobid"] servicesurl="/paas/api/v1.1/instancemgmt/" url = baseurl + servicesurl + x_id_tenant_name + "/services/dbaas/instances/" + "JTWTEST" + "/patches/checks/job/" + jobid headers = {'X-ID-TENANT-NAME':x_id_tenant_name while True: response = requests.get( url, headers = headers, auth = (user, password) ) status=response.json()["status"] print status if status!= "IN_PROGRESS": break time.sleep( 10 ) 42

43 43

44

Lab 5: Working with REST APIs

Lab 5: Working with REST APIs Lab 5: Working with REST APIs Oracle's Autonomous Transaction Processing cloud service provides all of the performance of the market-leading Oracle Database in an environment that is tuned and optimized

More information

oci Documentation Release Oracle

oci Documentation Release Oracle oci Documentation Release 1.3.7 Oracle Sep 11, 2017 Contents 1 Installation 3 1.1 Prerequisites............................................... 3 1.2 Downloading and Installing the SDK..................................

More information

Lab 5: Working with REST APIs

Lab 5: Working with REST APIs Lab 5: Working with REST APIs Oracle Database Cloud Service Hands On Lab 1) In this Lab we will install the REST Client Postman 2) Use Rest API calls to a) Create a database service b) List account instances

More information

Oracle Cloud 1z0-932

Oracle Cloud 1z0-932 Oracle Cloud 1z0-932 Oracle Cloud Infrastructure 2018 Architect Associate Thank You for Downloading 1z0-932 Updated Exam Questions oracle/1z0-932-pdf-exam-dumps Question #:29 Which two parameters are required

More information

Installing and Configuring Oracle VM on Oracle Cloud Infrastructure ORACLE WHITE PAPER NOVEMBER 2017

Installing and Configuring Oracle VM on Oracle Cloud Infrastructure ORACLE WHITE PAPER NOVEMBER 2017 Installing and Configuring Oracle VM on Oracle Cloud Infrastructure ORACLE WHITE PAPER NOVEMBER 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Installing and Configuring Oracle VM on Oracle Cloud Infrastructure O R A C L E W H I T E P A P E R D E C E M B E R

Installing and Configuring Oracle VM on Oracle Cloud Infrastructure O R A C L E W H I T E P A P E R D E C E M B E R Installing and Configuring Oracle VM on Oracle Cloud Infrastructure 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 7 Disclaimer The following is intended to outline our general product direction.

More information

Oracle 1Z Oracle Cloud Solutions Infrastructure Architect Associate.

Oracle 1Z Oracle Cloud Solutions Infrastructure Architect Associate. Oracle 1Z0-932 Oracle Cloud Solutions Infrastructure Architect Associate https://killexams.com/pass4sure/exam-detail/1z0-932 QUESTION: 76 Which two resources are available by default when your Oracle Cloud

More information

Identity and Access Management Level 200

Identity and Access Management Level 200 Identity and Access Management Level 200 Flavio Pereira November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes

More information

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Question: 1 Which three methods can you use to manage Oracle Cloud Infrastructure services? (Choose three.)

Question: 1 Which three methods can you use to manage Oracle Cloud Infrastructure services? (Choose three.) Volume: 91 Questions Question: 1 Which three methods can you use to manage Oracle Cloud Infrastructure services? (Choose three.) A. Oracle Cloud Infrastructure Desktop Client B. Oracle Cloud Infrastructure

More information

MCR Connections to Oracle Cloud Infrastructure using FastConnect

MCR Connections to Oracle Cloud Infrastructure using FastConnect MCR Oracle via FastConnect (OCI) 1 MCR Oracle via FastConnect (OCI) MCR Connections to Oracle Cloud Infrastructure using FastConnect To connect to FastConnect using MCR, you will need an Oracle Cloud ID

More information

Next Generation Database Clouds

Next Generation Database Clouds Sebastian Solbach Consulting Member of Technical Staff Bare Metal Cloud DBaaS Service Oracle Deutschland b.v. & C.o KG @s2solbach Sebastian.solbach@oracle.com Next Generation Database Clouds Real Application

More information

Identity and Access Management Level 100

Identity and Access Management Level 100 Identity and Access Management Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Oracle Enterprise Manager for Exadata Cloud

Oracle Enterprise Manager for Exadata Cloud Oracle Enterprise Manager for Exadata Cloud Implementation, Management, and Monitoring Best Practices O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 7 Disclaimer The following is intended to outline

More information

Oracle Cloud Infrastructure Virtual Cloud Network Overview and Deployment Guide ORACLE WHITEPAPER JANUARY 2018 VERSION 1.0

Oracle Cloud Infrastructure Virtual Cloud Network Overview and Deployment Guide ORACLE WHITEPAPER JANUARY 2018 VERSION 1.0 Oracle Cloud Infrastructure Virtual Cloud Network Overview and Deployment Guide ORACLE WHITEPAPER JANUARY 2018 VERSION 1.0 Table of Contents Purpose of this Whitepaper 1 Scope & Assumptions 1 Virtual Cloud

More information

File Storage Level 100

File Storage Level 100 File Storage Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be

More information

Getting Started Guide 6/5/2018

Getting Started Guide 6/5/2018 Getting Started Guide 6/5/2018 Copyright 2016, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions

More information

Infrastructure Consolidation with OCI

Infrastructure Consolidation with OCI Infrastructure Consolidation with OCI Who we are Experts At Your Service Over 60 specialists in IT infrastructure Certified, experienced, passionate Based In Switzerland 100% self-financed Swiss company

More information

Deploying TimesTen Scaleout On Oracle Cloud Infrastructure

Deploying TimesTen Scaleout On Oracle Cloud Infrastructure Deploying TimesTen Scaleout On Oracle Cloud Infrastructure Quickstart White Paper O R A C L E W H I T E P A P E R V 2 O C T O B E R 2 0 1 8 Disclaimer The following is intended to outline our general product

More information

Getting Started Guide 6/1/2017

Getting Started Guide 6/1/2017 Getting Started Guide 6/1/2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions

More information

Deploy VPN IPSec Tunnels on Oracle Cloud Infrastructure. White Paper September 2017 Version 1.0

Deploy VPN IPSec Tunnels on Oracle Cloud Infrastructure. White Paper September 2017 Version 1.0 Deploy VPN IPSec Tunnels on Oracle Cloud Infrastructure White Paper September 2017 Version 1.0 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Deploying TimesTen Scaleout On Oracle Cloud Infrastructure

Deploying TimesTen Scaleout On Oracle Cloud Infrastructure Deploying TimesTen Scaleout On Oracle Cloud Infrastructure Quickstart White Paper O R A C L E W H I T E P A P E R V 3 F E B R U A R Y 2 0 1 9 Disclaimer The following is intended to outline our general

More information

Amazon Virtual Private Cloud. Getting Started Guide

Amazon Virtual Private Cloud. Getting Started Guide Amazon Virtual Private Cloud Getting Started Guide Amazon Virtual Private Cloud: Getting Started Guide Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks

More information

Oracle Cloud Infrastructure Fundamentals

Oracle Cloud Infrastructure Fundamentals Oracle Cloud Infrastructure Fundamentals Student Guide D100804GC10 Edition 1.0 September 2017 Learn more from Oracle University at education.oracle.com Authors Aparna Nagaraj joseph Garcia Publisher Srividya

More information

Deploying VPN IPSec Tunnels with Cisco ASA/ASAv VTI on Oracle Cloud Infrastructure

Deploying VPN IPSec Tunnels with Cisco ASA/ASAv VTI on Oracle Cloud Infrastructure Deploying VPN IPSec Tunnels with Cisco ASA/ASAv VTI on Oracle Cloud Infrastructure O R A C L E S O L U T I O N G U I D E M A R C H 2 0 1 8 V E R S I O N 1. 1 Table of Contents Overview 4 Scope and Assumptions

More information

CISE Research Infrastructure: Mid-Scale Infrastructure - NSFCloud (CRI: NSFCloud)

CISE Research Infrastructure: Mid-Scale Infrastructure - NSFCloud (CRI: NSFCloud) Chameleon Cloud Tutorial National Science Foundation Program Solicitation # NSF 13-602 CISE Research Infrastructure: Mid-Scale Infrastructure - NSFCloud (CRI: NSFCloud) Networking - Security Objectives

More information

Object Storage Level 100

Object Storage Level 100 Object Storage Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be

More information

MyIGW Main. Oregon. MyVPC /16. MySecurityGroup / us-west-2b. Type Port Source SSH /0 HTTP

MyIGW Main. Oregon. MyVPC /16. MySecurityGroup / us-west-2b. Type Port Source SSH /0 HTTP MyIGW Main Oregon MyVPC 10.0.0.0/16 10.0.1.0/24 10.0.1.0 -- us-west-2a MySecurityGroup 10.0.2.0/24 10.0.2.0 -- us-west-2b MyWebServer1 MyDBServer DMZ MyInternetRouteTable 0.0.0.0/0 IGW Type Port Source

More information

How to Deploy the Barracuda NG Firewall in an Amazon Virtual Private Cloud

How to Deploy the Barracuda NG Firewall in an Amazon Virtual Private Cloud How to Deploy the Barracuda NG Firewall in an Amazon Virtual Private Cloud The Barracuda NG Firewall can run as a virtual appliance in the Amazon cloud as a gateway device for Amazon EC2 instances in an

More information

Virtual Cloud Network Level 200. Jamal Arif November 2018

Virtual Cloud Network Level 200. Jamal Arif November 2018 Virtual Cloud Network Level 200 Jamal Arif November 2018 Copyright Copyright 2018, Oracle 2018, and/or Oracle its and/or affiliates. its affiliates. All rights All reserved. rights reserved. 1 Safe Harbor

More information

Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017

Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017 Establishing secure connectivity between Oracle Ravello and Oracle Cloud Infrastructure Database Cloud ORACLE WHITE PAPER DECEMBER 2017 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

More information

Please clarify by S.Syed. Oracle Cloud Infrastructure Associate Arch. Part II 1Z0-932 SL Syed Updated 2 days ago File Storage Service Deepak,

Please clarify by S.Syed. Oracle Cloud Infrastructure Associate Arch. Part II 1Z0-932 SL Syed Updated 2 days ago File Storage Service Deepak, Oracle Cloud Infrastructure Associate Arch. Part II 1Z0-932 Posted 14 hours ago Compartment Deepak, As discussed in the video, you mentioned that, "Once you created compartment and you are not allowed

More information

Deploying Custom Operating System Images on Oracle Cloud Infrastructure O R A C L E W H I T E P A P E R M A Y

Deploying Custom Operating System Images on Oracle Cloud Infrastructure O R A C L E W H I T E P A P E R M A Y Deploying Custom Operating System Images on Oracle Cloud Infrastructure O R A C L E W H I T E P A P E R M A Y 2 0 1 8 Table of Contents Purpose of This White Paper 3 Scope and Assumptions 3 Access Requirements

More information

E June Oracle Linux Storage Appliance Deployment and User's Guide

E June Oracle Linux Storage Appliance Deployment and User's Guide E90100-03 June 2018 Oracle Linux Storage Appliance Deployment and User's Guide Oracle Legal Notices Copyright 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Deploy the Firepower Management Center Virtual On the AWS Cloud

Deploy the Firepower Management Center Virtual On the AWS Cloud Deploy the Firepower Management Center Virtual On the AWS Cloud Amazon Virtual Private Cloud (Amazon VPC) enables you to launch Amazon Web Services (AWS) resources into a virtual network that you define.

More information

An Insider s Guide to Oracle Autonomous Transaction Processing

An Insider s Guide to Oracle Autonomous Transaction Processing An Insider s Guide to Oracle Autonomous Transaction Processing Maria Colgan Master Product Manager Troy Anthony Senior Director, Product Management #thinkautonomous Autonomous Database Traditionally each

More information

Tutorial on How to Publish an OCI Image Listing

Tutorial on How to Publish an OCI Image Listing Tutorial on How to Publish an OCI Image Listing Publish an OCI Image Listing F13637-01 JANUARY 2019 DISCLAIMER The following is intended to outline our general product direction. It is intended for information

More information

Using the vrealize Orchestrator OpenStack Plug-In 2.0. Modified on 19 SEP 2017 vrealize Orchestrator 7.0

Using the vrealize Orchestrator OpenStack Plug-In 2.0. Modified on 19 SEP 2017 vrealize Orchestrator 7.0 Using the vrealize Orchestrator OpenStack Plug-In 2.0 Modified on 19 SEP 2017 vrealize Orchestrator 7.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Oracle Database Exadata Cloud Service: Technical Deep Dive

Oracle Database Exadata Cloud Service: Technical Deep Dive Oracle Database Exadata Cloud Service: Technical Deep Dive [TRN4117] Nitin Vengurlekar, CTO-Architect-Service Delivery-Cloud Evangelist, Viscosity North America Niloy Banerjee, Senior Director of Development

More information

Building a Modular and Scalable Virtual Network Architecture with Amazon VPC

Building a Modular and Scalable Virtual Network Architecture with Amazon VPC Building a Modular and Scalable Virtual Network Architecture with Amazon VPC Quick Start Reference Deployment Santiago Cardenas Solutions Architect, AWS Quick Start Reference Team August 2016 (revisions)

More information

Oracle Platinum Services Platinum Configuration Worksheet Online Help E

Oracle Platinum Services Platinum Configuration Worksheet Online Help E Oracle Platinum Services Platinum Configuration Worksheet Online Help E57997-01 Document Objectives: The Platinum Configuration Worksheet (PCW) Online Tool is a key part of planning and executing an efficient

More information

Oracle Cloud Using Oracle GoldenGate Cloud Service

Oracle Cloud Using Oracle GoldenGate Cloud Service Oracle Cloud Using Oracle GoldenGate Cloud Service E65310-21 March 2018 Oracle Cloud Using Oracle GoldenGate Cloud Service, E65310-21 Copyright 2015, 2018, Oracle and/or its affiliates. All rights reserved.

More information

Oracle RESTful Services A Primer for Database Administrators

Oracle RESTful Services A Primer for Database Administrators Oracle RESTful Services A Primer for Database Administrators Sean Stacey Director Database Product Management Oracle Server Technologies Copyright 2017, Oracle and/or its affiliates. All rights reserved.

More information

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

VMware Identity Manager Connector Installation and Configuration (Legacy Mode)

VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager Connector Installation and Configuration (Legacy Mode) VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until

More information

Security on AWS(overview) Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance

Security on AWS(overview) Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance Security on AWS(overview) Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance Agenda: Overview AWS Regions Availability Zones Shared Responsibility Security Features Best Practices

More information

Bitnami Piwik for Huawei Enterprise Cloud

Bitnami Piwik for Huawei Enterprise Cloud Bitnami Piwik for Huawei Enterprise Cloud Description Piwik is a real time web analytics software program. It provides detailed reports on website visitors: the search engines and keywords they used, the

More information

Migrating Oracle Databases from Amazon Web Services to Oracle Cloud Infrastructure Database O R A C L E W H I T E P A P E R M A Y

Migrating Oracle Databases from Amazon Web Services to Oracle Cloud Infrastructure Database O R A C L E W H I T E P A P E R M A Y Migrating Oracle Databases from Amazon Web Services to Oracle Cloud Infrastructure Database O R A C L E W H I T E P A P E R M A Y 2 0 1 8 Table of Contents Purpose of This White Paper 4 Scope and Assumptions

More information

Bitnami Re:dash for Huawei Enterprise Cloud

Bitnami Re:dash for Huawei Enterprise Cloud Bitnami Re:dash for Huawei Enterprise Cloud Description Re:dash is an open source data visualization and collaboration tool. It was designed to allow fast and easy access to billions of records in all

More information

Oracle Database Exadata Cloud Service: Technical Deep Dive

Oracle Database Exadata Cloud Service: Technical Deep Dive Oracle Database Exadata Cloud Service: Technical Deep Dive CON6666 Binoy Sukumaran Vice President Database Cloud Services Karl S Jonsson Senior Enterprise Architect Reinhart Foodservice, LLC Brian Spendolini

More information

Sichere Netzwerke in der Cloud

Sichere Netzwerke in der Cloud Sichere Netzwerke in der Cloud Best Practices Justin Bradley, Solutions Architect 30. Juni 2016 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. What to expect from the session What

More information

Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014

Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014 Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014 Karthik Krishnan Page 1 of 20 Table of Contents Table of Contents... 2 Abstract... 3 What

More information

VMware Integrated OpenStack User Guide. VMware Integrated OpenStack 4.1

VMware Integrated OpenStack User Guide. VMware Integrated OpenStack 4.1 VMware Integrated OpenStack User Guide VMware Integrated OpenStack 4.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Kai Yu Oracle Solutions Engineering Dell EMC Kai Yu Technical Staff, Dell EMC Database Engineering 25+ years working

More information

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

SAS Event Stream Processing 4.3: Security

SAS Event Stream Processing 4.3: Security SAS Event Stream Processing 4.3: Security Enabling Encryption on Sockets Overview to Enabling Encryption You can enable encryption on TCP/IP connections within an event stream processing engine. Specifically,

More information

Bastion Hosts. Protected Access for Virtual Cloud Networks O R A C L E W H I T E P A P E R F E B R U A R Y

Bastion Hosts. Protected Access for Virtual Cloud Networks O R A C L E W H I T E P A P E R F E B R U A R Y Bastion Hosts Protected Access for Virtual Cloud Networks O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Accessing clusters 2. Accessing Clusters. Date of Publish:

Accessing clusters 2. Accessing Clusters. Date of Publish: 2 Accessing Clusters Date of Publish: 2018-09-14 http://docs.hortonworks.com Contents Cloudbreak user accounts... 3 Finding cluster information in the web UI... 3 Cluster summary... 4 Cluster information...

More information

Deploying Transit VPC for Amazon Web Services

Deploying Transit VPC for Amazon Web Services This section contains the following topics: How to Deploy Transit VPC for DMVPN, page 1 How to Deploy Transit VPC for DMVPN Information About Deploying Transit VPC This is a summary about the deploying

More information

Cloudera s Enterprise Data Hub on the AWS Cloud

Cloudera s Enterprise Data Hub on the AWS Cloud Cloudera s Enterprise Data Hub on the AWS Cloud Quick Start Reference Deployment Shivansh Singh and Tony Vattathil Amazon Web Services October 2014 Last update: April 2017 (revisions) This guide is also

More information

Virtual Cloud Network Best Practices Level 201. Jamal Arif November 2018

Virtual Cloud Network Best Practices Level 201. Jamal Arif November 2018 Virtual Cloud Network Best Practices Level 201 Jamal Arif November 2018 Copyright Copyright 2018, Oracle 2018, and/or Oracle its and/or affiliates. its affiliates. All rights All reserved. rights reserved.

More information

Swift Web Applications on the AWS Cloud

Swift Web Applications on the AWS Cloud Swift Web Applications on the AWS Cloud Quick Start Reference Deployment November 2016 Asif Khan, Tom Horton, and Tony Vattathil Solutions Architects, Amazon Web Services Contents Overview... 2 Architecture...

More information

Netflix OSS Spinnaker on the AWS Cloud

Netflix OSS Spinnaker on the AWS Cloud Netflix OSS Spinnaker on the AWS Cloud Quick Start Reference Deployment August 2016 Huy Huynh and Tony Vattathil Solutions Architects, Amazon Web Services Contents Overview... 2 Architecture... 3 Prerequisites...

More information

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R

Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R Establishing secure connections between Oracle Ravello and Oracle Database Cloud O R A C L E W H I T E P A P E R N O V E M E B E R 2 0 1 7 Table of Contents APPLICATION ARCHITECTURE OVERVIEW 2 CONNECTING

More information

Amazon Web Services Hands- On VPC

Amazon Web Services Hands- On VPC Amazon Web Services Hands- On VPC Copyright 2011-2015, Amazon Web Services, All Rights Reserved Page 1 Table of Contents Overview... 3 Create a VPC... 3 VPC Object Walkthrough... 6 Your VPCs... 6 Subnets...

More information

AWS Remote Access VPC Bundle

AWS Remote Access VPC Bundle AWS Remote Access VPC Bundle Deployment Guide Last updated: April 11, 2017 Aviatrix Systems, Inc. 411 High Street Palo Alto CA 94301 USA http://www.aviatrix.com Tel: +1 844.262.3100 Page 1 of 12 TABLE

More information

KubeNow Documentation

KubeNow Documentation KubeNow Documentation Release 0.3.0 mcapuccini Dec 13, 2017 Getting Started 1 Prerequisites 3 1.1 Install Docker.............................................. 3 1.2 Get KubeNow..............................................

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : AWS-SysOps Title : AWS Certified SysOps Administrator Associate Version : Demo 1 / 4 1.A user has created photo editing software and hosted it on EC2. The software accepts requests

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

How to Install Forcepoint NGFW in Amazon AWS TECHNICAL DOCUMENT

How to Install Forcepoint NGFW in Amazon AWS TECHNICAL DOCUMENT How to Install Forcepoint NGFW in Amazon AWS TECHNICAL DOCUMENT Table of Contents TABLE OF CONTENTS... 1 TEST NETWORK DIAGRAM... 2 PREPARING YOUR VPC... 3 IP addressing... 3 Virtual Private Cloud (VPC)...

More information

Understanding Perimeter Security

Understanding Perimeter Security Understanding Perimeter Security In Amazon Web Services Aaron C. Newman Founder, CloudCheckr Aaron.Newman@CloudCheckr.com Changing Your Perspective How do I securing my business applications in AWS? Moving

More information

Bitnami ez Publish for Huawei Enterprise Cloud

Bitnami ez Publish for Huawei Enterprise Cloud Bitnami ez Publish for Huawei Enterprise Cloud Description ez Publish is an Enterprise Content Management platform with an easy to use Web Content Management System. It includes role-based multi-user access,

More information

Simple Security for Startups. Mark Bate, AWS Solutions Architect

Simple Security for Startups. Mark Bate, AWS Solutions Architect BERLIN Simple Security for Startups Mark Bate, AWS Solutions Architect Agenda Our Security Compliance Your Security Account Management (the keys to the kingdom) Service Isolation Visibility and Auditing

More information

Introduction to Amazon Cloud & EC2 Overview

Introduction to Amazon Cloud & EC2 Overview Introduction to Amazon Cloud & EC2 Overview 2015 Amazon Web Services, Inc. and its affiliates. All rights served. May not be copied, modified, or distributed in whole or in part without the express consent

More information

Deploy ERSPAN with the ExtraHop Discover Appliance and Brocade 5600 vrouter in AWS

Deploy ERSPAN with the ExtraHop Discover Appliance and Brocade 5600 vrouter in AWS Deploy ERSPAN with the ExtraHop Discover Appliance and Brocade 5600 vrouter in AWS Published: 2018-07-06 This guide explains how to install and con#gure an example environment within Amazon Web Services

More information

SAS Event Stream Processing 4.2: Security

SAS Event Stream Processing 4.2: Security SAS Event Stream Processing 4.2: Security Encryption on Sockets Overview to Enabling Encryption You can enable encryption on TCP/IP connections within an event stream processing engine. Specifically, you

More information

Infoblox Installation Guide. vnios for Amazon Web Services

Infoblox Installation Guide. vnios for Amazon Web Services Infoblox Installation Guide vnios for Amazon Web Services Copyright Statements 2015, Infoblox Inc. All rights reserved. The contents of this document may not be copied or duplicated in any form, in whole

More information

AWS plug-in. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved.

AWS plug-in. Qlik Sense 3.0 Copyright QlikTech International AB. All rights reserved. AWS plug-in Qlik Sense 3.0 Copyright 1993-2016 QlikTech International AB. All rights reserved. Copyright 1993-2016 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

Citrix CloudPlatform (powered by Apache CloudStack) Version 4.5 Getting Started Guide

Citrix CloudPlatform (powered by Apache CloudStack) Version 4.5 Getting Started Guide Citrix CloudPlatform (powered by Apache CloudStack) Version 4.5 Getting Started Guide Revised January 30, 2015 06:00 pm IST Citrix CloudPlatform Citrix CloudPlatform (powered by Apache CloudStack) Version

More information

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti S3IT: Service and Support for Science IT Cloud middleware Part2: Let s pick one cloud IaaS middleware: OpenStack Sergio Maffioletti S3IT: Service and Support for Science IT, University of Zurich http://www.s3it.uzh.ch/

More information

Amazon AppStream 2.0: Getting Started Guide

Amazon AppStream 2.0: Getting Started Guide 2018 Amazon AppStream 2.0: Getting Started Guide Build an Amazon AppStream 2.0 environment to stream desktop applications to your users April 2018 https://aws.amazon.com/appstream2/ 1 Welcome This guide

More information

Oracle made it easy: Cloud DB Vergleich

Oracle made it easy: Cloud DB Vergleich Oracle made it easy: Cloud DB Vergleich MATTHIAS FUCHS, ESENTRI BORYS NESELOVSKYI, OPITZ CONSULTING DOAG 2018 KONFERENZ, NÜRNBERG Cloud Angebote für Oracle Datenbank ORACLE CLOUD Oracle Datenbank Microsoft

More information

EXPRESSCLUSTER X 3.3. HA Cluster Configuration Guide for Amazon Web Services (Windows) 10/03/2016 2nd Edition

EXPRESSCLUSTER X 3.3. HA Cluster Configuration Guide for Amazon Web Services (Windows) 10/03/2016 2nd Edition EXPRESSCLUSTER X 3.3 HA Cluster Configuration Guide for Amazon Web Services (Windows) 10/03/2016 2nd Edition Revision History Edition Revised Date Description 1 01/29/2016 New manual 2 10/03/2016 Corresponds

More information

Connectivity FastConnect Level 200. Jamal Arif November 2018

Connectivity FastConnect Level 200. Jamal Arif November 2018 Connectivity FastConnect Level 200 Jamal Arif November 2018 Copyright Copyright 2018, Oracle 2018, and/or Oracle its and/or affiliates. its affiliates. All rights reserved. All rights reserved. 1 Safe

More information

VMware Integrated OpenStack User Guide

VMware Integrated OpenStack User Guide VMware Integrated OpenStack User Guide VMware Integrated OpenStack 3.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

EdgeConnect for Amazon Web Services (AWS)

EdgeConnect for Amazon Web Services (AWS) Silver Peak Systems EdgeConnect for Amazon Web Services (AWS) Dinesh Fernando 2-22-2018 Contents EdgeConnect for Amazon Web Services (AWS) Overview... 1 Deploying EC-V Router Mode... 2 Topology... 2 Assumptions

More information

Table of Contents. Copyright Pivotal Software Inc, of

Table of Contents. Copyright Pivotal Software Inc, of Table of Contents Table of Contents Push Notification Service for Pivotal Cloud Foundry Installation DevOps Configuring Heartbeat Monitor for ios Configuring Heartbeat Monitor for Android Using the Dashboard

More information

Autonomous Database Level 100

Autonomous Database Level 100 Autonomous Database Level 100 Sanjay Narvekar December 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

SAM 8.0 SP2 Deployment at AWS. Version 1.0

SAM 8.0 SP2 Deployment at AWS. Version 1.0 SAM 8.0 SP2 Deployment at AWS Version 1.0 Publication Date July 2011 Copyright 2011 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and

More information

AWS Administration. Suggested Pre-requisites Basic IT Knowledge

AWS Administration. Suggested Pre-requisites Basic IT Knowledge Course Description Amazon Web Services Administration (AWS Administration) course starts your Cloud Journey. If you are planning to learn Cloud Computing and Amazon Web Services in particular, then this

More information

BackupAgent Service Provider Deployment Guide

BackupAgent Service Provider Deployment Guide BackupAgent Service Provider Deployment Guide APS2.0 for Parallels Automation Revision 1.2 (April 22, 2014) Template version 1.0 Contents Preface... 6 Documentation Conventions... 6 Typographical Conventions...

More information

How-to Guide: Tenable.io for Microsoft Azure. Last Updated: November 16, 2018

How-to Guide: Tenable.io for Microsoft Azure. Last Updated: November 16, 2018 How-to Guide: Tenable.io for Microsoft Azure Last Updated: November 16, 2018 Table of Contents How-to Guide: Tenable.io for Microsoft Azure 1 Introduction 3 Auditing the Microsoft Azure Cloud Environment

More information

1z0-160 oracle. Number: 1z0-160 Passing Score: 800 Time Limit: 120 min.

1z0-160 oracle. Number: 1z0-160 Passing Score: 800 Time Limit: 120 min. 1z0-160 oracle Number: 1z0-160 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 You want to perform database recovery with the most recent backup. Which command would you execute? A. dbaascli rec

More information

Bitnami OSQA for Huawei Enterprise Cloud

Bitnami OSQA for Huawei Enterprise Cloud Bitnami OSQA for Huawei Enterprise Cloud Description OSQA is a question and answer system that helps manage and grow online communities similar to Stack Overflow. First steps with the Bitnami OSQA Stack

More information

Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud

Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud Bitnami Tiny Tiny RSS for Huawei Enterprise Cloud Description Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location,

More information

Deploying Microsoft SQL Server Always On Availability Groups O R A C L E W H I T E P A P E R M A R C H

Deploying Microsoft SQL Server Always On Availability Groups O R A C L E W H I T E P A P E R M A R C H Deploying Microsoft SQL Server Always On Availability Groups O R A C L E W H I T E P A P E R M A R C H 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

Cloud Security Best Practices

Cloud Security Best Practices Cloud Security Best Practices Cohesive Networks - your applications secured Our family of security and connectivity solutions, VNS3, protects cloud-based applications from exploitation by hackers, criminal

More information

Getting Started with AWS Security

Getting Started with AWS Security Getting Started with AWS Security Tomas Clemente Sanchez Senior Consultant Security, Risk and Compliance September 21st 2017 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Move

More information

Bitnami Dolibarr for Huawei Enterprise Cloud

Bitnami Dolibarr for Huawei Enterprise Cloud Bitnami Dolibarr for Huawei Enterprise Cloud Description Dolibarr is an open source, free software package for small and medium companies, foundations or freelancers. It includes different features for

More information