使用list-commands
,我在localhost上创建并启动了一个域;到目前为止,一切都很好。然后我尝试HTTP Status 404: The requested resource is not available.
,我得到:list-commands --localonly
如果我尝试deploy
它就可以了。我完全取下防火墙,看看是不是问题,但是没有解决它。
这不是什么大问题,因为我可以在其他地方查找命令,但是当我尝试部署WAR文件时遇到同样的错误,我猜这两个问题都是一样的原因(毕竟,#include <stdio.h>
#include <stdlib.h>
int main(int agrc,char *argv[]){
char *argv1[]={"sort","temp.txt",">", "hello.txt",NULL};
printf("hello I will sort a file\n");
execvp(argv1[0],argv1);
}
未在本地命令下列出。)
我正在使用GlassFish 4.1