Enable ssl/https tls 1.2 on wamp 2.4 - wamp

Is it possible to enable tls 1.2 on wamp 2.4? how?
Or should I install something else instead of good old wamp 2.4?
I tried to add SSLProtocol -all +TLSv1.2 to my virtual host but it still doesn't work.

Related

Changing Wamp Server MySQL and mariadb port and Projects link for index.php

Changing Wamp Server MySQL and MariaDB port ?
Wamp Server version: 3.2.0
mariadb port=3306
mysql port=3308
image description here
wamp server icon right mouse click->Tools->(MariaDb) Use a port other than->3307 ok
wamp server icon right mouse click->Tools->(Mysql) Use a port other than->3306 ok
restart wamp server...
enter image description here
Projects link for index.php ?
enter image description here
index.php line:346
$projectContents .= '<li>'.$file.'</li>';
convert
$projectContents .= '<li> <a href="'.$file.'" >'.$file.'</a></li>';
Update Wamp Server version: 3.3.0
index.php line:547
... : '<li>'.$file.'</li>';
convert
... : '<li><a href="'.$file.'" >'.$file.'</a></li>';
There's a solution that just requires right-clicking on the WAMP icon, go to "Tools" and click on "Invert default DBMS MariaDB <-> MySQL", that should work. It will set MySQL as a default engine, change the port numbers for you and restart the services all by itself.
It is more efficient than the one you provided because the port number 3306 in WAMP Server is now reserved for the default MariaDB in all newer installations starting from v3.2.0. Therefore, you can no longer change the port number by selecting "Use a port other than xxxx" and you will get an error message. Even re-writing the .ini files doesn't get the job done, save the procedure I explained above.

How to change jetty port for Apache Ignite

I have a server running on port 8080 already which I can't disable, how do I change the jetty port from 8080 to something else?
I have already referred to How to set custom REST port for apache ignite when ignite is started as a service in Opendaylight apache karaf? but it's not working for me.
I am running 2.7 version of Apache Ignite
Thanks
Using Binary Distribution
ignite.sh -v -J-DIGNITE_JETTY_PORT=<port> config/config.xml
Using Maven
$JAVA_HOME/bin/java DIGNITE_JETTY_PORT=<port> -jar ignite-app-0.0.1-SNAPSHOT.jar
For more details refer this link

wamp server is not working on the windows8

I am installing wamp server 64 bit on my windows 8 system.I get following error "Application was unable to start correctly ( 0*c00007b)"
1) I have not installed the Skype
2) Port 80 is not being used by any program.
3) IIS service is not running on my system
4) I have tried re installing the wamp also
See screenshots
Following is there in C:\Windows\System32\Drivers\etc\hosts
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
127.0.0.1 localhost
127.0.0.1 localhost
127.0.0.1 localhost
127.0.0.1 localhost
How to fix this.
Even though I start wamp server the icon never turn to green.
Do I need VC++ Redistributable?
Solution
I followed shiva's answer and installed 32 bit version.
Hope some one will post correct solution for this issue.
you can install TCPView to find out that which service is using the post number 80, and close it and then run Apache(if something is using it).
alternately you can edit the httpd.conf file and change the port number ,by default it can be found at this location
C:\wamp\bin\apache\apache2.2.22\conf\httpd.conf
In it go to the line which has this entry(line 58 in WAMP server 2.4's installation)
Listen 80
and change it to something like this Listen 8080, and restart WAMP(or specifically Apache).
Now you will be able to access localhost like this
http://localhost:8080
Update 1
According to this forum post, installing 32-bit version in place of 64 bit version,solved the issue in some cases

How can I serve a Django application using the SPDY protocol?

What is the best way to serve a Django application over the SPDY [1] protocol?
[1] http://www.chromium.org/spdy
One way is to run Django on Jython with Jetty - http://www.evonove.it/blog/en/2012/12/28/django-jetty-spdy-blazing-fast/
Also, apparently nginx has some draft module for SPDY
It works with nginx > 1.5.10 and Django run as fastcgi server.
Recent versions of Chrome and Firefox dropped support for SPDY v2. So you need at least SPDY3 support on the server side. Nginx versions higher than 1.5.10 support version 3 of the protocol.
Django Mainline Installation
Currently (as of Feb 2014) Nginx > 1.5.10 is only available from the mainline branch, not from stable. On most Linux distributions, it is easiest to install mainline packages provided by the nginx project.
Nginx and Django configuration
The Django documentation explains how to run Django with Nginx through fastcgi. The configuration that is provided there can be used as a starting point.
In addition, you need SSL certificates for your host and extend the Nginx configuration in the following ways:
The listen configuration options needs to be modified to:
from listen 80; to listen 443 ssl spdy;.
You need to add basic ssl configuration options, most importantly a certificate and key.
So, both modifications combined, the configuration may look as follows:
server {
listen 443 ssl spdy;
server_name yourhost.example.com;
ssl_certificate <yourhostscertificate>.pem;
ssl_certificate_key <yourhostskey>.key;
ssl_prefer_server_ciphers on;
location / {
include fastcgi_params;
fastcgi_pass 127.0.0.1:8080;
}
}
Then run your Django as in fastcgi mode, as follows:
python ./manage.py runfcgi host=127.0.0.1 port=8080
Testing your setup
Point your browser to https://yourhost.example.com
You should be able to verify that the connection is done via SPDY in:
Chrome: Look for an active SPDY session in chrome://net-internals/#spdy
Firefox: Check the Firebug Network tab and look for the X-Firefox-Spdy:"3.1" response header.

WAMP is not running

I had installed WAMP in E: drive. I re-installed fresh copy of windows. Since then, WAMP only comes in red shade , not coming in green mode. Please help what should I do?
port 80 might be used by other services. test that using apache>services>test port 80. and disable that service.
When Windows is re-install or upgraded in-place, sometimes both the Apache and MySQL services are cleared out and the PATH environmental variable is reset.
Update the Path with the "bin" folders of Apache and MySQL.
Re-install the services...
If you are using WampDeveloper (I don't know which WAMP you are using), to install the services again it's (from the command line running as administrator):
Install Services:
httpd -k install -f "C:\WampDeveloper\Config\Apache\httpd.conf" -DSSL
mysqld --install Mysql --defaults-file="C:\WampDeveloper\Config\Mysql\my.ini"
The generic forms are:
Apache22\bin\httpd -k install
mysql5\bin\mysqld --install
If you are using Skpey exit and restart all service.
Tip:
on skype menu --> Tools --> Options --> advanced --> connection
Disable "Use port 80 and 443 as alternatives for incoming connections"