惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
T
Threatpost
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
月光博客
月光博客
V
Visual Studio Blog
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Recorded Future
Recorded Future
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
Hacker News: Ask HN
Hacker News: Ask HN
SecWiki News
SecWiki News
博客园 - Franky
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News | PayPal Newsroom
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
W
WeLiveSecurity
The Last Watchdog
The Last Watchdog
Cloudbric
Cloudbric
F
Full Disclosure
The Cloudflare Blog
Y
Y Combinator Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
S
Schneier on Security
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
L
LINUX DO - 热门话题
AI
AI
N
News and Events Feed by Topic
T
Tor Project blog
P
Palo Alto Networks Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog

Cloud9

没有信用卡如何注册 cloud9 - V2EX 有免费的类似于 cloud9 的服务么 Cloud9 把默认 terminal 换成 zsh 的正确姿势是什么? - V2EX 想要自己做一个类似 Cloud9 的 Docker 镜像,需要安装哪些东西? - V2EX cloud9 建立的 Hosted 项目,怎么把代码下载下来? - V2EX c9.io 我这里访问太慢了, 有没有访问速度快一点的, 国内有没有类似的服务. - V2EX Cubieboard全志A10 Armv7安装Cloud9出错,求助求助~貌似是libxml2-dev的问题 - V2EX 有谁在windows下成功部署cloud9 IDE,能否提供协助? - V2EX 有人尝试过用cloud9开发过什么东西么? - V2EX
[求助] 在 raspberry pi 上安装了 cloud 9,本地可以打开,局域网内另外机器访问不了
jiezhi · 2015-11-12 · via Cloud9

这是一个创建于 3866 天前的主题,其中的信息可能已经有所发展或是发生改变。

按照这里在树莓派上安装好了 c9 ,执行node server.js也可以正常运行了:

➜  c9sdk git:(master) ✗ node server.js
Starting standalone
Connect server listening at http://127.0.0.1:8181
CDN: version standalone initialized /home/pi/Documents/c9sdk/build
Started '/home/pi/Documents/c9sdk/configs/standalone' with config 'standalone'!

通过lynx 127.0.0.1:8181也可以在本地正常访问,但是通过电脑访问 http://pi_ip:8181 却无法访问( ssh 可以正常连接该 pi ),我想知道到底是哪个地方没配置好么,还是打开方式不对?

PS:pi based on centos

第 1 条附言  ·  2015 年 11 月 13 日

谢谢各位,参考这里执行了如下命令:

➜  c9sdk git:(master) ✗ ./server.js -l 0.0.0.0
Starting standalone
Authentication is required when not running on localhost.
If you would like to expose this service to other hosts or the Internet
at large, please specify -a user:pass to set a username and password
(or use -a : to force no login).
Use --listen localhost to only listen on the localhost interface and
and suppress this message.

Connect server listening at http://127.0.0.1:8181
CDN: version standalone initialized /home/pi/Documents/c9sdk/build
Started '/home/pi/Documents/c9sdk/configs/standalone' with config 'standalone'!
^C%

嗯,加个用户名和密码就可以了

➜  c9sdk git:(master) ✗ ./server.js -l 0.0.0.0 -a admin:123
Starting standalone
Warning: running Cloud9 without using HTTP authentication.
Run using --listen localhost instead to only expose Cloud9 to localhost,
or use -a username:password to setup HTTP authentication

Connect server listening at http://192.168.1.184:8181
Using basic authentication
CDN: version standalone initialized /home/pi/Documents/c9sdk/build
Started '/home/pi/Documents/c9sdk/configs/standalone' with config 'standalone'!
cache /home/pi/Documents/c9sdk/build/standalone/skin/default/dark.css
wrapping module lib/architect/architect
wrapping module async
wrapping module smith
wrapping module vfs-socket/consumer

在另外的机器可以访问啦啦

zeacev

1

zeacev      2015 年 11 月 12 日 via Android

我就想知道这东西怎么在 Linux 下安装成功, Ubuntu 和 CentOS 下装了不下十次都莫名其妙不成功

kendetrics

2

kendetrics      2015 年 11 月 12 日

防火墙,或者路由器开了内网隔离

shunia

3

shunia      2015 年 11 月 12 日   ❤️ 1

127.0.0.1? 是不是应该指定 0.0.0.0:8181

shunia

4

shunia      2015 年 11 月 12 日

另外现在这东西是不是叫 ace 啦?

JJaicmkmy

5

JJaicmkmy      2015 年 11 月 12 日 via iPad   ❤️ 1

三楼正解,应该监听 0.0.0.0

iloveayu

6

iloveayu      2015 年 11 月 12 日 via Android   ❤️ 1

@shunia +1 127.0.0.1 只能本机访问