如何将扭矩和 html 结合起来,例如 ncbiblast 服务?
我使用 php 将作业提交给 Torque (pbs),它(torque)生成输出为: “该帐户目前无法使用。”
我认为它引用了运行 httpd(apache) 的帐户 apache是一个“/sbin/nologin”帐户
我想要的只是制作一个可以将作业提交到pbs并获取结果的html。 这个方法是否错误,我没有找到其他解决方案(可能是我不知道要谷歌哪个关键字)。
感谢您的帮助,
我在这里找到了解决方案: http://geertvandeweyer.zymichost.com/index.php?page=read& ;id=9
在调试阶段,setenforce 0、setenforce 1可能有助于调试(有时audit.log更新慢,需要执行“setenforce 0;setenforce 1;”) setebool -Pallow_httpd_mod_auth_pam 1 可能有帮助
I use php to submitted a job to torque (pbs), and it(torque) generate output as:
"This account is currently not available."
I think it reference to account which runs httpd(apache)
apache is a "/sbin/nologin" account
All I want is to make a html which can submit jobs to pbs and get the result.
Is this method wrong, I didn't found other solution(may be I don't know which keyword to google).
Thanks for help
I found a solution here:
http://geertvandeweyer.zymichost.com/index.php?page=read&id=9
During debug phrase, setenforce 0, setenforce 1 may help debugging (some time audit.log update slow, need do "setenforce 0;setenforce 1;")
setsebool -P allow_httpd_mod_auth_pam 1 may help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用MAUIwitchTorque,您可以为用户配置不同的权限(在maui.cfg中)。
您可以定义:
ADMIN1 - 允许参数 ADMIN1 下列出的用户执行任何调度功能。他们可以完全控制调度程序并访问所有数据。
ADMIN2 - 参数 ADMIN2 下列出的用户可以更改所有作业属性,并有权访问所有信息性 Maui 命令。有效值包括用户名或关键字“ALL”。
ADMIN3 - 参数 ADMIN3 下列出的用户可以访问所有信息性 maui 命令。他们无法更改调度程序或作业属性。有效值包括用户名或关键字“ALL”。
http://www.adaptivecomputing.com/resources/docs/maui/a .esecurity.php
If you are using MAUI witch Torque, you can configure users with different permissions (in maui.cfg).
You can define:
ADMIN1 - users listed under the parameter ADMIN1 are allowed to perform any scheduling function. They have full control over the scheduler and access to all data.
ADMIN2 - users listed under the parameter ADMIN2 are allowed to change all job attributes and are granted access to all informational Maui commands. Valid values include user names or the keyword 'ALL'.
ADMIN3 - users listed under the parameter ADMIN3 are allowed access to all informational maui commands. They cannot change scheduler or job attributes. Valid values include user names or the keyword 'ALL'.
http://www.adaptivecomputing.com/resources/docs/maui/a.esecurity.php