We have a website that deployed on multiple servers and works by own database (ASP.NET, .NetFramework 4)
Is there a methods or tools to update specified files (like dlls) on all servers? Note that ftp service is not available on servers. In other hand, because these server are local and in specified times, are connected to internet; We want to automate this operations
to servers update itself automatically when connect to internet.
No, this will be not possible because this is not a desktop or enduser application. What you could do is to create a Windows service which checks and makes updated on some time interval.
Regards
updateasp.net
WindowsHostingASP.NET - My favourite site for ASP.NET hosting information.
HowtoASP.NET - Free ASP.NET tutorials with examples and source code.
None
0 Points
4 Posts
Same update on multiple servers automatically
Sep 22, 2013 07:04 AM|AliReza.Pooneh|LINK
Hi all,
We have a website that deployed on multiple servers and works by own database (ASP.NET, .NetFramework 4)
Is there a methods or tools to update specified files (like dlls) on all servers? Note that ftp service is not available on servers. In other hand, because these server are local and in specified times, are connected to internet; We want to automate this operations to servers update itself automatically when connect to internet.
Thanks and sorry for my bad English!
update asp.net
Star
11650 Points
3462 Posts
Re: Same update on multiple servers automatically
Sep 22, 2013 09:31 AM|HostingASPNet|LINK
Hello,
No, this will be not possible because this is not a desktop or enduser application. What you could do is to create a Windows service which checks and makes updated on some time interval.
Regards
update asp.net
HowtoASP.NET - Free ASP.NET tutorials with examples and source code.
Member
680 Points
279 Posts
Re: Same update on multiple servers automatically
Sep 25, 2013 03:34 AM|Tear09|LINK
Hi,
I suggest that you can use the version control tool to achieve that. (You should update the code manual or you can Schedule a task to update the code) http://windows.microsoft.com/en-au/windows7/schedule-a-task
SVN is the good tool. http://tortoisesvn.net/
Thanks
update asp.net
Contributor
3390 Points
1079 Posts
Re: Same update on multiple servers automatically
Sep 27, 2013 12:55 AM|kctt|LINK
You can create a schedule task on multiple servers to copy files from one central server.
robocopy is a very usefull tool to do above task.
update asp.net