Skip to main content

Home/ Cloud Computing/ Group items tagged issues

Rss Feed Group items tagged

Maluvia Haseltine

Flying Instruments-Only: Legal andFlying Instruments-Only: Legal and Privacy Issues in ... - 0 views

  •  
    Law Office of Richard P. Goldberg - Legal & Privacy Issues in Cloud Computing
samantha armstrong

FixComputerpProblemsSite Surely Knows How to Fix Computer Problems! - 1 views

I was having problems with my laptop before. Good thing FixComputerpProblemsSite helped me fix it. And they are really the experts when it comes to solving any computer related issues. They can eas...

fix computer problems cloud CloudComputing cloud computing amazon AWS Computing it google ec2 Development

started by samantha armstrong on 07 Jun 11 no follow-up yet
shai edrote

They Helped Me With My PC Issues - 1 views

I need computer help and I really need it fast! I am in the middle of doing something important on my laptop when it suddenly froze up and shut down. I do not know what is wrong. All I know is that...

need computer help

started by shai edrote on 12 Sep 11 no follow-up yet
Mike Gahms

Cloud Computing with Advanced Security Services - 0 views

  •  
    For Secure Cloud Computing 3 main basic considerations are : Security and Privacy, Compliance and Legal Issues offered by Cloud service provider. Cloud Services allow users to instantly and wirelessly share information and data between multiple devices faster than ever with advanced security.
digitalhydcsg

Social Security Administration To Build Private Cloud - 0 views

  •  
    SSA issues request for information seeking software that would help automate the agency's IT processes and create a self-service portal.
Alex Popescu

Cloud Pricing and Application Architecture - 0 views

  •  
    I have been giving a lot of thought lately to cloud pricing. As an adviser to companies from both sides of the issue -- cloud (IaaS and PaaS) providers and cloud users (and potential users) -- I've had an interesting...
Stian Danenbarger

Gellman: "Privacy in the Clouds: Risks to Privacy and Confidentiality from Cloud Comput... - 0 views

  •  
    This report discusses the issue of cloud computing and outlines its implications for the privacy of personal information as well as its implications for the confidentiality of business and governmental information. [...] The World Privacy Forum is a non-profit public interest research and consumer education group.
Rich Hintz

cloud_cube_model_v1.0.pdf (application/pdf Object) - 0 views

  •  
    aim of this paper is to: - point out that not everything is best implemented in clouds; it may be best to operate some business functions using a traditional non-cloud approach - explain the different cloud formations that the Jericho Forum has identified - describe key characteristics, benefits and risks of each cloud formation - provide a framework for exploring in more detail the nature of different cloud formations and the issues that need answering to make them safe and secure places to work in
Alex MIkhalev

2009: Dynamic Asterisk Scalability with Amazon EC2 - 0 views

  •  
    Absolutely brilliant example. Imagine dynamic scalable VOIP infrastructure.
  •  
    Asterisk, a somewhat resource consuming application is considered not fitting for Amazon EC2 structures. This talk will discuss the various issues related to creating dynamically extending platforms, using Asterisk, Amazon EC2, Amazon S3 and some web mesh-ups.
Rich Hintz

Cloud Computing Poses E-Discovery, Legal Risks - 0 views

  • Cloud Computing Poses E-Discovery, Legal Risks April 10, 2009By Marty Foltyn ORLANDO, Fla. — Cloud computing was a hot topic at this week's Storage Networking World show, but one attorney sounded a warning note about the rush to the cloud. In a presentation titled "Computing (strike that — Litigation) in the Cloud," Steven Teppler, senior counsel at KamberEdelson in New York, said cloud computing and services are a corporate counsel's nightmare. The 2006 e-discovery amendments to the Federal Rules of Civil Procedure (FRCP) changed the legal and corporate information landscape, putting custody and control at top of mind. "Cloud computing means that data may always be in transit," said Teppler, "never anywhere, always somewhere." And that creates a big challenge for corporate counsel. How can they identify "who, when and where" in the cloud? How can organizations handle document retention? And to add another layer of worry, information targeted for the cloud may also be subject to laws requiring privacy and persistent data integrity, and other requirements that the storage manager may not even be aware of. Teppler spelled out the top cloud computing shortcomings: no native security attributes; inadequate or no security provisioning by providers; the lack of understanding of cloud legal issues (a real problem for not only cloud computing providers, but also corporate counsel and IT consultants); and the failure to recognize potential liability from either legal issues or a lack of security. Teppler told the audience that litigation in the cloud is already here. Users of cloud services will need to insist on service level agreement (SLA) terms with their providers to ensure legal and regulatory compliance, searchability, demonstrable customer care (security), provably persistent data integrity and reliability, and demonstrable storage security and integrity for electronically stored information in the cloud.
DJHell .

OpenSocial in the Cloud - OpenSocial - 0 views

  • Apps can grow especially fast on social networks, so before you launch your next social app, you should think about how to scale up quickly if your app takes off.
  • Unfortunately, scaling is a complex problem that's hard to solve quickly and expensive to implement.
  • If this app grows to serve millions of users and photos, shared hosting or even a dedicated server won't have the bandwidth or CPU cycles to handle all of the requests. We could invest in more servers and network infrastructure, shard the database, and load-balance requests, but that takes time, money, and expertise. If you'd rather work on the new features of the app, it's time to move into the cloud.
  • ...9 more annotations...
  • It's important to focus on the interactions between the app and your server when designing an application that will run in the cloud. If we standardize the communication protocol and data format, we can easily change the server side implementation without modifying the OpenSocial app.
  • You can configure the makeRequest method to digitally sign the requests your app makes to your server using OAuth's algorithm for parameter signing. This means that when your server receives a request, it can verify that the request came from your application hosted in a specific container. To implement this, the calls to makeRequest in the OpenSocial app spec XML specify that the request should be signed, and the code that handles requests on the server side verifies that a signature is included and valid
  • When our server receives a request, we can verify that it came from our application by checking that the digital signature was signed by a valid container and that the application ID is correct.
  • Since our server isn't storing any relationship data, the app will need to send us a list of user IDs so we can fetch the appropriate photos.
  • Although it's outside the scope of this article, we could provide a mechanism for our OpenSocial app to request a one-time-use token that it would include in the request to upload a photo.
  • Note that the post data is URL-encoded in the request so the post method uses urllib.unquote before splitting the comma-separated list of person IDs.
  • Since the server doesn't store any relationship data, the PhotosHandler class checks the post data of the request for a list of IDs from the container.
  • A common misconception when coding in the cloud is that storage space, CPU cycles, and bandwidth are unlimited. While the cloud hosting provider can, in theory, provide all the resources your app needs, hosting in the cloud ain't free so these resources are limited by your budget. Luckily, OpenSocial provides several mechanisms to cache images and data that will reduce the load on your server.
  • In addition to reducing traffic to our server, this technique has the added benefit of being fast—requesting data from the Persistence API is much faster than making the round trip to your server.
  •  
    Some OpenSocial apps can be written entirely with client-side JavaScript and HTML, leveraging the container to serve the page and store application data. In this case, the app can scale effortlessly because the only request hitting your server is for the gadget specification which is typically cached by the container anyway. However, there are lots of reasons to consider using your own server: * Allows you to write code in the programing language of your choice. * Puts you in control of how much application data you can store. * Lets you combine data from users on multiple social networks. * Enables interaction with the OpenSocial REST API. Setting up an OpenSocial app that uses a third party server is fairly simple. There are a few gotchas and caveats, but the real issues come up when your app becomes successful - serving millions of users and sending thousands of requests per second. Apps can grow especially fast on social networks, so before you launch your next social app, you should think about how to scale up quickly if your app takes off. Unfortunately, scaling is a complex problem that's hard to solve quickly and expensive to implement. Luckily, there are several companies that provide cloud computing resources-places you can store data or run processes on virtual machines. These computing solutions manage huge infrastructures so you can focus on your applications and let the "cloud" handle all the requests and data at scale. This tutorial focuses on a simple photo-sharing app that uses a third-party server to host photos and associated metadata. If this app is going to host millions of images and support many requests per second, we won't be able to run it on a single dedicated host. We'll break the app down and analyze the interactions between the OpenSocial App and the back end server. Then we'll implement the app in the cloud, first using Google App Engine, then leveraging Amazon's S3 data storage service. Finally, we'll look at s
Alex MIkhalev

Reservoir: Project Deliverables - 0 views

  •  
    Everyone interested in cloud computing reports and documentation should start here. It is much better then wide spread McKinseys "report".
  •  
    The first issue of the RESERVOIR Architecture document - June 2008.
digitalhydcsg

Malcolm Turnbull issues cloud computing guides for small business post by SmartCompany - 0 views

  •  
    Federal Communications Minister Malcolm Turnbull has released a series of guides for small businesses looking to use cloud-based services.
shalani mujer

They Effectively Fixed My laptop - 2 views

I love to surf the internet using my laptop, then one day it just stopped running. I did not know what to do since the blue screen error did not disappear though I have tried rebooting my laptop. ...

PC technical support

started by shalani mujer on 10 Nov 11 no follow-up yet
cecilia marie

Best Shield Against Computer Viruses - 1 views

I have always wondered why my files are often corrupted and to think that I have installed an antiVirus software. I always scan my external disks each time I insert them in my unit. It was only lat...

virus protection

started by cecilia marie on 04 Nov 11 no follow-up yet
Olivia Grey

Get IT Support Services From C7 Data Centers for Your Large Business Colocation - 2 views

  •  
    Facing issues to manage your large data? C7 Data Centers supports your data infrastructure with their set of outsourced IT support services. They are assisting with a wide variety of desktop, server, networking, storage expertise and solving a wide range of IT problems. C7's IT Services team is the perfect choice to help you architect, support and monitor your data infrastructure.
Balaji Ramamoorthy

Rackspace Cloud 'Drizzle' into Open Source Software - ServerWatch.com - 0 views

  •  
    "We've had issues with scaling MySQL in a multi-tenant environment like ours, so we've been looking at other database options and have been looking at Drizzle for over a year," Jonathan Bryce, co-founder of the Rackspace Cloud, told InternetNews.com.
Kelly Hair

Cloud security: Feds on cusp of change -- Federal Computer Week - 0 views

  • Virtualization has been setting the stage for many of these issues for years, he said, but “what cloud computing is forcing us to look at is the survivability of systems…and protecting the data,” Hoff said. “While I hear the perimeter is going away [as a security approach], I disagree; it’s multiplying and the diameter is contracting,” Hoff said. “You’re going to outsource responsibility, but not accountability. So we need open standards and better visibility.”
  •  
    Interesting view on depermeterisation. Hoff's view is that the protected assets are in smaller clumps and still have a perimeter.
1 - 20 of 33 Next ›
Showing 20 items per page