Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在WASP服务器中启用调试模式。在哪里可以设置或找到 WASP 服务器的远程调试端口?还需要找出tail log文件的方法。我尝试了 tomcat 命令,但它们没有用。
server.sh您可以从文件中找到调试端口号。转到服务器的 wasp 文件夹,然后在 bin 文件夹中server.sh file就会出现。为了在调试模式下运行服务器,请通过 killall -9 java命令杀死黄蜂服务器中的所有进程。
server.sh
server.sh file
killall -9 java
使用以下命令重启服务器
./serverstart.sh -debug > output.log 2>&1 &
日志文件在 bin 文件夹中创建,output.log.
output.log
使用以下命令跟踪日志文件。
tail -f output.log