Hello all,<br><br>my load balancer seems now working and it does the fail over. I have now issue with https. I added the VIP in piranha interface both for port 80 and 443 and added REAL server in these VIPs. I then opened port 80 and 443 on active router (I am not sure if port 443 require to open as client actually connects to port 80 ). Then I added VIP address on Real server and  configure apache to listen on port 443. I have a virtual section in REAL server as below:<br>
<br><br><VirtualHost <a href="http://192.168.1.3:80">192.168.1.3:80</a>><br>        ServerName mytest<br>        DocumentRoot /var/www/html/test<br>        CustomLog /var/log/test_access_log combined<br>        AddDefaultCharset UTF-8<br>
        Redirect Permanent / <a href="https://piranhatest.com/">https://piranhatest.com/</a><br></VirtualHost><br><br><VirtualHost <a href="http://192.168.1.1:443">192.168.1.1:443</a>><br>        ServerName <a href="http://piranhatest.com">piranhatest.com</a><br>
        DocumentRoot /var/www/html<br>        AddDefaultCharset UTF-8<br></VirtualHost><br><br>I have all the certtificate and required configuration in ssl.conf for 443. But it does not work and complain that I do not have virtualhost for <a href="http://192.168.1.3:443">192.168.1.3:443</a>. If i do not add this virtualhost for <a href="http://192.168.1.3:443">192.168.1.3:443</a>, ipvsadm -L do not even list the real server of 443. 192.168.1.3 is my real server and 192.168.1.1 is my VIP.<br>
<br>How does Piranha handles this ? does the Real server eth0 and eth0:1 has to be configured on port 443 ? or is there something in configuration I can do so the lvs listen on port 80 and redirect to one of the Real server then serve sties with RS VIP interface ? I am getting confused. <br>
<br>All I am trying to now is I have a site obviously users connects with port 80 but I would like to redirect to 443 /https port and I want to do this with my piranha setup. Any hint would be appreciated.<br><br>Khapare<br>