Forum Discussion
Mick_O_Rourke_6
Nimbostratus
Jul 17, 2012Monitoring ASM memory usage
Hi DevCentral,
- We hit a major issue recently where our ASM ran out of memory;
- The result was a major Sev1 where the whole boxed slowed to a crawl, during the event CPU and mem...
Trevor_Lee_9409
Nimbostratus
Mar 13, 2007The way that I do it is the following:
Irule:
when HTTP_REQUEST {
HTTP::redirect "https://www.domain.com/"
}
I then have two Virtual Servers. One for HTTP(port 80) and one for HTTPS(port 443), both have the same IP address. Then apply the above iRule to the HTTP virtual server, and it works fine.
Let me know if you need any clarification.
Trevor.
- tonio_tian_1127May 13, 2005
Nimbostratus
has anyone done this before and maybe supply some code? help oh help !! - unRuleY_95363May 13, 2005Historic F5 AccountOk, I can only see one potential issue. Tcl is very picky about where the opening brace '{' is after an if statement. The Tcl syntax requires it to be on the same line as the if. We attempted to relax this requirement, however, we didn't account for whitespace that may follow the if line. So, first try modifying your rule so that the opening brace '{' starts at the end of the line.
- tonio_tian_1127May 15, 2005
Nimbostratus
thanks for you read my of a kind english and reply !!!