Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Setting up webpasswordsafe
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Anastasios Ksouzafeiris  
View profile  
 More options Aug 30 2012, 7:36 am
From: Anastasios Ksouzafeiris <anastasis.ksouzafei...@gmail.com>
Date: Thu, 30 Aug 2012 04:36:28 -0700 (PDT)
Local: Thurs, Aug 30 2012 7:36 am
Subject: Setting up webpasswordsafe

Hello people, i am trying to install webpasswordsafe but it fails and the
administrators guide is not good written and enough illustrative.
Have you any tutorial about this with a better analysis and maybe step by
step ?

Regards,


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
KPC  
View profile  
 More options Aug 30 2012, 8:12 am
From: KPC <mrpugs...@gmail.com>
Date: Thu, 30 Aug 2012 05:12:04 -0700 (PDT)
Local: Thurs, Aug 30 2012 8:12 am
Subject: Re: Setting up webpasswordsafe

Hi Anastasios

The instructions that Josh has provided are actually quite good, however it
does assume some Maven / J2E / MySQL experience due to the added security.  
I've deployed this on one of my company's Linux servers, however I was
thinkning about building this just on an XP machine in a test environment.  
If I get time I'll write a detailed step-by-step document and post it up.

Regards

On Thursday, August 30, 2012 12:36:28 PM UTC+1, Anastasios Ksouzafeiris
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Anastasios Ksouzafeiris  
View profile  
 More options Aug 31 2012, 10:15 am
From: Anastasios Ksouzafeiris <anastasis.ksouzafei...@gmail.com>
Date: Fri, 31 Aug 2012 07:15:31 -0700 (PDT)
Local: Fri, Aug 31 2012 10:15 am
Subject: Re: Setting up webpasswordsafe

Thank's a lot KPC, I am looking forward for your guide.. I hope you will
find time to do it. If you do it, don't forget to notice me .. :)

On Thursday, August 30, 2012 2:36:28 PM UTC+3, Anastasios Ksouzafeiris
wrote:

> Hello people, i am trying to install webpasswordsafe but it fails and the
> administrators guide is not good written and enough illustrative.
> Have you any tutorial about this with a better analysis and maybe step by
> step ?

> Regards,

Best regards,

Anastasios Ksouzafeiris


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Josh  
View profile  
 More options Aug 31 2012, 4:55 pm
From: Josh <joshdrumm...@gmail.com>
Date: Fri, 31 Aug 2012 13:55:40 -0700 (PDT)
Local: Fri, Aug 31 2012 4:55 pm
Subject: Re: Setting up webpasswordsafe

Which step are are you having problems with Anastasios?

On Thursday, August 30, 2012 4:36:28 AM UTC-7, Anastasios Ksouzafeiris
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil E.  
View profile  
 More options Sep 20 2012, 8:38 am
From: "Neil E." <ndeldri...@gmail.com>
Date: Thu, 20 Sep 2012 05:38:10 -0700 (PDT)
Local: Thurs, Sep 20 2012 8:38 am
Subject: Re: Setting up webpasswordsafe

I agree with
 Anastasios Ksouzafeiris - the instructions are very vague. For example:

"Verify Java Servlet Container installed properly, optionally Web Server
also installed properly and forwarding appropriate requests to container,
and SSL enforcement is configured properly."

It's like saying "How to build a car: Take some metal, bend it and add 4
wheels. Done."

I'm new to Tomcat/Apache communicating with eachother and something a
little more specific would be nice, even if it was to name a couple of
config files...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Darin Perusich  
View profile  
 More options Sep 20 2012, 10:15 am
From: Darin Perusich <da...@darins.net>
Date: Thu, 20 Sep 2012 10:15:05 -0400
Local: Thurs, Sep 20 2012 10:15 am
Subject: Re: [webpasswordsafe] Re: Setting up webpasswordsafe
Install apache and install/enable mod_jk, mod_ssl, and mod_rewrite (to
force redirect to https). Adjust the following paths as needed for
your installation.

1. Create worker.properties in apache conf dir containing:
worker.list=tomcat6
worker.tomcat6.port=8009
worker.tomcat6.host=localhost
worker.tomcat6.type=ajp13

2. mod_jk config (this is one possible configuration)
   <IfModule mod_jk.c>
    JkMount /* webpasswordsafe
   <Directory "/srv/tomcat6/webpasswordsafe/">
       Options Indexes FollowSymLinks
     allow from all
   </Directory>
   # The following line prohibits users from directly accessing WEB-INF
   <Location "/WEB-INF/">
       #AllowOverride None
       Deny from all
   </Location>
   </IfModule>

3. mod_rewrite config (optional, assumes you've configure ssl)
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule  ^/(.*)    https://%{SERVER_NAME}/$1 [L,R=301]

--
Later,
Darin


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil E.  
View profile  
 More options Sep 20 2012, 10:27 am
From: "Neil E." <ndeldri...@gmail.com>
Date: Thu, 20 Sep 2012 07:27:12 -0700 (PDT)
Local: Thurs, Sep 20 2012 10:27 am
Subject: Re: [webpasswordsafe] Re: Setting up webpasswordsafe

Darin,

Thanks very much for that - I'm going to try it now :)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil E.  
View profile  
 More options Sep 21 2012, 5:19 am
From: "Neil E." <ndeldri...@gmail.com>
Date: Fri, 21 Sep 2012 02:19:47 -0700 (PDT)
Local: Fri, Sep 21 2012 5:19 am
Subject: Re: [webpasswordsafe] Re: Setting up webpasswordsafe

I'm getting closer but getting two issues:

1. I can access it ok directly in Tomcat but get a session timeout error:
I can hit http://hostname:8080/WebPasswordSafe BUT it just keeps coming up
with a looping "Session Timeout - Please login again" message, no matter
how many times I click OK. (There's no login box to type a u/pass).

2. I've created workers.properties, included it in httpd.conf and added the
mod_jk config you gave but it doesn't look like apache is forwarding the
requests to tomcat. mod_jk is definitely loaded, but if I try hitting
http://hostname/WebPasswordSafe it just gives me a http 404. Do I need to
create a virtualhost, Alias...? I've tried:
* Changing DocumentRoot to /opt/tomcat/webapps (Tomcat's installed in
/opt/tomcat) and /opt/tomcat/webapps/WebPasswordSafe and hitting
http://hostname to no avail...
* I noticed your JkMount said 'webpasswordsafe', which is not the name of
the specified worker so tried changing JkMount to:
JkMount /* worker1
JkMount /WebPasswordSafe/* worker1
and a few others to no avail.

If you could please shed some light on this it would be greatly
appreciated!!

Thanks,

Neil.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neil E.  
View profile  
 More options Sep 21 2012, 5:31 am
From: "Neil E." <ndeldri...@gmail.com>
Date: Fri, 21 Sep 2012 02:31:03 -0700 (PDT)
Local: Fri, Sep 21 2012 5:31 am
Subject: Re: Setting up webpasswordsafe

I'm attaching my config file, I'm sure you could spot the mistake straight
away...

My workers.properties files:

workers.tomcat_home=/opt/tomcat
workers.java_home=/usr/java/default
worker.list=worker1
worker.tomcat6.port=8009
worker.tomcat6.host=localhost
worker.tomcat6.type=ajp13

Thanks,

Neil.

  httpd.conf.txt
35K Download

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »