SlideShare ist ein Scribd-Unternehmen logo
1 von 83
The perfect server: openQRM, UEC and EC2 on Ubuntu 10.10
This documentation is brought to you by openQRM Enterprise
http://www.openqrm-enterprise.com
Document Version : 27.10.2010
openQRM Enterprise GmbH
Berrenrather Straße 188c
50937 Köln / Germany
Telefon : +49 (0) 221 995589-10
Fax : +49 (0) 221 995589-20
Mail : info@openqrm-enterprise.com
Table of Contents
The perfect server: openQRM, UEC and EC2 on Ubuntu 10.10 ..............................................................1
Hybrid Cloud Computing with openQRM.................................................................................................2
Requirements.........................................................................................................................................2
Install the system with Ubuntu 10.10 (64bit) as a "Node Controller" ..................................................2
Install openQRM from the source repository........................................................................................3
Install the Ubuntu Enterprise Cloud Controller in a KVM VM............................................................8
Configure the Ubuntu Enterprise Cloud .............................................................................................43
Import an AMI from the Ubuntu Enterprise Cloud (or Amazon EC2) ..............................................50
Run the imported AMI on a local KVM VM .....................................................................................64
Export an openQRM Image to Amazon EC2 .....................................................................................76
Thanks.................................................................................................................................................83
Urls......................................................................................................................................................83
Hybrid Cloud Computing with openQRM
The goal of this HowTo is to have a single system setup with the Ubuntu Enterprise Cloud
(UEC) and the openQRM Cloud. This system will allow to migrate services from the UEC and
Amazon EC2 to the openQRM Cloud and from openQRM Cloud to UEC and Amazon EC2.
Requirements
- 1 64bit system having the VT (Virtualization Technology) CPU extension
- 2 GB RAM (or more)
- 200 GB disk space (or more)
Install the system with Ubuntu 10.10 (64bit) as a "Node Controller"
• Boot the system from the Ubuntu CD
• Select "Install Ubuntu Enterprise Cloud"
• Set a static ip-address
◦ in this Howto it will be 192.168.88.100, hostname will be "perf"
• Continue with an empty (blank) Cloud Controller address
• During the Cloud package selection just select "Node Controller"
◦ deselect everything else
• In the partitioning screen
◦ Create a partiton (primary) for /
▪ in this Howto it will be /dev/sda1
◦ Create a partition (primary) for swap
▪ in this Howto it will be /dev/sda2
◦ Create a partition (primary) to be used by lvm
▪ this should be huge, in this Howto it will be /dev/sda3
After the installation finished reboot into the fresh Ubuntu 10.10 system.
Now create a iso image from the Ubuntu 10.10 CD. Insert the CD, open a terminal and run :
sudo bash
mkdir /isos
dd if=/dev/cdrom of=/isos/ubuntu-10.10.iso
Install openQRM from the source repository
Installing openQRM from the projects subversion repository will include the latest features.
sudo bash
apt-get install subversion nfs-kernel-server
cd
mkdir openqrm
cd openqrm
svn co https://openqrm.svn.sourceforge.net/svnroot/openqrm openqrm
cd trunk/openqrm/src
make && make install && make start
Then point your browser to http://192.168.88.100/openqrm to finalize the openQRM Server
configuration. The default username and password after a fresh installation is "openqrm" (for
user + pass). Please make sure you update this default password after first login !
In the first setup screen please select "br0" as the openQRM interface.
In the following screen pick "mysql"
and in the final screen provide the mysql connection parameters.
After successful initialization it will forward you to the Datacenter Dashboard.
Now we are going to enable the required openQRM plugins for this HowTo.
• Enable and start the following plugins :
◦ kvm, kvm-storage, lvm-storage, hybrid-cloud, tftpd
• Just enable the "dhcpd" plugin. Do not start it (yet) !
We are mpw going to install the Ubuntu Enterprise Cloud Controller within a virtual machine
managed by openQRM. The virtual-machine type for the UEC CC will be "kvm-storage".
Install the Ubuntu Enterprise Cloud Controller in a KVM VM
First we need to prepare the partition dedicated as our image store (/dev/sda3).
Open a terminal and run the following commands :
sudo bash
pvcreate /dev/sda3
vgcreate lvols /dev/sda3
Now we are going to prepare the volume to install the UEC CC on.
• Goto Base -> Components -> Storage -> New Storage
• Create a new kvm-storage server (type KVM LVM Storage) using the openQRM
system as the resource
• Provide a name for the kvm-storage server, here we will use "kvmstorageserver"
• Goto Base -> Components -> Storage and click on "Mgmt" of the kvm-storage
◦ Select the "lvols" volume group
◦ Create a new volume for the UEC "Cloud Controller" on the kvm-storage server.
◦ Name it "ubuntucc" and give it at least 40GB volume size.
From this volume we now need to create an openQRM "image"
• Goto Base -> Components -> Image -> New Image
◦ Select the kvm-storage server "kvmstorageserver"
◦ Povide a name for the "image" object, here we will use "ubuntucc"
Here the Image list after we have created the Image object.
Now we are going to prepare the VM resource for the UEC CC.
Create the kvm-storage Hosts
• Goto Base -> Appliance -> Create and create a new kvm-storage Host appliance
using the openQRM system as the resource
◦ Provide a name for the appliance, here we will use "kvmstoragehost"
◦ Select "KVM-Storage Host" as the resource type
Here the fresh created KVM-Storage Host in the Appliance overview.
Create a new kvm-storage VM:
• Goto Plugins -> Virtualization -> kvm-storage -> VM-Manager
◦ Select the kvm-storage Host
• Create a new kvm-storage VM on the Host by clicking on the + icon
◦ Provide a name for the VM, here we will use "kvmstoragevm1"
◦ Set the VMs memory to at least 1024 MB
◦ Select "iso image" as the boot-medium and fill in the path to the ubuntu-10.10.iso
▪ /isos/ubuntu-10.10.iso
Creating the VM will reserve the VMs components and create a new, idle resource.
Here the resource overview after creating the VM
Now we will put the "image" and the "resource" we have created together via an "appliance".
• Goto Base -> Appliance -> Create
• Select the new created "idle" resource (the kvm-storage VM)
◦ Provide a Name for the appliance, here we will use "ubuntucc"
◦ Leave the default kernel
◦ Select the "ubuntucc" image
◦ Select the resource type "KVM-Storage VM"
◦ Save and start the appliance
Here the started appliance
The idle resouce will now boot into the Ubuntu installation accessible via VNC .
Install vncviewer :
sudo bash apt-get install xtightvncviewer
You can access the Install screen via "vncviewer" on the openQRM Server.
vncviewer 192.168.88.100:50
Hints
• For kvm-storage VMs the first VNC id will be 50
• If you are logged in via ssh you need to have X-forwarding enabled
◦ e.g. ssh -X openqrm
• A remote VM console integrated into openQRM is available from openQRM Enterprise
◦ http://www.openqrm-enterprise.com
For the Ubuntu Enterprise Cloud Controller installation follow the steps below :
• Select "Install Ubuntu Enterprise Cloud"
• Manually configure the network device. Set a static ip-address
◦ in this HowTo it will be 192.168.88.101, hostname ubuntucc)
• Otherwise go with the defaults installation parameters
• Later in the installation setup the ip-addresses to be used by UEC
◦ In this Howto this will be 192.168.88.102-192.168.88.122
Rebot after the installation of the Ubuntu Enterprise Cloud Controller.
Please notice : The VM will now still try to boot from the CD and fail !
This is because the VM is still configured to boot from the iso image.
Please see the next part how to re-configure the VM to boot from local disk.
Before we will boot the now ready installed Ubuntu Enterprise Cloud Controller we will create
a snapshot of its disk. Then we will re-configure the "ubuntucc" appliance to use the snapshot
instead of the origing volume. This enables you to roll-back at any time in case you need a
fresh Cloud Controller.
Here how to create the snapshot :
• Goto Base -> Appliance and stop the ubuntucc appliance
• Goto Base -> Components -> Storage and click on "Mgmt" of the kvm-storage
◦ Select the "lvols" volume group
◦ Fill in a snapshot name (here "ccsnapshot1" and provide a size, here 20GB).
◦ Click on "snap"
Here the volume list after we have created the snapshot
Now we have to create a new Image from the snapshot volume:
• Goto Base -> Components -> Image -> New Image
◦ Select the kvm-storage server "kvmstorageserver"
◦ Povide a name for the new "image" object, here we will use "ccsnapshot1" and
select the "ccsnapshot1" volume as the root-device
• Goto Base -> Appliance and edit the ubuntucc appliance
◦ Adjust the Root-device to the “ccsnapshot1” image and save
Now re-configure the VM to do a localboot :
• Goto Plugins -> Virtualization and stop the VM
• When the VM is stopped click on "Config"
• In the config screen edit the boot-order
• Set the boot-order to "local boot"
• Click on back to go to the Virtual Machine list
• Start the VM again
• Goto Base -> Appliance and start the ubuntucc appliance again
You can now access the VM again via "vncviewer" on the openQRM Server.
vncviewer 192.168.88.100:50
to check its boot-up from local disk.
Configure the Ubuntu Enterprise Cloud
You can now access the UEC Configuration Panel at https://192.168.88.101:8443
The first time when connecting it will tell in the browser "This Connection is Untrusted".
Add an exception for it and it will forward you to the login panel.
The default login for the UEC is user "admin" with the password "admin".
Now it is a good time to download your UEC Cloud credentials.
Here how to install the credentials on your openQRM Server. Please open a terminal and
run :
mkdir .euca
mv euca2-admin-x509.zip .euca/
cd .euca/
unzip euca2-admin-x509.zip
. eucarc
After that you are able to use the UEC commandline tools e.g. euca-describe-availability-
zones
Next step is to set the password for user "eucalyptus" on the openQRM server which is also a
UEC Node Controller.
sudo bash
passwd eucalyptus
We need to have this in the following step on the UEC system itself to discover the Node
Controller.
Login to the UCE Cloud Controller (the VM at 192.168.88.101) and run :
sudo euca_conf --discover-nodes
This will automatically rsync the ssh-keys and add the Node Controller to the UEC cluster.
Now we go back to the UEC Admin UI and download one of the pre-made UEC Images.
For this HowTo we selected the Ubuntu Karmic 10.04 64bit. Clicking on Download will
download and install the image in the UEC Cloud.
Before we actually start an instance of this AMI we need to create a ssh keypair an open port
22 on the UEC firewall to enable ssh login.
On the openQRM Server open a terminal and run :
. .euca/eucarc
euca-add-keypair mykey > ~/.euca/mykey.priv
euca-authorize -P tcp -p 22 -s 0.0.0.0/0 default
Starting an instance on the UEC Cloud
Now we are going to start an instance on the Ubuntu Enterprise Cloud via the euca-run-
instances command.
Open a terminal on the openQRM server and follow the steps below :
. .euca/eucarc
euca-run-instances -k mykey emi-DEBF106A -t m1.small
Please notice that you need to get the AMI name (here emi-DEBF106A) from the image
overview in UEC.
After a short while the instances is running and we can login via ssh.
ssh -i .euca/mykey.priv ubuntu@192.168.88.102
To prepare the Import of this AMI into openQRM we now need to adjust the
/root/.ssh/authorized_keys file on the AMI.
Simply cat the /home/ubuntu/.ssh/authorized_keys to /root/.ssh/authorized_keys to enable
passwordless ssh login for the root user too.
Import an AMI from the Ubuntu Enterprise Cloud (or Amazon EC2)
First step to import from the Ubuntu Enterprise Cloud is to define the UEC credentials in
openQRM.
• Goto Plugins -> Components -> Deployment -> Hybrid-Cloud -> Accounts
◦ Provide an Account name (you can choose any name)
◦ Set the path to the UEC rc-config file
◦ Set the path to the ssh-key file
◦ Set the type of the account
Second step for importing the AMI of the running instance is to create a volume on storage
server in openQRM.
Create a lvm-storage (NFS) server in openQRM
• Goto Base -> Components -> Storage -> New Storage
• Create a new lvm-storage server (type LVM Storage NFS) using the openQRM
system as the resource
◦ Provide a name for the lvm-storage server, here we will use "lvmstorageserver"
Here the Storage list in openQRM after we added the new storage
• Goto Base -> Components -> Storage and click on "Mgmt" of the lvm-storage
◦ Select the "lvols" volume group
◦ Create a new volume to import the AMI to.
◦ Name it "uecubuntuimport" and give it at least 2000MB volume size.
Here the volume list after we have created the volume
Now we have to create a new Image from the new empty volume:
• Goto Base -> Components -> Image -> New Image
◦ Select the lvm-storage server "lvmstorageserver"
• Povide a name for the new "image" object, here we will use "uecubuntuimport" and
select the "uecubuntuimport" volume as the root-device
Everything is prepared for the import.
Import the AMI
• Goto Plugins -> Deployment -> Hybrid-Cloud -> Import
◦ Select your UEC account
◦ On the next screen select the running instance on the UEC
◦ On the next screen select the Image to transfer the AMI to and click on "put"
openQRM will now import the AMI. You can check the Event list for the progress.
Run the imported AMI on a local KVM VM
For running the imported AMI please now start the dhcpd plugin
Please notice that you make sure to only have one dhcp-server running in your setup!
Eiher have openQRM serving dhcp or the UEC Cloud Controller.
Now create a kvm Hosts:
• Goto Base -> Appliance -> Create and create a new kvm Host appliance using the
openQRM system as the resource
◦ Provide a name for the appliance, here we will use "kvmhost"
◦ Select "KVM Host" as the resource type
Create a new KVM VM:
• Goto Plugins -> Virtualization -> kvm -> VM-Manager, select the kvm Host
• Create a new kvm VM on the Host by clicking on the + icon
◦ Provide a name for the VM, here we will use "kvmvm1"
Creating the VM will reserve the VMs components and create a new, idle resource.
Now we will put the "image" (the imported AMI) and the "resource" we have created (the new
KVM VM) together via an "appliance".
• Goto Base -> Appliance -> Create
◦ Select the new created "idle" resource (the idle kvm VM)
◦ Provide a Name for the appliance, here we will use "uecubuntuimport"
◦ Leave the default kernel
◦ Select the "uecubuntuimport" image
◦ Select the resource type "KVM VM"
• Save and start the appliance
The idle resouce will now reboot and start the "uecubuntuimport" image. The VM is now
accessible via VNC
vncviewer 192.168.88.100:1
Hints
- For kvm VMs the first VNC id will be 1
Here a screenshot of the started appliance in openQRM
You can ssh to the running appliance in the same way as we did for the AMI.
ssh -i .euca/mykey.priv root@192.168.88.253
Please get the ip of the appliance in the openQRM resource overview.
The imported AMI, now available in openQRM as an “Image”, can be easily made available in
the openQRM Cloud.
HowTo setup and use the openQRM Cloud is covered in another Howto at :
http://www.openqrm-enterprise.com/news/details/article/howto-setup-your-own-openqrm-
cloud-with-kvm-on-ubuntu-lucid-lynx.html
Export an openQRM Image to Amazon EC2
To export an openQRM Image to Amazon EC2 (or to an Ubuntu Enterprise Cloud) we first
have to install the Amazon ec2-ami-tools and ec2-api-tools.
Download the Amazon EC2 API Tools from http://aws.amazon.com/developertools/351
Download the Amazon EC2 AMI Tools from http://aws.amazon.com/developertools/368
Install both tools on the openQRM Server at /home/[username]/aws
cd
mkdir -p aws .ec2
cp ec2-ami-tools.zip ec2-api-tools.zip aws
cd aws
unzip ec2-ami-tools.zip
unzip ec2-api-tools.zip
Please make sure to have a java jdk installed. Also you need to install ruby and curl.
sudo apt-get install ruby curl
The ec2-tools require this.
Next step is to create a Amazon rc-config file allowing the ec2-tools to work seamlessly.
A sample ec2rc config file looks like this (of course this example contains random user data):
# for java to work ok
export JAVA_HOME=/home/matt/java/jdk1.6.0_14
# aws api tools
export EC2_HOME=/home/matt/aws/ec2-api-tools-1.3-57419
# aws ami tools
export EC2_AMITOOL_HOME=/home/matt/aws/ec2-ami-tools-1.3-57676
export EC2_PRIVATE_KEY=/home/matt/.ec2/pk-123456.pem
export EC2_CERT=/home/matt/.ec2/cert-123456.pem
# EU
export EC2_URL=https://ec2.eu-west-1.amazonaws.com
# US
#export EC2_URL=https://us-east-1.ec2.amazonaws.com
# keys
export EC2_ACCESS_KEY='123456'
export EC2_SECRET_KEY='123456'
export PATH=$JAVA_HOME/bin:$PATH:$EC2_HOME/bin:
$EC2_AMITOOL_HOME/bin:/usr/games:/home/matt/scripts
# aws user id for the cmdline tools
export EC2_USER_ID="123456"
Please save content as /home/[username]/.ec2/ec2rc
Also please download your AWS Private-key and your AWS Certificate to /home/
[username]/.ec2/
After that please source the ec2rc and check the functionality of the ec2-tools by running
“ec2-describe-regions”.
With the Amazon account credentials installed we are now setting up another Hybrid-Cloud
account.
• Goto Plugins -> Components -> Deployment -> Hybrid-Cloud -> Accounts
◦ Provide an Account name (you can choose any name)
◦ Set the path to the EC2 rc-config file
◦ Set the path to the ssh-key file
◦ Set the type of the account
Now we are ready to export the openQRM Image.
• Goto Plugins -> Deployment -> Hybrid-Cloud -> Import
◦ Select your EC2 account
◦ On the next screen select the Image to transfer to Amazon
◦ On the next screen provide a S3 bucket name for the AMI and configure
region, size and architecture.
Clicking on "export" will start the migration.
openQRM is now transferring the Image to the Amazon Cloud as a new AMI.
It will be available for deployment after bundling and uploading the AMI finished.
You can get a detailed log about the migration at /tmp/uecubuntuexport.export.debug.log.
tail -f /tmp/uecubuntuexport.export.debug.log
Same as for the Import you can also check the Event list for the progress.
As soon as the migration finished the exported openQRM Image will be available at the
Amazon EC2 Cloud. You can start it e.g. via the EC2 commadline tools on the openQRM
Server. Open a terminal an run :
. /home/[username]/.ec2/ec2rc
ec2-run-instances [ami-name] -k [ssh-keypair]
Thanks
We hope you enjoyed this Howto with the focus on the hybrid-cloud features of openQRM !
Urls
UEC Installation Howto - https://help.ubuntu.com/community/UEC/CDInstall
The openQRM Project – http://www.openqrm.com
openQRM Enterprise – http://www.openqrm-enterprise.com
openQRM Documentation - http://www.openqrm-enterprise.com/news/details/article/in-depth-documentation-of-openqrm-available.html
openQRM Cloud HowTo - http://www.openqrm-enterprise.com/news/details/article/howto-setup-your-own-openqrm-cloud-with-kvm-on-ubuntu-lucid-lynx.html
This documentation is brought to you by openQRM Enterprise
http://www.openqrm-enterprise.com
Copyright 2010, Matthias Rechenburg matt@openqrm-enterprise.com

Weitere ähnliche Inhalte

Was ist angesagt?

Microservices Meetup San Francisco - August 2017 Talk on NATS
Microservices Meetup San Francisco - August 2017 Talk on NATSMicroservices Meetup San Francisco - August 2017 Talk on NATS
Microservices Meetup San Francisco - August 2017 Talk on NATSNATS
 
Windows kernel basic exploit
Windows kernel basic exploitWindows kernel basic exploit
Windows kernel basic exploitKyoungseok Yang
 
Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)Moisés Elías Araya
 
Windows MSCS 운영 및 기타 설치 가이드
Windows MSCS 운영 및 기타 설치 가이드Windows MSCS 운영 및 기타 설치 가이드
Windows MSCS 운영 및 기타 설치 가이드CheolHee Han
 
Distributed Caching in Kubernetes with Hazelcast
Distributed Caching in Kubernetes with HazelcastDistributed Caching in Kubernetes with Hazelcast
Distributed Caching in Kubernetes with HazelcastMesut Celik
 
Plataforma de monitoreo Zabbix 2.0.11
Plataforma de monitoreo Zabbix 2.0.11Plataforma de monitoreo Zabbix 2.0.11
Plataforma de monitoreo Zabbix 2.0.11Andrez12
 
快速上手 Windows Containers 容器技術 (Docker Taipei)
快速上手 Windows Containers 容器技術 (Docker Taipei)快速上手 Windows Containers 容器技術 (Docker Taipei)
快速上手 Windows Containers 容器技術 (Docker Taipei)Will Huang
 
[KubeCon EU 2021] Introduction and Deep Dive Into Containerd
[KubeCon EU 2021] Introduction and Deep Dive Into Containerd[KubeCon EU 2021] Introduction and Deep Dive Into Containerd
[KubeCon EU 2021] Introduction and Deep Dive Into ContainerdAkihiro Suda
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to dockerWalid Ashraf
 
Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)
Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)
Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)Seungmin Yu
 
Postgres MVCC - A Developer Centric View of Multi Version Concurrency Control
Postgres MVCC - A Developer Centric View of Multi Version Concurrency ControlPostgres MVCC - A Developer Centric View of Multi Version Concurrency Control
Postgres MVCC - A Developer Centric View of Multi Version Concurrency ControlReactive.IO
 
쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개
쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개
쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개Ian Choi
 
Weblogic application server
Weblogic application serverWeblogic application server
Weblogic application serverAnuj Tomar
 
Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski
Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski
Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski buildacloud
 
How to Containerize WebSphere Application Server Traditional, and Why You Mig...
How to Containerize WebSphere Application Server Traditional, and Why You Mig...How to Containerize WebSphere Application Server Traditional, and Why You Mig...
How to Containerize WebSphere Application Server Traditional, and Why You Mig...David Currie
 
IBM Notes Traveler Best Practices
IBM Notes Traveler Best PracticesIBM Notes Traveler Best Practices
IBM Notes Traveler Best Practicesjayeshpar2006
 

Was ist angesagt? (18)

Microservices Meetup San Francisco - August 2017 Talk on NATS
Microservices Meetup San Francisco - August 2017 Talk on NATSMicroservices Meetup San Francisco - August 2017 Talk on NATS
Microservices Meetup San Francisco - August 2017 Talk on NATS
 
Windows kernel basic exploit
Windows kernel basic exploitWindows kernel basic exploit
Windows kernel basic exploit
 
Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)
 
Windows MSCS 운영 및 기타 설치 가이드
Windows MSCS 운영 및 기타 설치 가이드Windows MSCS 운영 및 기타 설치 가이드
Windows MSCS 운영 및 기타 설치 가이드
 
Distributed Caching in Kubernetes with Hazelcast
Distributed Caching in Kubernetes with HazelcastDistributed Caching in Kubernetes with Hazelcast
Distributed Caching in Kubernetes with Hazelcast
 
Plataforma de monitoreo Zabbix 2.0.11
Plataforma de monitoreo Zabbix 2.0.11Plataforma de monitoreo Zabbix 2.0.11
Plataforma de monitoreo Zabbix 2.0.11
 
快速上手 Windows Containers 容器技術 (Docker Taipei)
快速上手 Windows Containers 容器技術 (Docker Taipei)快速上手 Windows Containers 容器技術 (Docker Taipei)
快速上手 Windows Containers 容器技術 (Docker Taipei)
 
[KubeCon EU 2021] Introduction and Deep Dive Into Containerd
[KubeCon EU 2021] Introduction and Deep Dive Into Containerd[KubeCon EU 2021] Introduction and Deep Dive Into Containerd
[KubeCon EU 2021] Introduction and Deep Dive Into Containerd
 
Introduction to docker
Introduction to dockerIntroduction to docker
Introduction to docker
 
Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)
Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)
Custom DevOps Monitoring System in MelOn (with InfluxDB + Telegraf + Grafana)
 
Redis
RedisRedis
Redis
 
Tomcat Server
Tomcat ServerTomcat Server
Tomcat Server
 
Postgres MVCC - A Developer Centric View of Multi Version Concurrency Control
Postgres MVCC - A Developer Centric View of Multi Version Concurrency ControlPostgres MVCC - A Developer Centric View of Multi Version Concurrency Control
Postgres MVCC - A Developer Centric View of Multi Version Concurrency Control
 
쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개
쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개
쿠버네티스 오픈 소스와 클라우드 매니지드 서비스 접점 소개
 
Weblogic application server
Weblogic application serverWeblogic application server
Weblogic application server
 
Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski
Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski
Troubleshooting Strategies for CloudStack Installations by Kirk Kosinski
 
How to Containerize WebSphere Application Server Traditional, and Why You Mig...
How to Containerize WebSphere Application Server Traditional, and Why You Mig...How to Containerize WebSphere Application Server Traditional, and Why You Mig...
How to Containerize WebSphere Application Server Traditional, and Why You Mig...
 
IBM Notes Traveler Best Practices
IBM Notes Traveler Best PracticesIBM Notes Traveler Best Practices
IBM Notes Traveler Best Practices
 

Andere mochten auch

Best Party on the EU
Best Party on the EUBest Party on the EU
Best Party on the EUIpsos UK
 
Ipsos MediaCT: Business Elite Breakfast Seminar
Ipsos MediaCT: Business Elite Breakfast SeminarIpsos MediaCT: Business Elite Breakfast Seminar
Ipsos MediaCT: Business Elite Breakfast SeminarIpsos UK
 
Behaviour Change: What role do we want governments to play? An international ...
Behaviour Change: What role do we want governments to play? An international ...Behaviour Change: What role do we want governments to play? An international ...
Behaviour Change: What role do we want governments to play? An international ...Ipsos UK
 
From Victims to Partners - Engaging the Public
From Victims to Partners - Engaging the PublicFrom Victims to Partners - Engaging the Public
From Victims to Partners - Engaging the PublicIpsos UK
 
Howto: Install openQRM 5.1 on Debian Wheezy
Howto: Install openQRM 5.1 on Debian WheezyHowto: Install openQRM 5.1 on Debian Wheezy
Howto: Install openQRM 5.1 on Debian WheezyopenQRM Enterprise GmbH
 
Virtualization with Xen and openQRM 5.1 on Debian Wheezy
Virtualization with Xen and openQRM 5.1 on Debian WheezyVirtualization with Xen and openQRM 5.1 on Debian Wheezy
Virtualization with Xen and openQRM 5.1 on Debian WheezyopenQRM Enterprise GmbH
 
Automated Amazon EC2 Cloud deployments with openQRM
Automated Amazon EC2 Cloud deployments with openQRMAutomated Amazon EC2 Cloud deployments with openQRM
Automated Amazon EC2 Cloud deployments with openQRMopenQRM Enterprise GmbH
 
A prism changes your way of looking at the world: how PRISM affects your clou...
A prism changes your way of looking at the world: how PRISM affects your clou...A prism changes your way of looking at the world: how PRISM affects your clou...
A prism changes your way of looking at the world: how PRISM affects your clou...openQRM Enterprise GmbH
 
Sharmila Telematics
Sharmila TelematicsSharmila Telematics
Sharmila Telematicsramugus
 
Welcome to the private cloud - Use openQRM to adopt concepts from the public ...
Welcome to the private cloud - Use openQRM to adopt concepts from the public ...Welcome to the private cloud - Use openQRM to adopt concepts from the public ...
Welcome to the private cloud - Use openQRM to adopt concepts from the public ...openQRM Enterprise GmbH
 

Andere mochten auch (10)

Best Party on the EU
Best Party on the EUBest Party on the EU
Best Party on the EU
 
Ipsos MediaCT: Business Elite Breakfast Seminar
Ipsos MediaCT: Business Elite Breakfast SeminarIpsos MediaCT: Business Elite Breakfast Seminar
Ipsos MediaCT: Business Elite Breakfast Seminar
 
Behaviour Change: What role do we want governments to play? An international ...
Behaviour Change: What role do we want governments to play? An international ...Behaviour Change: What role do we want governments to play? An international ...
Behaviour Change: What role do we want governments to play? An international ...
 
From Victims to Partners - Engaging the Public
From Victims to Partners - Engaging the PublicFrom Victims to Partners - Engaging the Public
From Victims to Partners - Engaging the Public
 
Howto: Install openQRM 5.1 on Debian Wheezy
Howto: Install openQRM 5.1 on Debian WheezyHowto: Install openQRM 5.1 on Debian Wheezy
Howto: Install openQRM 5.1 on Debian Wheezy
 
Virtualization with Xen and openQRM 5.1 on Debian Wheezy
Virtualization with Xen and openQRM 5.1 on Debian WheezyVirtualization with Xen and openQRM 5.1 on Debian Wheezy
Virtualization with Xen and openQRM 5.1 on Debian Wheezy
 
Automated Amazon EC2 Cloud deployments with openQRM
Automated Amazon EC2 Cloud deployments with openQRMAutomated Amazon EC2 Cloud deployments with openQRM
Automated Amazon EC2 Cloud deployments with openQRM
 
A prism changes your way of looking at the world: how PRISM affects your clou...
A prism changes your way of looking at the world: how PRISM affects your clou...A prism changes your way of looking at the world: how PRISM affects your clou...
A prism changes your way of looking at the world: how PRISM affects your clou...
 
Sharmila Telematics
Sharmila TelematicsSharmila Telematics
Sharmila Telematics
 
Welcome to the private cloud - Use openQRM to adopt concepts from the public ...
Welcome to the private cloud - Use openQRM to adopt concepts from the public ...Welcome to the private cloud - Use openQRM to adopt concepts from the public ...
Welcome to the private cloud - Use openQRM to adopt concepts from the public ...
 

Ähnlich wie openQRM how-to: Setup UEC and openQRM cloud

OpenNebula 4.14 Hands-on Tutorial
OpenNebula 4.14 Hands-on TutorialOpenNebula 4.14 Hands-on Tutorial
OpenNebula 4.14 Hands-on TutorialOpenNebula Project
 
rgpv 7th sem for it & cs Cloud computing lab record
rgpv 7th sem for it & cs Cloud computing lab recordrgpv 7th sem for it & cs Cloud computing lab record
rgpv 7th sem for it & cs Cloud computing lab recordnaaaaz
 
Running virtual box from the linux command line
Running virtual box from the linux command lineRunning virtual box from the linux command line
Running virtual box from the linux command lineEric Javier Espino Man
 
Devnet 1005 Getting Started with OpenStack
Devnet 1005 Getting Started with OpenStackDevnet 1005 Getting Started with OpenStack
Devnet 1005 Getting Started with OpenStackCisco DevNet
 
Varnish Configuration Step by Step
Varnish Configuration Step by StepVarnish Configuration Step by Step
Varnish Configuration Step by StepKim Stefan Lindholm
 
OpenNebula - OpenNebula and tips for CentOS 7
OpenNebula - OpenNebula and tips for CentOS 7OpenNebula - OpenNebula and tips for CentOS 7
OpenNebula - OpenNebula and tips for CentOS 7OpenNebula Project
 
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...OpenNebula Project
 
Locally run a FIWARE Lab Instance In another Hypervisors
Locally run a FIWARE Lab Instance In another HypervisorsLocally run a FIWARE Lab Instance In another Hypervisors
Locally run a FIWARE Lab Instance In another HypervisorsJosé Ignacio Carretero Guarde
 
Krenel Based Virtual Machine In Centos7
Krenel Based Virtual Machine In Centos7Krenel Based Virtual Machine In Centos7
Krenel Based Virtual Machine In Centos7a_ratra
 
Deploying an open source private cloud on a shoe string budget presentation
Deploying an open source private cloud on a shoe string budget presentationDeploying an open source private cloud on a shoe string budget presentation
Deploying an open source private cloud on a shoe string budget presentationVijayabalan Open to Explore
 
OpenNebula TechDay Boston 2015 - installing and basic usage
OpenNebula TechDay Boston 2015 - installing and basic usageOpenNebula TechDay Boston 2015 - installing and basic usage
OpenNebula TechDay Boston 2015 - installing and basic usageOpenNebula Project
 
OpenNebula TechDay Waterloo 2015 - Open nebula hands on workshop
OpenNebula TechDay Waterloo 2015 - Open nebula hands on workshopOpenNebula TechDay Waterloo 2015 - Open nebula hands on workshop
OpenNebula TechDay Waterloo 2015 - Open nebula hands on workshopOpenNebula Project
 
FIWARE Tech Summit - FIWARE Lab Cloud
FIWARE Tech Summit - FIWARE Lab CloudFIWARE Tech Summit - FIWARE Lab Cloud
FIWARE Tech Summit - FIWARE Lab CloudFIWARE
 
Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7VCP Muthukrishna
 
Building a cloud ready linux image locally using KVM
Building a cloud ready linux image locally using KVM Building a cloud ready linux image locally using KVM
Building a cloud ready linux image locally using KVM OpenStack_Online
 

Ähnlich wie openQRM how-to: Setup UEC and openQRM cloud (20)

OpenNebula 4.14 Hands-on Tutorial
OpenNebula 4.14 Hands-on TutorialOpenNebula 4.14 Hands-on Tutorial
OpenNebula 4.14 Hands-on Tutorial
 
TechDay - April - Tutorial
TechDay - April - TutorialTechDay - April - Tutorial
TechDay - April - Tutorial
 
rgpv 7th sem for it & cs Cloud computing lab record
rgpv 7th sem for it & cs Cloud computing lab recordrgpv 7th sem for it & cs Cloud computing lab record
rgpv 7th sem for it & cs Cloud computing lab record
 
Running virtual box from the linux command line
Running virtual box from the linux command lineRunning virtual box from the linux command line
Running virtual box from the linux command line
 
Devnet 1005 Getting Started with OpenStack
Devnet 1005 Getting Started with OpenStackDevnet 1005 Getting Started with OpenStack
Devnet 1005 Getting Started with OpenStack
 
Varnish Configuration Step by Step
Varnish Configuration Step by StepVarnish Configuration Step by Step
Varnish Configuration Step by Step
 
OpenNebula - OpenNebula and tips for CentOS 7
OpenNebula - OpenNebula and tips for CentOS 7OpenNebula - OpenNebula and tips for CentOS 7
OpenNebula - OpenNebula and tips for CentOS 7
 
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
OpenNebulaConf 2016 - Hypervisors and Containers Hands-on Workshop by Jaime M...
 
Locally run a FIWARE Lab Instance In another Hypervisors
Locally run a FIWARE Lab Instance In another HypervisorsLocally run a FIWARE Lab Instance In another Hypervisors
Locally run a FIWARE Lab Instance In another Hypervisors
 
Krenel Based Virtual Machine In Centos7
Krenel Based Virtual Machine In Centos7Krenel Based Virtual Machine In Centos7
Krenel Based Virtual Machine In Centos7
 
Deploying an open source private cloud on a shoe string budget presentation
Deploying an open source private cloud on a shoe string budget presentationDeploying an open source private cloud on a shoe string budget presentation
Deploying an open source private cloud on a shoe string budget presentation
 
OpenNebula TechDay Boston 2015 - installing and basic usage
OpenNebula TechDay Boston 2015 - installing and basic usageOpenNebula TechDay Boston 2015 - installing and basic usage
OpenNebula TechDay Boston 2015 - installing and basic usage
 
OpenNebula TechDay Waterloo 2015 - Open nebula hands on workshop
OpenNebula TechDay Waterloo 2015 - Open nebula hands on workshopOpenNebula TechDay Waterloo 2015 - Open nebula hands on workshop
OpenNebula TechDay Waterloo 2015 - Open nebula hands on workshop
 
FIWARE Lab Cloud Portal
FIWARE Lab Cloud PortalFIWARE Lab Cloud Portal
FIWARE Lab Cloud Portal
 
FIWARE Tech Summit - FIWARE Lab Cloud
FIWARE Tech Summit - FIWARE Lab CloudFIWARE Tech Summit - FIWARE Lab Cloud
FIWARE Tech Summit - FIWARE Lab Cloud
 
Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7Install VMWare Tools CentOS 7
Install VMWare Tools CentOS 7
 
Building a cloud ready linux image locally using KVM
Building a cloud ready linux image locally using KVM Building a cloud ready linux image locally using KVM
Building a cloud ready linux image locally using KVM
 
Kvm setup
Kvm setupKvm setup
Kvm setup
 
SmartOS Primer
SmartOS PrimerSmartOS Primer
SmartOS Primer
 
2015 09-18-jawsug hpc-#1
2015 09-18-jawsug hpc-#12015 09-18-jawsug hpc-#1
2015 09-18-jawsug hpc-#1
 

Kürzlich hochgeladen

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 

Kürzlich hochgeladen (20)

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 

openQRM how-to: Setup UEC and openQRM cloud

  • 1. The perfect server: openQRM, UEC and EC2 on Ubuntu 10.10 This documentation is brought to you by openQRM Enterprise http://www.openqrm-enterprise.com Document Version : 27.10.2010 openQRM Enterprise GmbH Berrenrather Straße 188c 50937 Köln / Germany Telefon : +49 (0) 221 995589-10 Fax : +49 (0) 221 995589-20 Mail : info@openqrm-enterprise.com Table of Contents The perfect server: openQRM, UEC and EC2 on Ubuntu 10.10 ..............................................................1 Hybrid Cloud Computing with openQRM.................................................................................................2 Requirements.........................................................................................................................................2 Install the system with Ubuntu 10.10 (64bit) as a "Node Controller" ..................................................2 Install openQRM from the source repository........................................................................................3 Install the Ubuntu Enterprise Cloud Controller in a KVM VM............................................................8 Configure the Ubuntu Enterprise Cloud .............................................................................................43 Import an AMI from the Ubuntu Enterprise Cloud (or Amazon EC2) ..............................................50 Run the imported AMI on a local KVM VM .....................................................................................64 Export an openQRM Image to Amazon EC2 .....................................................................................76 Thanks.................................................................................................................................................83 Urls......................................................................................................................................................83
  • 2. Hybrid Cloud Computing with openQRM The goal of this HowTo is to have a single system setup with the Ubuntu Enterprise Cloud (UEC) and the openQRM Cloud. This system will allow to migrate services from the UEC and Amazon EC2 to the openQRM Cloud and from openQRM Cloud to UEC and Amazon EC2. Requirements - 1 64bit system having the VT (Virtualization Technology) CPU extension - 2 GB RAM (or more) - 200 GB disk space (or more) Install the system with Ubuntu 10.10 (64bit) as a "Node Controller" • Boot the system from the Ubuntu CD • Select "Install Ubuntu Enterprise Cloud" • Set a static ip-address ◦ in this Howto it will be 192.168.88.100, hostname will be "perf" • Continue with an empty (blank) Cloud Controller address • During the Cloud package selection just select "Node Controller" ◦ deselect everything else • In the partitioning screen ◦ Create a partiton (primary) for / ▪ in this Howto it will be /dev/sda1 ◦ Create a partition (primary) for swap ▪ in this Howto it will be /dev/sda2 ◦ Create a partition (primary) to be used by lvm ▪ this should be huge, in this Howto it will be /dev/sda3 After the installation finished reboot into the fresh Ubuntu 10.10 system. Now create a iso image from the Ubuntu 10.10 CD. Insert the CD, open a terminal and run : sudo bash mkdir /isos dd if=/dev/cdrom of=/isos/ubuntu-10.10.iso
  • 3. Install openQRM from the source repository Installing openQRM from the projects subversion repository will include the latest features. sudo bash apt-get install subversion nfs-kernel-server cd mkdir openqrm cd openqrm svn co https://openqrm.svn.sourceforge.net/svnroot/openqrm openqrm cd trunk/openqrm/src make && make install && make start Then point your browser to http://192.168.88.100/openqrm to finalize the openQRM Server configuration. The default username and password after a fresh installation is "openqrm" (for user + pass). Please make sure you update this default password after first login ! In the first setup screen please select "br0" as the openQRM interface.
  • 4. In the following screen pick "mysql"
  • 5. and in the final screen provide the mysql connection parameters.
  • 6. After successful initialization it will forward you to the Datacenter Dashboard.
  • 7. Now we are going to enable the required openQRM plugins for this HowTo. • Enable and start the following plugins : ◦ kvm, kvm-storage, lvm-storage, hybrid-cloud, tftpd • Just enable the "dhcpd" plugin. Do not start it (yet) !
  • 8. We are mpw going to install the Ubuntu Enterprise Cloud Controller within a virtual machine managed by openQRM. The virtual-machine type for the UEC CC will be "kvm-storage". Install the Ubuntu Enterprise Cloud Controller in a KVM VM First we need to prepare the partition dedicated as our image store (/dev/sda3). Open a terminal and run the following commands : sudo bash pvcreate /dev/sda3 vgcreate lvols /dev/sda3
  • 9. Now we are going to prepare the volume to install the UEC CC on. • Goto Base -> Components -> Storage -> New Storage
  • 10. • Create a new kvm-storage server (type KVM LVM Storage) using the openQRM system as the resource
  • 11. • Provide a name for the kvm-storage server, here we will use "kvmstorageserver"
  • 12. • Goto Base -> Components -> Storage and click on "Mgmt" of the kvm-storage ◦ Select the "lvols" volume group
  • 13. ◦ Create a new volume for the UEC "Cloud Controller" on the kvm-storage server. ◦ Name it "ubuntucc" and give it at least 40GB volume size.
  • 14. From this volume we now need to create an openQRM "image"
  • 15. • Goto Base -> Components -> Image -> New Image ◦ Select the kvm-storage server "kvmstorageserver"
  • 16. ◦ Povide a name for the "image" object, here we will use "ubuntucc"
  • 17. Here the Image list after we have created the Image object. Now we are going to prepare the VM resource for the UEC CC.
  • 18. Create the kvm-storage Hosts • Goto Base -> Appliance -> Create and create a new kvm-storage Host appliance using the openQRM system as the resource
  • 19. ◦ Provide a name for the appliance, here we will use "kvmstoragehost" ◦ Select "KVM-Storage Host" as the resource type
  • 20. Here the fresh created KVM-Storage Host in the Appliance overview.
  • 21. Create a new kvm-storage VM: • Goto Plugins -> Virtualization -> kvm-storage -> VM-Manager ◦ Select the kvm-storage Host
  • 22. • Create a new kvm-storage VM on the Host by clicking on the + icon
  • 23. ◦ Provide a name for the VM, here we will use "kvmstoragevm1" ◦ Set the VMs memory to at least 1024 MB ◦ Select "iso image" as the boot-medium and fill in the path to the ubuntu-10.10.iso ▪ /isos/ubuntu-10.10.iso
  • 24. Creating the VM will reserve the VMs components and create a new, idle resource.
  • 25. Here the resource overview after creating the VM
  • 26. Now we will put the "image" and the "resource" we have created together via an "appliance". • Goto Base -> Appliance -> Create • Select the new created "idle" resource (the kvm-storage VM)
  • 27. ◦ Provide a Name for the appliance, here we will use "ubuntucc" ◦ Leave the default kernel ◦ Select the "ubuntucc" image ◦ Select the resource type "KVM-Storage VM"
  • 28. ◦ Save and start the appliance
  • 29. Here the started appliance The idle resouce will now boot into the Ubuntu installation accessible via VNC . Install vncviewer : sudo bash apt-get install xtightvncviewer
  • 30. You can access the Install screen via "vncviewer" on the openQRM Server. vncviewer 192.168.88.100:50 Hints • For kvm-storage VMs the first VNC id will be 50 • If you are logged in via ssh you need to have X-forwarding enabled ◦ e.g. ssh -X openqrm • A remote VM console integrated into openQRM is available from openQRM Enterprise ◦ http://www.openqrm-enterprise.com
  • 31. For the Ubuntu Enterprise Cloud Controller installation follow the steps below : • Select "Install Ubuntu Enterprise Cloud" • Manually configure the network device. Set a static ip-address ◦ in this HowTo it will be 192.168.88.101, hostname ubuntucc)
  • 32. • Otherwise go with the defaults installation parameters • Later in the installation setup the ip-addresses to be used by UEC ◦ In this Howto this will be 192.168.88.102-192.168.88.122 Rebot after the installation of the Ubuntu Enterprise Cloud Controller. Please notice : The VM will now still try to boot from the CD and fail ! This is because the VM is still configured to boot from the iso image. Please see the next part how to re-configure the VM to boot from local disk.
  • 33. Before we will boot the now ready installed Ubuntu Enterprise Cloud Controller we will create a snapshot of its disk. Then we will re-configure the "ubuntucc" appliance to use the snapshot instead of the origing volume. This enables you to roll-back at any time in case you need a fresh Cloud Controller. Here how to create the snapshot : • Goto Base -> Appliance and stop the ubuntucc appliance
  • 34. • Goto Base -> Components -> Storage and click on "Mgmt" of the kvm-storage ◦ Select the "lvols" volume group ◦ Fill in a snapshot name (here "ccsnapshot1" and provide a size, here 20GB). ◦ Click on "snap"
  • 35. Here the volume list after we have created the snapshot
  • 36. Now we have to create a new Image from the snapshot volume: • Goto Base -> Components -> Image -> New Image ◦ Select the kvm-storage server "kvmstorageserver" ◦ Povide a name for the new "image" object, here we will use "ccsnapshot1" and select the "ccsnapshot1" volume as the root-device
  • 37. • Goto Base -> Appliance and edit the ubuntucc appliance ◦ Adjust the Root-device to the “ccsnapshot1” image and save
  • 38. Now re-configure the VM to do a localboot : • Goto Plugins -> Virtualization and stop the VM
  • 39. • When the VM is stopped click on "Config" • In the config screen edit the boot-order
  • 40. • Set the boot-order to "local boot" • Click on back to go to the Virtual Machine list
  • 41. • Start the VM again
  • 42. • Goto Base -> Appliance and start the ubuntucc appliance again You can now access the VM again via "vncviewer" on the openQRM Server. vncviewer 192.168.88.100:50 to check its boot-up from local disk.
  • 43. Configure the Ubuntu Enterprise Cloud You can now access the UEC Configuration Panel at https://192.168.88.101:8443 The first time when connecting it will tell in the browser "This Connection is Untrusted". Add an exception for it and it will forward you to the login panel. The default login for the UEC is user "admin" with the password "admin".
  • 44. Now it is a good time to download your UEC Cloud credentials.
  • 45. Here how to install the credentials on your openQRM Server. Please open a terminal and run : mkdir .euca mv euca2-admin-x509.zip .euca/ cd .euca/ unzip euca2-admin-x509.zip . eucarc
  • 46. After that you are able to use the UEC commandline tools e.g. euca-describe-availability- zones Next step is to set the password for user "eucalyptus" on the openQRM server which is also a UEC Node Controller. sudo bash passwd eucalyptus We need to have this in the following step on the UEC system itself to discover the Node Controller. Login to the UCE Cloud Controller (the VM at 192.168.88.101) and run : sudo euca_conf --discover-nodes This will automatically rsync the ssh-keys and add the Node Controller to the UEC cluster.
  • 47. Now we go back to the UEC Admin UI and download one of the pre-made UEC Images. For this HowTo we selected the Ubuntu Karmic 10.04 64bit. Clicking on Download will download and install the image in the UEC Cloud. Before we actually start an instance of this AMI we need to create a ssh keypair an open port 22 on the UEC firewall to enable ssh login. On the openQRM Server open a terminal and run : . .euca/eucarc euca-add-keypair mykey > ~/.euca/mykey.priv euca-authorize -P tcp -p 22 -s 0.0.0.0/0 default
  • 48. Starting an instance on the UEC Cloud Now we are going to start an instance on the Ubuntu Enterprise Cloud via the euca-run- instances command. Open a terminal on the openQRM server and follow the steps below : . .euca/eucarc euca-run-instances -k mykey emi-DEBF106A -t m1.small Please notice that you need to get the AMI name (here emi-DEBF106A) from the image overview in UEC. After a short while the instances is running and we can login via ssh. ssh -i .euca/mykey.priv ubuntu@192.168.88.102
  • 49. To prepare the Import of this AMI into openQRM we now need to adjust the /root/.ssh/authorized_keys file on the AMI. Simply cat the /home/ubuntu/.ssh/authorized_keys to /root/.ssh/authorized_keys to enable passwordless ssh login for the root user too.
  • 50. Import an AMI from the Ubuntu Enterprise Cloud (or Amazon EC2) First step to import from the Ubuntu Enterprise Cloud is to define the UEC credentials in openQRM. • Goto Plugins -> Components -> Deployment -> Hybrid-Cloud -> Accounts ◦ Provide an Account name (you can choose any name) ◦ Set the path to the UEC rc-config file ◦ Set the path to the ssh-key file ◦ Set the type of the account
  • 51. Second step for importing the AMI of the running instance is to create a volume on storage server in openQRM. Create a lvm-storage (NFS) server in openQRM • Goto Base -> Components -> Storage -> New Storage • Create a new lvm-storage server (type LVM Storage NFS) using the openQRM system as the resource
  • 52. ◦ Provide a name for the lvm-storage server, here we will use "lvmstorageserver"
  • 53. Here the Storage list in openQRM after we added the new storage
  • 54. • Goto Base -> Components -> Storage and click on "Mgmt" of the lvm-storage ◦ Select the "lvols" volume group
  • 55. ◦ Create a new volume to import the AMI to. ◦ Name it "uecubuntuimport" and give it at least 2000MB volume size.
  • 56. Here the volume list after we have created the volume
  • 57. Now we have to create a new Image from the new empty volume: • Goto Base -> Components -> Image -> New Image ◦ Select the lvm-storage server "lvmstorageserver"
  • 58. • Povide a name for the new "image" object, here we will use "uecubuntuimport" and select the "uecubuntuimport" volume as the root-device Everything is prepared for the import.
  • 59. Import the AMI • Goto Plugins -> Deployment -> Hybrid-Cloud -> Import ◦ Select your UEC account
  • 60. ◦ On the next screen select the running instance on the UEC
  • 61. ◦ On the next screen select the Image to transfer the AMI to and click on "put"
  • 62.
  • 63. openQRM will now import the AMI. You can check the Event list for the progress.
  • 64. Run the imported AMI on a local KVM VM For running the imported AMI please now start the dhcpd plugin Please notice that you make sure to only have one dhcp-server running in your setup! Eiher have openQRM serving dhcp or the UEC Cloud Controller.
  • 65. Now create a kvm Hosts: • Goto Base -> Appliance -> Create and create a new kvm Host appliance using the openQRM system as the resource
  • 66. ◦ Provide a name for the appliance, here we will use "kvmhost" ◦ Select "KVM Host" as the resource type
  • 67. Create a new KVM VM: • Goto Plugins -> Virtualization -> kvm -> VM-Manager, select the kvm Host
  • 68. • Create a new kvm VM on the Host by clicking on the + icon
  • 69. ◦ Provide a name for the VM, here we will use "kvmvm1"
  • 70. Creating the VM will reserve the VMs components and create a new, idle resource.
  • 71. Now we will put the "image" (the imported AMI) and the "resource" we have created (the new KVM VM) together via an "appliance". • Goto Base -> Appliance -> Create ◦ Select the new created "idle" resource (the idle kvm VM)
  • 72. ◦ Provide a Name for the appliance, here we will use "uecubuntuimport" ◦ Leave the default kernel ◦ Select the "uecubuntuimport" image ◦ Select the resource type "KVM VM"
  • 73. • Save and start the appliance The idle resouce will now reboot and start the "uecubuntuimport" image. The VM is now accessible via VNC vncviewer 192.168.88.100:1 Hints - For kvm VMs the first VNC id will be 1
  • 74. Here a screenshot of the started appliance in openQRM
  • 75. You can ssh to the running appliance in the same way as we did for the AMI. ssh -i .euca/mykey.priv root@192.168.88.253 Please get the ip of the appliance in the openQRM resource overview. The imported AMI, now available in openQRM as an “Image”, can be easily made available in the openQRM Cloud. HowTo setup and use the openQRM Cloud is covered in another Howto at : http://www.openqrm-enterprise.com/news/details/article/howto-setup-your-own-openqrm- cloud-with-kvm-on-ubuntu-lucid-lynx.html
  • 76. Export an openQRM Image to Amazon EC2 To export an openQRM Image to Amazon EC2 (or to an Ubuntu Enterprise Cloud) we first have to install the Amazon ec2-ami-tools and ec2-api-tools. Download the Amazon EC2 API Tools from http://aws.amazon.com/developertools/351 Download the Amazon EC2 AMI Tools from http://aws.amazon.com/developertools/368 Install both tools on the openQRM Server at /home/[username]/aws cd mkdir -p aws .ec2 cp ec2-ami-tools.zip ec2-api-tools.zip aws cd aws unzip ec2-ami-tools.zip unzip ec2-api-tools.zip Please make sure to have a java jdk installed. Also you need to install ruby and curl. sudo apt-get install ruby curl The ec2-tools require this. Next step is to create a Amazon rc-config file allowing the ec2-tools to work seamlessly. A sample ec2rc config file looks like this (of course this example contains random user data): # for java to work ok export JAVA_HOME=/home/matt/java/jdk1.6.0_14 # aws api tools export EC2_HOME=/home/matt/aws/ec2-api-tools-1.3-57419 # aws ami tools export EC2_AMITOOL_HOME=/home/matt/aws/ec2-ami-tools-1.3-57676 export EC2_PRIVATE_KEY=/home/matt/.ec2/pk-123456.pem export EC2_CERT=/home/matt/.ec2/cert-123456.pem # EU export EC2_URL=https://ec2.eu-west-1.amazonaws.com # US #export EC2_URL=https://us-east-1.ec2.amazonaws.com # keys export EC2_ACCESS_KEY='123456' export EC2_SECRET_KEY='123456' export PATH=$JAVA_HOME/bin:$PATH:$EC2_HOME/bin: $EC2_AMITOOL_HOME/bin:/usr/games:/home/matt/scripts # aws user id for the cmdline tools export EC2_USER_ID="123456"
  • 77. Please save content as /home/[username]/.ec2/ec2rc Also please download your AWS Private-key and your AWS Certificate to /home/ [username]/.ec2/ After that please source the ec2rc and check the functionality of the ec2-tools by running “ec2-describe-regions”.
  • 78. With the Amazon account credentials installed we are now setting up another Hybrid-Cloud account. • Goto Plugins -> Components -> Deployment -> Hybrid-Cloud -> Accounts ◦ Provide an Account name (you can choose any name) ◦ Set the path to the EC2 rc-config file ◦ Set the path to the ssh-key file ◦ Set the type of the account
  • 79. Now we are ready to export the openQRM Image. • Goto Plugins -> Deployment -> Hybrid-Cloud -> Import ◦ Select your EC2 account
  • 80. ◦ On the next screen select the Image to transfer to Amazon
  • 81. ◦ On the next screen provide a S3 bucket name for the AMI and configure region, size and architecture.
  • 82. Clicking on "export" will start the migration. openQRM is now transferring the Image to the Amazon Cloud as a new AMI. It will be available for deployment after bundling and uploading the AMI finished. You can get a detailed log about the migration at /tmp/uecubuntuexport.export.debug.log. tail -f /tmp/uecubuntuexport.export.debug.log Same as for the Import you can also check the Event list for the progress. As soon as the migration finished the exported openQRM Image will be available at the Amazon EC2 Cloud. You can start it e.g. via the EC2 commadline tools on the openQRM Server. Open a terminal an run : . /home/[username]/.ec2/ec2rc ec2-run-instances [ami-name] -k [ssh-keypair]
  • 83. Thanks We hope you enjoyed this Howto with the focus on the hybrid-cloud features of openQRM ! Urls UEC Installation Howto - https://help.ubuntu.com/community/UEC/CDInstall The openQRM Project – http://www.openqrm.com openQRM Enterprise – http://www.openqrm-enterprise.com openQRM Documentation - http://www.openqrm-enterprise.com/news/details/article/in-depth-documentation-of-openqrm-available.html openQRM Cloud HowTo - http://www.openqrm-enterprise.com/news/details/article/howto-setup-your-own-openqrm-cloud-with-kvm-on-ubuntu-lucid-lynx.html This documentation is brought to you by openQRM Enterprise http://www.openqrm-enterprise.com Copyright 2010, Matthias Rechenburg matt@openqrm-enterprise.com