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++.
Questions tagged [aws-cloud9]
285 questions
2
votes
1 answer
How to use redis modules such as ft.search in aws elastic cache redis?
We all know that AWS elastic cache provides two caching processes one is MEMECACHED and another one is REDIS .
So now I am using REDIS and want to use REDIS search module according to my requirement .How can I use it in AWS?
I have created REDIS…

Prashanth
- 21
- 3
2
votes
1 answer
Unable to preview running app in CodeCatalyst Dev Environment
I am trying to develop a React app in a Code Catalyst Cloud9 based Dev Environment. I am able to run npm start to run the development server at localhost:8080 but cannot find any way to preview the running app.
In a regular Cloud9 instance there's…

Jud
- 1,158
- 1
- 8
- 17
2
votes
1 answer
ActionDispatch::HostAuthorization::DefaultResponseApp Blocked host: xxxxxx.herokuapp.com
Updating Ruby on Rails to Ruby 3.1.2 and Rails 7.0.4 - I have it running in my IDE (development) - getting a HTTP ERROR 403 page on Heroku, a light grey screen with a reload button. Can anyone tell me what I have messed up?
Access to…

Jeremy Gradisher
- 115
- 11
2
votes
2 answers
Why won't my remote connection through SSH work when using an SSM proxy to connect to AWS Cloud9 EC2 instance in VS Code?
I am unable to get a connection working using this ssm-proxy.sh script to remote connect to AWS Cloud9 from Visual Studio Code. I am following this article on how to use AWS Cloud9 to power my Visual Studio Code IDE. I am able to connect by SSH but…

Anthony
- 317
- 1
- 5
- 23
2
votes
0 answers
How to add a language syntax to AWS Cloud9
I'm trying to add the Lilypond language syntax to AWS Cloud9.
In my searching, I've found ajaxorg/ace/tool and textmate/lilypond.tmbundle on Github.org
I've tried cloning both repositories and I've run:
$ npm install
$ node add_mode.js Lilypond…

Okomikeruko
- 1,123
- 10
- 22
2
votes
2 answers
Instal Scrapy on PythonAnywhere? (or Cloud9)
Can I run Scrapy on the free level of PythonAnywhere? I've looked, but haven't found instructions for installing it there.
If it can't be run on the free level of PythonAnywhere, is there another online environment where I can run Scrapy without…

NewSites
- 1,402
- 2
- 11
- 26
2
votes
3 answers
AWS CDK: Uploaded file must be a non-empty zip
I have written a simple hello world lambda function to deploy but after the command cdk deploy it is giving this error. Can someone please guide about this?

Sameer
- 103
- 2
- 10
2
votes
1 answer
AWS Cloud9 on Graviton Terminal Spinning
I decided to try to run Cloud9 on an ARM server ("Graviton"). I created an EC2 t4g.medium instance and a key, made sure I could SSH into it as expected (no problem), and then created a Cloud9 SSH environment. It mostly seemed to install without…

Charles Sullivan
- 21
- 3
2
votes
2 answers
How to delete repo on AWS Cloud9?
Recently started working with AWS Cloud9 and ran into problem how to delete/remove local repository from a list.
GUI allows many actions by click, but remove repository is not one of them.
How do i remove repository from sourcecontrol panel?

Mikhail Sokolov
- 31
- 3
2
votes
1 answer
AWS copilot on Cloud9 InvalidClientTokenId: The security token included in the request is invalid (status code: 403)
On Execution of command below from AWS Cloud9
copilot app delete
Getting message as :
execute svc delete: delete service: delete stack demoappone-test-lbdemoappone: InvalidClientTokenId: The security token included in the request is invalid
…

Pawan Mude
- 1,609
- 6
- 19
- 32
2
votes
0 answers
Locally importing, editing, and debugging Lambda Functions with the AWS Toolkit for Cloud9
AWS Cloud9 is making an update to its UI. They removed a tab called "AWS Resources" which allowed you to import and upload changes to your lambda functions. It also would create a
When enabled, AWS Toolkit replaces the AWS Resources window for…

Matt M
- 67
- 1
- 8
2
votes
1 answer
Cloud9 Angular & NodeJS unable to access API running on different port of same machine
I am using an AWS cloud9 IDE for my project.
I have Angular running on port 8080. I have my NodeJS (+Express) server running on port 8081.
I have CORS headers setup in my Node app.js as following:
const app =…

wO_o
- 181
- 3
- 13
2
votes
3 answers
Cannot read property 'name' of null node
Schema
var campgroundSchema = new mongoose.Schema({
name: String,
image: String,
description: String,
_id: String
});
var Campground = mongoose.model("Campground", campgroundSchema);
app.get("/campgrounds/:id",function(req ,…

Nitin Priyadarshi
- 58
- 8
2
votes
0 answers
AWS Cloud9 application not running on different ports
I'm developing a node.js application on AWS Cloud9 environment.I'm using express to run a local server.I have installed express version 4.17.1 and using node version 10.6.3.I want to run or preview my application on port 8081 or 8082 but it isn't…

Vaibhav
- 49
- 1
- 4
2
votes
2 answers
Why is my java spring project running in AWS Cloud9 shutting down after running a while?
I'm trying out a few things with the free tier of AWS.
I have a 3rd party server running on a Windows instance, a mySQL db running on RDS, and I'm running a spring app from within Cloud9 on a linux instance, which calls both those other…

user26270
- 6,904
- 13
- 62
- 94