如何允许多个用户管理服务器上运行的应用程序?
我不确定标题是否有意义。很难问。
我有一个应用程序在我的网络帐户下的服务器上运行,并且计划每天运行。
我可以使用我的用户凭据远程登录并检查应用程序。
如果我希望多个人能够远程登录并检查怎么办?我可以在服务器上创建一个新帐户,但它没有网络权限,并且应用程序需要访问网络文件夹。
最好的方法是什么?
谢谢! :-)
PS 请随意编辑标签。我不知道该选什么。
I'm not sure if the title makes sense. Hard question to ask.
I have an application running on a server under my network account, and it's scheduled to run daily.
I can remote in with my user credentials and check on the application.
What if I want more than one person to be able to remote in and check it? I can create a new account on the server, but it wouldn't have network rights and the application needs access to network folders.
What would be the best approach?
Thanks! :-)
P.S. Feel free to edit the tags. I can't figure out what to pick.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您的应用程序将日志文件或状态消息写入必要的用户可以看到的位置。他们可以通过日志或输出查看状态,并且不需要访问计划任务本身。
I would recommend your application writes out log files or status messages to a place the necessary users can see. They can see the status via logs or output and don't need access to the scheduled task itself.
好吧,在 Unix 中,您可以创建一个组并将用户添加到该组中。我相当确定您可以在 Windows 服务器上执行此操作(当然,请确保该组有权执行和读取应用程序或应用程序的日志文件)
well, in Unix you'd create a group and add users to said group. I'm fairly certain you can do this on a windows server (make sure of course, that the group has permission to execute and read the app or the app's log files)