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
Munin::Node::Service(3pm)				User Contributed Perl Documentation				 Munin::Node::Service(3pm)

NAME
Munin::Node::Service - Methods related to handling of Munin services SYNOPSIS
my $services = Munin::Node::Service->new(timeout => 30); $services->prepare_plugin_environment; if ($services->is_a_runnable_service($file_name)) { $services->fork_service($file_name); } METHODS
new my $services = Munin::Node::Service->new(%args); Constructor. All arguments are optional. Valid arguments are: "servicedir" The directory that will be searched for services. "defuser", "defgroup" The default uid and gid that services will run as. Service-specific user and group directives (as set by the service configuration files) will override this. "timeout" The default timeout for services. Services taking longer than this to run will be killed. Service-specific timeouts will (as set in the service configuration files) will override this value. is_a_runnable_service my $bool = $services->is_a_runnable_service($file_name); Runs miscellaneous tests on $file_name in the service directory, to try and establish whether it is a runnable service. list my @services = $services->list; Returns a list of all the runnable services in the directory. prepare_plugin_environment $services->prepare_plugin_environment(@services); Carries out various tasks that plugins require before being run, such as loading service configurations and exporting common environment variables. export_service_environment $services->export_service_enviromnent($service); Exports all the environment variables specific to service $service. change_real_and_effective_user_and_group $service->change_real_and_effective_user_and_group($service); Changes the current process' effective group and user IDs to those specified in the configuration, or the default user or group otherwise. Also changes the real group and user IDs if the operating system supports it. On failure, causes the process to exit. exec_service $service->exec_service($service, [$argument]); Replaces the current process with an instance of service $service in $directory, running with the correct environment and privileges. This function never returns. The process will exit(2) if the service to be run failed the paranoia check. fork_service $result = $service->fork_service($service, [$argument]); Identical to exec_service(), except it runs the service in a subprocess. If the service takes longer than the timeout, it will be terminated. Returns a hash reference containing (among other things) the service's output and exit value. (See documentation for run_as_child() in Munin::Node::Service for a comprehensive description.) perl v5.14.2 2013-11-12 Munin::Node::Service(3pm)