Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用demo.sh admin和config 都启动了,但portal无法起来,而且portal下面也没日志文件,8070端口也没起来 #23

Open
lmzhizhe opened this issue May 11, 2019 · 12 comments
Labels

Comments

@lmzhizhe
Copy link

使用demo.sh admin和config 都启动了,但portal无法起来,而且portal下面也没日志文件,8070端口也没起来

@nobodyiam
Copy link
Member

admin和config是前台启动的还是后台启动的?

@mattwmj
Copy link

mattwmj commented May 20, 2019

admin和config是前台启动的还是后台启动的?

我也碰到了相同的问题。

我是根据教程,执行./demo.sh start,命令行有输出,应该算是前台启动吧。

@mattwmj
Copy link

mattwmj commented May 20, 2019

admin和config是前台启动的还是后台启动的?

我也碰到了相同的问题。

我是根据教程,执行./demo.sh start,命令行有输出,应该算是前台启动吧。

我将demo.sh中的service(115行)和portal(159行)的启动命令改成如下命令能够启动:

nohup $SERVICE_JAR start --configservice --adminservice > service.output 2>&1 &

nohup $PORTAL_JAR start --portal > portal.output 2>&1 &

@nobodyiam
Copy link
Member

看看service目录下是否有apollo-service.jar和apollo-service.conf

@mattwmj
Copy link

mattwmj commented May 21, 2019

看看service目录下是否有apollo-service.jar和apollo-service.conf

存在的

@nobodyiam
Copy link
Member

apollo-service.conf这个文件指定了服务以后台方式启动的

@loupipalien
Copy link

@mattwmj 也遇到了同样的情况, ./demo.sh start 后 spring 日志打印在了控制台; 发现是因为 service/apollo-service.conf 文件格式是 dos (因为自己先 clone 到了 windows 机再放到 lunix 的), 将其转为 unix 格式后就可以了, portal 的类似问题查看 portal\apollo-portal.conf

@nobodyiam nobodyiam added the tips label Jul 6, 2019
@jeepchenup
Copy link

jeepchenup commented Sep 24, 2020

@loupipalien

之前demo.sh手动改成unix,之后没有想到,apollo-service.conf也需要这么搞,确实是这个问题引起的。Thanks~

@yuebaix
Copy link
Contributor

yuebaix commented Oct 2, 2021

应该跟我遇到的问题一样吧,如果是用windows就对了。这个项目的文件拉到windows的idea里文件会自动变成CRLF,shell解释器执行不了换行符/r/n。
解决办法就很简单:把能看到的文本文件用idea全部转成LF就好了。

@Anilople
Copy link
Contributor

Anilople commented Oct 2, 2021

应该跟我遇到的问题一样吧,如果是用windows就对了。这个项目的文件拉到windows的idea里文件会自动变成CRLF,shell解释器执行不了换行符/r/n。 解决办法就很简单:把能看到的文本文件用idea全部转成LF就好了。

d8f07fe 中,尝试修复换行符的问题

@yuebaix
Copy link
Contributor

yuebaix commented Oct 3, 2021

应该跟我遇到的问题一样吧,如果是用windows就对了。这个项目的文件拉到windows的idea里文件会自动变成CRLF,shell解释器执行不了换行符/r/n。 解决办法就很简单:把能看到的文本文件用idea全部转成LF就好了。

d8f07fe 中,尝试修复换行符的问题

我昨天也想提交这个来着- - 大神给力

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

8 participants
@nobodyiam @lmzhizhe @Anilople @loupipalien @jeepchenup @mattwmj @yuebaix and others