Tomcat 启动失败,且标识符无效
我的 tomcat 6.0.18 在一台服务器上运行没有问题。 使用完全相同的设置,它无法在我同事的计算机上启动。 他甚至从与我相同的文件夹运行(当他试图使其工作时,我已经停止了我的副本)
当我们使用 bin/startup.sh 启动 tomcat 时,我们得到的是:
CATALINA_OPTS=-server -Xms768m -XX: +UseParallelGC -Xmx768m -XX:MaxPermSize=256m -XX:PermSize=128m -Djava.awt.headless=true: 不是标识符
我在 setenv.sh 中有该定义并将其移动到启动中。 sh - 同样的问题。
有什么建议么? 我在谷歌上的简短查看似乎表明有多个IP地址问题,但我的服务器有两个以太网卡和两个IP地址。
谢谢。
I have tomcat 6.0.18 running on one server without a problem. With the exact same settings it fails to launch on my colleague's machine. He's even running from the same folder as me (I've stopped my copy while he tries to make it work)
All we get when we fire off tomcat using bin/startup.sh is this:
CATALINA_OPTS=-server -Xms768m -XX:+UseParallelGC -Xmx768m -XX:MaxPermSize=256m -XX:PermSize=128m -Djava.awt.headless=true: is not an identifier
I had that definition in setenv.sh and moved it into startup.sh - same problem.
Any suggestions? My brief look on google seem to indicate multiple IP address issues, but my server has two ethernet cards, and two IP addresses.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个 shell 脚本而不是 Tomcat 问题。 正确的方法是:
您的同事可能使用与您不同的 shell。
This is a shell script and not a Tomcat problem. The correct way to do it is:
Your colleague is probably using a different shell than you.
那里没什么可继续的。 CATALINA_OPTS 的值不应该被引用吗?:
除此之外,
和/或安装了任何应用程序?
实际的java进程?
Not much to go on there. Shouldn't the value of CATALINA_OPTS be quoted?:
Other than that
and/or any applications installed?
the actual java process?