Azure Web Apps : How to access specific instance directly via URL? -
we have deployed our sitecore cms on azure web apps , having indexing issues or similar. i.e. updated changes reflected users , not all.
we have scale turned on 2.
i troubleshoot accessing instance 1 , 2 directly via url make sure both instances have index built 100%.
how access each azure web role instances directly via url?
thanks.
the first step list of instance names. there azure api it, can invoke using resource explorer (https://resources.azure.com/). use these steps:
- in resource explorer, find web app (in tree or using search box)
- under app, click on instances, gives array of instances. each instance has long name
622e6b27f9077701f23789e5e512844d22a7dfdd29261bc226f65cd000e2d94a
once have instance names, can add cookie in requests aim @ specific instance setting arraffinity cookie value. e.g.
arraffinity=622e6b27f9077701f23789e5e512844d22a7dfdd29261bc226f65cd000e2d94a you can using tool curl. or use editthiscookie chrome extension (link), lets set browser.
in fact, you'll find after hitting page browser, you'll arraffinity, it's used session stickiness. chrome extension lets change , aim @ other instances.
see related blog post: http://blog.amitapple.com/post/2014/03/access-specific-instance/
Comments
Post a Comment