From fc465cba97da3001ae4cb975ac1b56d6164c2b47 Mon Sep 17 00:00:00 2001 From: Brady Dowling Date: Tue, 27 Jan 2015 21:06:43 +0000 Subject: [PATCH] Added FAQ about SSHing into workspace --- recentFiles.json | 2 +- src/faq/faq_general.md | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/recentFiles.json b/recentFiles.json index d20e0ab..ac935a5 100644 --- a/recentFiles.json +++ b/recentFiles.json @@ -1 +1 @@ -[{"filename":"frameworks_wordpress","mtime":1421859765000,"pageTitle":"Getting Started with Wordpress"},{"filename":"deploying_code","mtime":1421769253000,"pageTitle":"Deploying Your Code"},{"filename":"java_runner","mtime":1421769253000,"pageTitle":"Java Runner"},{"filename":"frameworks_jekyll","mtime":1421769253000,"pageTitle":"Framework: Jekyll"},{"filename":"deploying_via_cli","mtime":1421769253000,"pageTitle":"Deploying via the Command Line"}] \ No newline at end of file +[{"filename":"setting_up_postgresql","mtime":1422392332000,"pageTitle":"PostgreSQL"},{"filename":"frameworks_wordpress","mtime":1421859765000,"pageTitle":"Getting Started with Wordpress"},{"filename":"deploying_code","mtime":1421769253000,"pageTitle":"Deploying Your Code"},{"filename":"java_runner","mtime":1421769253000,"pageTitle":"Java Runner"},{"filename":"frameworks_jekyll","mtime":1421769253000,"pageTitle":"Framework: Jekyll"}] \ No newline at end of file diff --git a/src/faq/faq_general.md b/src/faq/faq_general.md index 2511b32..864e59e 100644 --- a/src/faq/faq_general.md +++ b/src/faq/faq_general.md @@ -1,19 +1,19 @@ # FAQ: General ### Can I use FTP workspaces on Cloud9? -Yes, Cloud9 supports FTP workspaces that allow you to edit your files directly on your FTP server. +Yes, Cloud9 supports FTP workspaces that allow you to edit your files directly on your FTP server. Currently FTP workspaces still open in the old version of Cloud9, but soon we'll also support FTP workspaces with the new version of Cloud9. One thing that was removed for reliability reasons in the new version of Cloud9, is the ability to deploy over FTP from a regular workspace. We're bringing back those features in a new format and with much higher reliability in the coming months. -### How do I deploy to Heroku/Openshift/Azure/...? +### How do I deploy to Heroku/Openshift/Azure/...? See [Deploying via CLI](./deploying_via_cli.html). -### Can I connect to SMTP servers (port 25)? +### Can I connect to SMTP servers (port 25)? No, this is not supported by our hosting platform. It does currently allow access to the GMail servers though, so you can use that service during development. -### My workspace says it's out of quota. how do I fix it? +### My workspace says it's out of quota. how do I fix it? You can inspect your current quota usage with the df command in the Terminal: $ df @@ -30,10 +30,10 @@ Alternatively, try `du-c9` for seeing all files you added to your workspace and You can sign into Cloud9 with your github or bitbucket account and set that up to use two-factor authentication. We don't currently provide an option to directly setup your Cloud9 account for two-factor authentication. -### I can't preview my running app. +### I can't preview my running app. Try using port 8080 instead, which often solves this case. -### EADDRINUSE: My app complains that the address/port is in use +### EADDRINUSE: My app complains that the address/port is in use Applications won't start if another application is already listening to the same port. In order to fix it you first need to find out which process that is: $ netstat -nlp | grep $PORT @@ -59,8 +59,8 @@ ensures maximum portability. To open these files, you can use something like ## How can I share a single directory of a private workspace -Sometime you might want others to open a file or directory in the browser -without opening up the whole workspace. This can be done by starting a small +Sometime you might want others to open a file or directory in the browser +without opening up the whole workspace. This can be done by starting a small http server in that directory and make sure that the running application is public. To make the running application public you have to click the "sharing" button at @@ -70,3 +70,7 @@ To run the server open a terminal and do $ cd /dir/i/want/to/share $ python3 -m http.server 8080 + +## How do I SSH into my workspace? + +At the moment, users cannot SSH into their Cloud9 workspaces. You may setup an SSH workspace which will access the files on another SSH server but you cannot SSH into your workspace from another machine.