Application Center Usage - ac loadbalance permissions

This is Interesting: Free IT Magazines  
Home > Archive > Application Center Usage > February 2005 > ac loadbalance permissions





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author ac loadbalance permissions
John

2004-07-28, 6:09 pm

Hi,
I'm trying to create a ASP.NET app that does loadbalancing via the internet. I'm basically using the System.Diagnostics.Process class to run "ac.exe".

[code]
// this page is sitting on the cluster i'm trying to loadbalance
Process proc = new Process();
proc.StartInfo.FileName = "ac";
proc.StartInfo.Arguments = @"loadbalance /member:<member> /offline /y /user:<domain/user> /password:<password>
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.ErrorDialog = true;
proc.Start();
[/code]
which results in the error:
Access is denied. (0x80070005)

I've tried everything from giving the ASPNET account full access to "ac.exe" to making it a server admin (temporarily for testing purposes). Anyone have any ideas on how I can get this tow work?

Thanks!
--
John
egghead

2005-02-10, 5:09 pm

Hey John,

Did you ever figure this out? i am having the same problem.

E.

quote:
Originally posted by John
Hi,
I'm trying to create a ASP.NET app that does loadbalancing via the internet. I'm basically using the System.Diagnostics.Process class to run "ac.exe".

[code]
// this page is sitting on the cluster i'm trying to loadbalance
Process proc = new Process();
proc.StartInfo.FileName = "ac";
proc.StartInfo.Arguments = @"loadbalance /member:<member> /offline /y /user:<domain/user> /password:<password>
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.ErrorDialog = true;
proc.Start();
[/code]
which results in the error:
Access is denied. (0x80070005)

I've tried everything from giving the ASPNET account full access to "ac.exe" to making it a server admin (temporarily for testing purposes). Anyone have any ideas on how I can get this tow work?

Thanks!
--
John

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com