1756194 Members
2403 Online
108843 Solutions
New Discussion юеВ

https connection.

 
Davis Paul
Valued Contributor

https connection.

Hi all,
I can connect my server by http://192.168.52.2:8081/Browserweb/Servlet/BroserSevlet/Webserver
The thing is that I want to use 'https' instead of http. Please tell me, what are the points I need to check on UNIX side. My OS is HP UX B.11.23.

Davis Paul
7 REPLIES 7
Jeeshan
Honored Contributor

Re: https connection.

if you have SSL encryption with http you can use https.
a warrior never quits
Jeeshan
Honored Contributor

Re: https connection.

Davis Paul
Valued Contributor

Re: https connection.

Dear Ashan,
How can I check whether I have SSL encryption with http or not?
Kenan Erdey
Honored Contributor

Re: https connection.

Hi,

you must change webserver configuration so that it serves with ssl. if your server runs apache, search for "apache ssl configuration".

Kenan.
Computers have lots of memory but no imagination
Ralph Grothe
Honored Contributor

Re: https connection.

Hi Paul,

as already answered by the others
first of all the webserver must have been enabled to serve over SSL.
The standard port for SSL web content is 443/tcp but it may have been configured to serve on any other port.

If you have installed the OpenSSL library packet (often on an SSL enabled Apache webserver this is the case) then you could use the client command of the openssl tool to check whether the server is SSL enabled like e.g.

$ openssl s_client -connect 192.168.52.2:8081
Madness, thy name is system administration
Davis Paul
Valued Contributor

Re: https connection.

Hi,
Openssl is installed. See the out put of the command.

#openssl s_client -connect 192.168.52.2:8081
CONNECTED(00000003)

What is to be done next??
Davis Paul
Valued Contributor

Re: https connection.

closed