I have done a setup for automation deployment using team-city and octopus. it is successfully deploying to required servers but I need to load balance as well. Any idea how can I combine them together. Or any other best option for performing load balancing with octopus.
How to use web farm framework and octopus deployment
826 Views Asked by sam At
2
There are 2 best solutions below
0
John Hoerr
On
We use the Application Request Routing extension for IIS to provide load balancing for our WFF-based farm. ARR requires an additional 'front-end' IIS server which acts as a reverse proxy for your 'back-end' application servers. It works a treat, and we've been really happy with it.
Related Questions in TEAMCITY
- Installing Teamcity build agent as a user: failed to install the service. selected account does not have enough rights
- How to define WIX agent requirement in TeamCity?
- Linking TeamCity 8.0.5 to MySQL
- TeamCity create arbitrary directory structure on agent
- Running Windows Forms Application with TeamCity
- Backup strategy for build tool hosted on Azure VM
- Xcode 6 archive process does not fire pre/post/build phase script for auto build increment
- How to fetch the Value of Teamcity Configuration in java?
- Team City pending changes for specific build configuration is not as per default branch
- How to build Xamarin.Mac application from command line or build script
- How does one create a branch in TeamCity for multiple VCS configurations?
- TeamCity - Create Project From URL
- Is there deployment trigger for teamcity?
- MSBuild12 on a machine with only VS2015
- Have teamcity checkout on build agent machine
Related Questions in NUGET-PACKAGE
- ASP.NET 5 Class Library - Nuget package Web.Config transform
- How to add Project Reference in asp.net 5 application
- Nexus Nuget Repository List Version Information
- Manage NugetPackage for Solution can't find any online packages
- How to create a powershell script that triggers a NuGet Update-Package –reinstall?
- Regenerate NuGet repositories.config manually
- Xamarin adding NuGet package
- Guarantee same version of nuget packages
- How do I host Nuget Gallery in my own Azure website?
- how to create nuspec file in specific folder?
- How can I clear the NuGet package cache using the command line?
- drag and drop metro control to windows form does not work in visual studio 2013
- What is different between nuget.org and "Microsoft and .NET" in Online Section of Manage Nuget Packages
- pushing nugetGallery to windows azure website getting error: The OutputPath property is not set for project 'NuGetGallery.csproj'
- Visual Studio 2010 NuGet package manager console: Nothing happens on pressing enter
Related Questions in WEB-FARM-FRAMEWORK
- Windows Server AppFabric Web Farm with NLB
- SSL Offloading with Application Request Routing - How can I make application aware of the secure connection?
- Adding server (with port) to IIS web farm from command line
- IIS 7 , WebFarm and ARR module
- Issue provisioning IIS 7.5 server using Web Farm Framework 2
- Automated application provisioning and file locking
- OpenIddict The token request was rejected because the authorization code or the refresh token was invalid
- IIS Multiple Server Farm Configuration?
- How to synchronize runtime upload files in a web farm?
- Could we use Web Farm Framework 2.2 to create a server farm on windows server 2012?
- Memory Mapping File C# in Web Farm
- Multiple child web applications with seperate app pools in iis
- Application Request Routing: Why some sites return HTTP 404 some don't?
- Is there any documentation for the RegKey provider for Web Farm Framework?
- Setting up web farm for DNN 6.2.6 CE with multiple file servers
Related Questions in OCTOPUS-DEPLOY
- TFS 2013 with Octopus Deploy, Email Template - Resolved Bugs/User Stories
- Octopack for .Net 2.0 and msbuild 2.0
- Octopack is not packing when using custom nuspec file
- TFS Build tag git branch with build number
- Add Binding To IIS With PowerShell Without Overwriting Existing
- Does Octopus Deploy talk to any other repos ( like maven, npm) other than nuGet?
- configuring click once app in Octopus deploy with mage.exe, change publish url and app.config
- Is there a way to package an ASP.NET Core app, using NuGet or otherwise?
- How do I add the job status (success or failure) in the email notification?
- How to build single nuget package for multiple projects in a solution
- Octopus Deploy uses a snapshot of deployment until I create a new release
- Powershell job with alternate credentials from Octopus Deploy
- SQLite.Interop.dll not getting picked up by OctoPack
- OctoPack for deployment packaging all web.config files
- TFS build definition associated commits
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Octopus can tie into your load balancing solution, but it will not perform load balancing.
Most enterprise applications use a hardware network load balancing appliance. For example F5's Big-IP product line. You can also create a software solution like John Hoerr suggested.
Once you have a solution in place you can then script Octopus to automate configuring your load balancer in a way that meets you business needs.