Aggregating IaaS Service

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Aggregating IaaS Service
# 1  
Old 02-23-2011
Aggregating IaaS Service

HPL-2011-22 Aggregating IaaS Service - Lee, Bu Sung; Yan, Shixing; Ma, Ding; Zhao, Guopeng
Keyword(s): Cloud computing, service management, IaaS
Abstract: Infrastructure-as-a-Service (IaaS) is the most acceptable Cloud Computing delivery model that CIO and IT managers are exploring as they relook at their IT infrastructure. However, the adoption of IaaS faces challenge/concerns such as provider lock-in, reliability, and regulatory compliance for data ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Run one service after another service has finished - systemd

Hi all I would like to know how to run task2.service after task1.service has finished. task1.service has a timer (task1.timer), that makes it run every 5 minutes OnCalendar=*:0/5task2.service is basically a script, that has to work on the files created after task1 has finished. This is what I... (2 Replies)
Discussion started by: guilliber
2 Replies

2. Solaris

Service

Hi, We are using solaris 10. One of the service was not allowed to start due to security check and violation. Do you know what is the service is doing and what does the impact if it is disabled. thanks, Name of service: /application/management/hwmgmtd (2 Replies)
Discussion started by: xitrum
2 Replies

3. HP-UX

Background service!

Hi I'm wondering, Is there a way to run an application as a background service on HP-UNIX? I'm a complete noobie! Basically I got an application that runs as an NT service on windows. This application is cross-platform and I am wondering if I could run it as some background service on HP-unix... (2 Replies)
Discussion started by: jun27
2 Replies
Login or Register to Ask a Question
App::Nopaste::Service(3pm)				User Contributed Perl Documentation				App::Nopaste::Service(3pm)

NAME
App::Nopaste::Service - base class for nopaste services SYNOPSIS
package App::Nopaste::Service::Shadowcat; use base 'App::Nopaste::Service'; sub uri { "http://paste.scsys.co.uk/" } DESCRIPTION
"App::Nopaste::Service" defines a generic interface for uploading to nopaste sites. It provides a default interface to that of the POE Pastebot. METHODS
nopaste This is the outermost method called by App::Nopaste and other clients. You should not override this method, as it will (XXX: eventually) perform canonicalization of arguments (such as "lang") for you. run args -> (OK, message) This is the outermost method you should override. You'll be passed a hash of arguments. The only arguments you should pay attention to are: text The body of text to paste. desc A short (one-line) summary of the paste. nick The name of the person performing the paste. chan The IRC channel to which the paste belongs. lang The programming language of the body of text. private If false, the paste will be public (default). get mech, args This should "get" the form to paste using the provided WWW::Mechanize object. By default it does just that. See "uri" below. uri If you only need to call "mech->get(uri)" then you may define this method to provide the URI of the nopaste service. fill_form mech, args This should have the WWW::Mechanize fill in the form using the arguments, and submit it. return mech, args This should look at "WWW::Mechanize->content" to find the URI to the pasted text. AUTHOR
Shawn M Moore, "<sartak at gmail.com>" perl v5.14.2 2011-08-22 App::Nopaste::Service(3pm)