项目作者: Arc-Jung

项目描述 :
Connect AWS Cloud9 guide.
高级语言:
项目地址: git://github.com/Arc-Jung/aws-cloud9-linux-connect-guide.git
创建时间: 2020-06-22T13:59:41Z
项目社区:https://github.com/Arc-Jung/aws-cloud9-linux-connect-guide

开源协议:

下载


Connect at AWS Cloud 9 IDE with all Linux OS

Hits

First Commit 2020-06-21 Arc-Jung

Connect and run in remote server (SSH) with all Linux OS

  1. Connect SSH to instance and Insert bash command.
    1. sudo apt-get install --fix-broken
    2. sudo apt-get update
    3. sudo apt-get upgrade
    4. sudo apt-get install nodejs
    5. sudo apt-get install nodejs-legacy
  2. Login to AWS Console.
  3. Select Cloud9.

  1. Insert Cloud9 IDE environment name with rule For example insert PROJECT_ADMIN_CLOUD9.
  2. Rule is PROJECTNAME_PURPOSE_SERVICENAME.
  3. Insert USERNAME and HOST IP.

  1. You are need to add our public key to your instance ~/.ssh/authorized_keys file to select AWS Console Cloud9 button of copy key to SSH key.
  • If you want another directory setting to install your project directory. Insert directory path at Cloud9 console hidden setting.

  1. Select connect button Cloud9 in AWS console.
  2. Wait 5 minutes while checking the command answering the question.
  3. Use Cloud9 on all Linux OS. For example is Ubuntu, CentOS etc…
  4. But Cloud9 user permission will be denied. Insert bash command. YOUR DIR is your environment setting.
  1. sudo adduser ubuntu
  2. sudo groupadd cloud9
  3. sudo usermod -a -G cloud9 ubuntu
  4. sudo chown -R ubuntu:cloud9 /<YOUR DIR>
  5. sudo chmod -R 2775 /<YOUR DIR>
  1. If you have any questions, please write an issue.