Questions tagged [aws-cloud9]

AWS Cloud9 is a cloud-based integrated development environment (IDE) that lets you to write, run, and debug code from any machine with just a browser. The Cloud9 IDE provides the software and tooling needed for dynamic programming languages including JavaScript, Python, PHP, Ruby, Go, and C++.

285 questions
0
votes
1 answer

Cannot Install / Use MySQL on Amazon Cloud9 Free Account

I'm trying to run MySQL commands on a free account with Amazon Cloud9 and I cannot get it to work anyhow. I've tried all the commands I've found on the internet, including mysql-ctl install, mysql-ctl start and mysql-ctl cli - all of them result in…
sherlaimov
  • 29
  • 1
  • 5
0
votes
1 answer

Does using AWS Cloud9 costs?

I am starting to use AWS Cloud9, I created an environment and played a little bit with the editor but I haven't seen any notice that says if it costs. Is this service free?
Arturo Aviles
  • 179
  • 4
  • 16
0
votes
0 answers

AWS Cloud9 unable to connect Internet after Official Docs. What is the best practice?

I'm trying to deploy and run an AWS Lambda function from Amazon's new **Cloud9* cloud IDE. https://aws.amazon.com/cloud9/ After setting up my Cloud9 account and running a sample Lambda function from a template I've got an error message: …
franchb
  • 1,174
  • 4
  • 19
  • 42
0
votes
0 answers

Cloud9 AWS CLI - how to determine CIDR for security group?

I'm using Cloud9 IDE and AWS CLI to manage EC2 instances. I'm going through the AWS guidance on configuring security groups and trying to determine what CIDR I should use when creating a new security group…
Declan
  • 448
  • 10
  • 27
-1
votes
1 answer

Getting error when calling .JSON file in AWS Cloud9 for DynamoDB table, Python

Environment: AWS Cloud9, Dynamodb, Tables, .json files, Python. I am trying to call a .json file with the command aws dynamodb batch-write-item --request-items file://TestCLI/Sensors.json This json file is trying to create multiple items within a…
-1
votes
1 answer

Python error using S3: Not such file or directory

Environment = AWS-Cloud9 and using s3 buckets. I am trying to do an Upload_file command to upload a simple .txt file from my local Desktop to one of my s3 buckets and the outcome is: "FileNotFoundError: [Errno 2] No such file or…
Dreed66
  • 25
  • 1
  • 5
-1
votes
1 answer

AWS Serverless Web App for a theme park Cloud 9 error

While trying to push the downloaded code to populate your recently created CodeCommit repository i got this error:fatal: unable to access 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/theme-park-frontend/': The requested URL returned…
Nick
  • 1
  • 1
-1
votes
1 answer

In idiomatic Bash with the AWS CLI, how would one 'create' an AWS resource and then 'wait' (get-/describe-) said resource for a given state?

I want to understand the idiomatic Bash (ie the Bash equivalent of 'Pythonic') way with the AWS CLI to create an AWS resource (say an AWS Cloud9 EC2 environment) and then 'poll'/'wait'/'sleep' for that resource to reach a certain state; when the AWS…
-1
votes
1 answer

Trigger AWS Cloud9 to run when file is uploaded to a S3 Bucket

I have a .py file with code in a AWS Cloud9 environment. I want to run this code when a file is uploaded to a specific S3 Bucket. But, it seems that I only can have triggers with AWS Lambda functions. I don't know how to add triggers to the AWS…
U13-Forward
  • 69,221
  • 14
  • 89
  • 114
-1
votes
1 answer

playing a mp3 in AWS cloud9

Hello I am trying to play sound files via a Python script on Amazon AWS Cloud9. If I upload the file I can play it by double-clicking on it. I tried installing playsound library but I get a missing gi library error when I try to use it. Does anyone…
-1
votes
1 answer

6999 Segmentation fault - C++

This is my code : #include using namespace std; #define MAX 5 The structure is defined : struct Stack{ int data[MAX]; int top; }; Checks whether the stack is full : bool isFull(int tmpTop){ return…
-1
votes
2 answers

fetch not working result is undefined in Node.js

I am running a webhook to pull and process data from seller.tools api. I am trying to call their api with a fetch using node-fetch. When I am testing it in the cloud9 ide, to transfer it to aws-lambda, anyway I try and grab the result it comes as…
Robert Fiola
  • 1
  • 1
  • 3
-1
votes
1 answer

In cloud9 IDE, text in terminal cannot correctly be selected to copy, the position is actually on the left

This is where I choose: Actually, I select this: How to fix this, or it's just a bug?
朱家佑
  • 11
  • 3
-1
votes
3 answers

AngularJs project throws error angular not defined

I am working on a simple application of AngularJs. I use cloud9 as an Ide and install Angular through bower in my project, but still get an error "angular not defined" in my .js file. Here is my code please help me. index.html
-4
votes
1 answer

What is the difference between metrics, logs and events in AWS CloudWatch?

Under CloudWatch there are events and logs. Why is there a need to send logs from ec2 to cloudWatch?
1 2 3
18
19