Re: Install openssl without root rights

2010-09-28 Thread Kyle Hamilton
First, check to see that you're not able to have root rights via
'sudo'.  If you can, you can just install it as a package.  If you
can't...

Use './config --prefix=$HOME' (or whatever you want the installation's
root to be), set 'export
LD_LIBRARY_PATH=$HOME/ssl/lib:$HOME/lib:$LD_LIBRARY_PATH' in your
~/.profile or ~/.bash_profile script, and 'make install' when you're
ready to go.  Get ready to compile everything you need to use the
library yourself.  You will also need to use --with-ssl=$HOME with
most autoconf-generated configure scripts.

You can avoid setting LD_LIBRARY_PATH by linking everything
statically, but I don't recommend it.

(For additional information about issues you will likely encounter,
and the meaning of the LD_LIBRARY_PATH variable as well as important
caveats on its use, see the manpages for ld.so(1) and ldconfig(8).)

-Kyle H

On Mon, Sep 27, 2010 at 11:57 PM, fabermundi  wrote:
>
> Hello,
> I have to install openssl on a Computer with openSUSE where I don't have any
> root rights.
> Is this possible? How?
>
> Thanks in advance
> --
> View this message in context: 
> http://old.nabble.com/Install-openssl-without-root-rights-tp29825759p29825759.html
> Sent from the OpenSSL - User mailing list archive at Nabble.com.
> __
> OpenSSL Project                                 http://www.openssl.org
> User Support Mailing List                    openssl-us...@openssl.org
> Automated List Manager                           majord...@openssl.org
>
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: Install openssl without root rights

2010-09-28 Thread Kenneth Goldman
It depends what you mean by 'install'. 

You can certainly install it under your home directory and use it or link 
to it.  I often do that when testing with a new version.

If you want to install it in a standard place like e.g. /usr/lib, then you 
need rights to write that directory, often root rights.

owner-openssl-us...@openssl.org wrote on 09/28/2010 02:57:59 AM:

> From: fabermundi 

> I have to install openssl on a Computer with openSUSE where I don't have 
any
> root rights.
> Is this possible? How?


Re: Install openssl without root rights

2010-09-28 Thread Jakob Bohm

On 28-09-2010 08:57, fabermundi wrote:


Hello,
I have to install openssl on a Computer with openSUSE where I don't have any
root rights.
Is this possible? How?

Thanks in advance


Step 1: Compile it yourself from source.

Step 2: During compilation and install, install to your own home dir, 
not to /usr (requires root rights) or /usr/local (requires root or staff 
rights).


Step 3: Whenever using/linking to OpenSSL, you must explicitly refer
to the folders in your home dir (~/bin, ~/lib, ~/include etc.) where
you installed it.  For instance gcc will need to be invoked with the
extra options
   -I~/include -L~/lib -Wl,-rpath=~/lib
when compiling code against OpenSSL.

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: Install openssl

2009-02-20 Thread Database System

Hi Victor,

Thank you so much for your valuable information. I will as our admin about the 
openSSL with our Linux.

Lisa

--- On Fri, 2/20/09, Victor B. Wagner  wrote:

> From: Victor B. Wagner 
> Subject: Re: Install openssl
> To: openssl-users@openssl.org
> Date: Friday, February 20, 2009, 2:52 AM
> On 2009.02.19 at 12:38:27 -0800, Database System wrote:
> 
> > 
> > Hi,
> > 
> > I'm new to openSSL/SSL. I downloaded the file. It
> is 
> 
> If you are new  to openSSL, it is better to use version
> which is
> provided by your Linux distribution. Every linux
> distribution out there
> already includes OpenSSL, and applications which require
> SSL support are
> already compiled with it.
> 
> Only if you are absolutely sure, that version provided by
> your
> distribution is too old for your needs, you should bother
> with compiling 
> OpenSSL under Linux.
> 
> > openssl-0.9.8j.tar.tar and I want to use it on Linux.
> But I think 
> > it doesn't mater of which version on my question. 
> 
> > 
> > What I need to do next? Do I need to compile it? what
> compiler and command?
> 
> Unpack the archive. There is file named INSTALL in the top
> level
> directory. All the installation instructions are in this
> file.
> 
> > Is there any instructions for creating certificate
> after compile it?
> 
> Typically, OpenSSL user doesn't create certificates.
> User creates
> certificate request, and send it to Certification
> Authority. 
> Authority creates certificate. Of course, OpenSSL allows
> you to run
> your own CA. But it is a bit more complicated thing.
> 
> Your linux distribution probably contain some scripts which
> simplify
> creation of certificate request. For example, RedHat/Fedora
> has
> crypto-utils package, which contains nice interactive
> genkeys script.
> 
> 
> >Or any How to step by step...?
> 
> This is a big problem. Most of howtos I'm aware of are
> outdated or even
> completely disappear from web. Documentation included in
> the OpenSSL
> distribution is pure reference, which doesn't outline
> whole picture. 
> You have to know a lot of things before you can use this
> documentation
> effectively.
> 
> There is also O'Reilly book "Securing applications
> with OpenSSL".
> But I haven't read it so don't know if it suites
> you.
> 
> __
> OpenSSL Project
> http://www.openssl.org
> User Support Mailing List   
> openssl-users@openssl.org
> Automated List Manager  
> majord...@openssl.org


  
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


RE: Install openssl

2009-02-20 Thread Mark
> There is also O'Reilly book "Securing applications with OpenSSL".
> But I haven't read it so don't know if it suites you.

If you mean "Network Security with OpenSSL" then this is a good basic
starter
to OpenSSL, but it does not contain everything you need to know.

AFAIK there is no single source that has all the information that you
need.

Mark.

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: Install openssl

2009-02-20 Thread Victor B. Wagner
On 2009.02.19 at 12:38:27 -0800, Database System wrote:

> 
> Hi,
> 
> I'm new to openSSL/SSL. I downloaded the file. It is 

If you are new  to openSSL, it is better to use version which is
provided by your Linux distribution. Every linux distribution out there
already includes OpenSSL, and applications which require SSL support are
already compiled with it.

Only if you are absolutely sure, that version provided by your
distribution is too old for your needs, you should bother with compiling 
OpenSSL under Linux.

> openssl-0.9.8j.tar.tar and I want to use it on Linux. But I think 
> it doesn't mater of which version on my question. 

> 
> What I need to do next? Do I need to compile it? what compiler and command?

Unpack the archive. There is file named INSTALL in the top level
directory. All the installation instructions are in this file.

> Is there any instructions for creating certificate after compile it?

Typically, OpenSSL user doesn't create certificates. User creates
certificate request, and send it to Certification Authority. 
Authority creates certificate. Of course, OpenSSL allows you to run
your own CA. But it is a bit more complicated thing.

Your linux distribution probably contain some scripts which simplify
creation of certificate request. For example, RedHat/Fedora has
crypto-utils package, which contains nice interactive genkeys script.


>Or any How to step by step...?

This is a big problem. Most of howtos I'm aware of are outdated or even
completely disappear from web. Documentation included in the OpenSSL
distribution is pure reference, which doesn't outline whole picture. 
You have to know a lot of things before you can use this documentation
effectively.

There is also O'Reilly book "Securing applications with OpenSSL".
But I haven't read it so don't know if it suites you.

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: install openssl remote on linux

2008-12-30 Thread Ger Hobbelt
E, what's the web server software? Apache 2? Something else?

In case of Apache v1 or v2, you very probably want to 'install'
mod_ssl and then you need to install your server cert and pkey as
well. Broadly speaking, that means you need access to the Apache
config files at least, which is not webroot, at least not in my
perception of what 'webroot' is (root dir of all web content (HTML
files and such) and what is 'one above': is that '../' relatively
speaking? Are all the httpd config files sitting there, or are they in
/etc/httpd/ or in /... ? --> check distro manual for selected web
server).

Location of the Apache config files may differ slightly for each
(Linux) distribution, and then, of course, the above only regards
Apache 1 and 2 but there are many more web servers out there; each
with their own setup/requirements, just like on Windows. ;-)

Hence: best is to take this up with the linux server maintainer/admin
and/or check vendor/distro manuals.

Bottom line: most often, OpenSSL is already on there somewhere -- it's
a library plus tools -- and you need to install the server
extension/add-on/whatchammacallit which enables SSL functionality
within the web server; then you need to configure the web server
itself to actually offer SSL (HTTPS) connectivity, i.e. configure port
443 (open firewall too?), install the proper CA and server certificate
files and server private key, and none of that should reside within
the same space where you have your web content.

Ger


On Mon, Dec 29, 2008 at 2:55 PM, miek  wrote:
> Hi,
>
>
>
> I'm new to openssl and need to install it on a remote linux server. Of
> course I don't have access to all server folders, only one above webroot.
>
> Firstly I'd like to know if this is possible, and second, how to install.
>
> I have downloaded the files from http://www.devside.net/guides/linux/openssl
> but haven't found out how to install this remote.
>
> Is there an installer for linux like the one for windows? Or maybe you can
> refer to a manual for situations like this…?
>
>
>
> Thanks for any help!
>
> regards,
>
> Miek
>
>



-- 
Met vriendelijke groeten / Best regards,

Ger Hobbelt

--
web:http://www.hobbelt.com/
http://www.hebbut.net/
mail:   g...@hobbelt.com
mobile: +31-6-11 120 978
--
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: install openssl remote on linux

2008-12-29 Thread Kyle Hamilton
If you have access to the C compiler (most web hosts do not grant
this), you can install it with the
'--prefix=/filesystem/path/to/where/you/want/the/sslroot/to/be' option
to ./config.

If you do not, then you can compile the binary under a VMware virtual
machine at home (do not use the 'shared' configuration-time option)
and upload it to your web host.  This may or may not violate your
webhost's policies, so you should double check them before you do so.

Usually, Linux distributions include openssl, or at least include the
C compiler, so there's generally no need to pre-compile it as an
installation package.

-Kyle H

On Mon, Dec 29, 2008 at 5:55 AM, miek  wrote:
> Hi,
>
>
>
> I'm new to openssl and need to install it on a remote linux server. Of
> course I don't have access to all server folders, only one above webroot.
>
> Firstly I'd like to know if this is possible, and second, how to install.
>
> I have downloaded the files from http://www.devside.net/guides/linux/openssl
> but haven't found out how to install this remote.
>
> Is there an installer for linux like the one for windows? Or maybe you can
> refer to a manual for situations like this…?
>
>
>
> Thanks for any help!
>
> regards,
>
> Miek
>
>
:��I"Ϯ��r�m
(Z+�K�+1���x��h[�z�(Z+���f�y���f���h��)z{,���

Re: install openssl from source while rpm is their on RHEL 4

2008-02-07 Thread cdemel
Thanks

installed successfully and linked /usr/bin/openssl to new openssl under
/usr/local/ssl
so far applications seems to be running without an issue.
previously their was an issue with installing the open ssl rpm for
0.9.8while it removed
libraries which sendmail had a major dependency.

thanks and hope it will cork continuously

best regards

cdemel

On Feb 8, 2008 9:50 AM, <[EMAIL PROTECTED]> wrote:

> Hello,
> > will install accordingly and hope to move the original /usr/bin/openssl
> to some other
> > name and  to make a soft link to the 0.9.8g binary.
> >
> > appreciate any concerns on this.
> If you want to use many versions of OpenSSL you may define --prefix
> as /usr/local/openssl-VERSION, for example:
>--prefix=/usr/local/openssl-0.9.8g
> Then, feature/past versions may be installed in its own directory and you
> be able to switch between them.
>
> Best regards,
> --
> Marek Marcola <[EMAIL PROTECTED]>
>
> __
> OpenSSL Project http://www.openssl.org
> User Support Mailing Listopenssl-users@openssl.org
> Automated List Manager   [EMAIL PROTECTED]
>


Re: install openssl from source while rpm is their on RHEL 4

2008-02-07 Thread Marek . Marcola
Hello,
> will install accordingly and hope to move the original /usr/bin/openssl 
to some other 
> name and  to make a soft link to the 0.9.8g binary.
> 
> appreciate any concerns on this.
If you want to use many versions of OpenSSL you may define --prefix
as /usr/local/openssl-VERSION, for example:
--prefix=/usr/local/openssl-0.9.8g
Then, feature/past versions may be installed in its own directory and you
be able to switch between them. 

Best regards,
--
Marek Marcola <[EMAIL PROTECTED]>

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   [EMAIL PROTECTED]


Re: install openssl from source while rpm is their on RHEL 4

2008-02-07 Thread cdemel
Thanks

will install accordingly and hope to move the original /usr/bin/openssl to
some other name and  to make a soft link to the 0.9.8g binary.

appreciate any concerns on this.

Best Regards

cdemel


On Feb 7, 2008 9:26 PM, <[EMAIL PROTECTED]> wrote:

> Hello,
> > I have a red hat ES 4 64 bit version installed server with
> openssl-0.9.7a-43.8 rpm installed.
> > i need to install the openssl 0.9.8g from the source.
> > If I use default prefix whcih is /usr/local/ssl to install config files
> and all default
> > config options
> > Will it remove any of the libraries which the previous server has
> installed ? or will
> > it install all components inside --prefix directory.
> "make install" will install libraries inside --prefix
>
> Best regards,
> --
> Marek Marcola <[EMAIL PROTECTED]>
>
> __
> OpenSSL Project http://www.openssl.org
> User Support Mailing Listopenssl-users@openssl.org
> Automated List Manager   [EMAIL PROTECTED]
>


Re: install openssl from source while rpm is their on RHEL 4

2008-02-07 Thread Marek . Marcola
Hello,
> I have a red hat ES 4 64 bit version installed server with 
openssl-0.9.7a-43.8 rpm installed.
> i need to install the openssl 0.9.8g from the source.
> If I use default prefix whcih is /usr/local/ssl to install config files 
and all default 
> config options
> Will it remove any of the libraries which the previous server has 
installed ? or will 
> it install all components inside --prefix directory.
"make install" will install libraries inside --prefix 

Best regards,
--
Marek Marcola <[EMAIL PROTECTED]>

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   [EMAIL PROTECTED]


Re: install openssl from source while rpm is their on RHEL 4

2008-02-06 Thread cdemel
Hi

I have a red hat ES 4 64 bit version installed server with
openssl-0.9.7a-43.8 rpm installed.
i need to install the openssl 0.9.8g from the source.
If I use default prefix whcih is /usr/local/ssl to install config files and
all default config options
Will it remove any of the libraries which the previous server has installed
? or will
it install all components inside --prefix directory.


mostly appriciate your help on this

cdemel


RE: INSTALL OPENSSL

2001-11-12 Thread Prathaban Selvaraj
Title: RE: INSTALL OPENSSL





 Look for a file called 'Install.W32' on your root directory. It contains the Win32 install instructions.


 -P


-Original Message-
From: Francisco Castillejo [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, November 11, 2001 12:28 PM
To: [EMAIL PROTECTED]
Subject: INSTALL OPENSSL


Hi,
i'm new in openssl world XD. I don't know how install openssl in windows.
Can anyone help me?
Sorry, my english is horrible.
Thanks


__
OpenSSL Project http://www.openssl.org
User Support Mailing List    [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]





Re: Install openssl-0.9.5a library - root access?

2001-04-14 Thread Jason Aras


Yes, you simple build with the prefix set to something like ~/ or
~/openssl.  Then you just have to make sure you link to the right
location, and have the dynamic linker preload, or gcc link in useing the
new directory.

--jason

On Fri, 13 Apr 2001, David Jourard wrote:

> Hi,
> 
> Can the openssl-0.9.5a library be installed for a virtual host without root 
> access on a BSDI system.
> 
> Thanks
> David
> __
> OpenSSL Project http://www.openssl.org
> User Support Mailing List[EMAIL PROTECTED]
> Automated List Manager   [EMAIL PROTECTED]
> 

__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: install openssl in win98?

2001-02-21 Thread manjunath gv

hello

 hey yes openssl can be installed on win98 and
u check file install.w32 for help

bye
--- qianz <[EMAIL PROTECTED]> wrote: > Does the
openssl can be install in win98?
> If yew,how to install?
> 
> Thanks.
> 
> Tony Cheung
> 
>
__
> OpenSSL Project
> http://www.openssl.org
> User Support Mailing List   
> [EMAIL PROTECTED]
> Automated List Manager  
[EMAIL PROTECTED]



Do You Yahoo!?
Get your free @yahoo.co.in address at http://mail.yahoo.co.in
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Install OpenSSL on Windows NT

1999-02-25 Thread Ulf Möller

>Of course you need to have a compiler to use it, and if you plan to
>produce something to run with Windows, you'd better have a Visual C++

For many purposes Mingw32 (a port of GNU C++ which uses the Microsoft
C runtime system that is shipped with each copy of Windows) is at
least as good as Visual C++.

You can certainly use OpenSSL with Mingw32, and with a few patches
that have been posted recently, Mingw can also be used to compile
OpenSSL.

-- 
"Daß jedermann lesen lernen darf, verdirbt auf die Dauer nicht allein
das Schreiben, sondern auch das Denken."  --  Friedrich Nietzsche
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Install OpenSSL on Windows NT

1999-02-25 Thread Stephan Bauer

Hi Patrick,

Patrick Stalder wrote:
> 
> Hi,
> 
> We have a server with WindowsNT 4.0 (SP4) and Perl 5.004_2 installed. We
> have tried to install OpenSSL on this server, but it doesnt work. To
> build the libraries, it is necessary to have a Visual C++ Compiler on
> the system?

Yes it is.

> Where can I find more informationen for the installation on a windows
> platform?
> 

Take a look at the mod_ssl-Package. There you can find a file
named "Install.Win32.txt" with the appropriate steps.
mod_ssl you can find at http://www.engelschall.com .
At least this one did it for me.

Ciao,

Stephan

> Thanks for your help
> 
> Patrick Stalder
> 
> __
> OpenSSL Project http://www.openssl.org
> User Support Mailing List[EMAIL PROTECTED]
> Automated List Manager   [EMAIL PROTECTED]

-- 
--
Tel : +49 89 92699114
Fax : +49 89 92699226
mail: [EMAIL PROTECTED]
www : http://www.ecrc.de

Cable & Wireless ECRC GmbH
--
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Install OpenSSL on Windows NT

1999-02-25 Thread Erwann ABALEA

On Thu, 25 Feb 1999, Patrick Stalder wrote:

> We have a server with WindowsNT 4.0 (SP4) and Perl 5.004_2 installed. We
> have tried to install OpenSSL on this server, but it doesnt work. To
> build the libraries, it is necessary to have a Visual C++ Compiler on
> the system?
> Where can I find more informationen for the installation on a windows
> platform?

OpenSSL is a development library, it's not a magical item that you just
have to plug in your Windows environment to turn your machine into a
secure vault

Of course you need to have a compiler to use it, and if you plan to
produce something to run with Windows, you'd better have a Visual C++ (you
can compile the stuff with another compiler, I did it with Borland C++
Builder, but it's a real pain...).

And finally, you need to have a project in mind... Something you want to
create or adapt...

-- 
Erwann ABALEA
System and Development Engineer - Certplus SA
[EMAIL PROTECTED]
Telephone: +33 1 34 38 29 50

__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]