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
Trouble installing
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
  8 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
 
DigiAngel  
View profile  
 More options Apr 21 2012, 7:21 pm
From: DigiAngel <digital...@gmail.com>
Date: Sat, 21 Apr 2012 16:21:02 -0700 (PDT)
Local: Sat, Apr 21 2012 7:21 pm
Subject: Trouble installing
So....I've had a bit of trouble installing on Ubuntu 11.10.  I'm
following this:

https://github.com/Snorby/snorby/wiki/Ubuntu-11.10-by-Andrea-Modesto-...

I'm at this spot:

Then install Snorby by issuing:

rake snorby:setup

However, I get the below:

You have already activated rake 0.9.2.2, but your Gemfile requires
rake 0.9.2. Using bundle exec may solve this.

Anyone run into this before?  Thank you.

James


 
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.
Jason Meller  
View profile  
 More options Apr 21 2012, 10:43 pm
From: Jason Meller <jason.mel...@gmail.com>
Date: Sat, 21 Apr 2012 22:43:10 -0400
Local: Sat, Apr 21 2012 10:43 pm
Subject: Re: [Snorby] Trouble installing
Try
bundle exec rake snorby:setup
this will ensure the correct version of rake is used.

On Apr 21, 2012, at 7:21 PM, DigiAngel <digital...@gmail.com> 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.
James Lay  
View profile  
 More options Apr 22 2012, 1:54 pm
From: James Lay <digital...@gmail.com>
Date: Sun, 22 Apr 2012 11:54:16 -0600
Local: Sun, Apr 22 2012 1:54 pm
Subject: Re: [Snorby] Trouble installing
On Apr 21, 2012, at 8:43 PM, Jason Meller wrote:

That did the trick…thank you very much!

James


 
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.
James Lay  
View profile  
 More options Apr 22 2012, 2:16 pm
From: James Lay <digital...@gmail.com>
Date: Sun, 22 Apr 2012 12:16:11 -0600
Local: Sun, Apr 22 2012 2:16 pm
Subject: Re: [Snorby] Trouble installing
On Apr 22, 2012, at 11:54 AM, James Lay wrote:

I am now greeted with:

"The page you were looking for doesn't exist.
You may have mistyped the address or the page may have moved."

after following the install instructions for Ubuntu 11.10.  What's my next step in trouble shooting this?  Thanks for the assist all.

James


 
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.
Weir, Jason  
View profile  
 More options Apr 23 2012, 9:32 am
From: "Weir, Jason" <jason.w...@nhrs.org>
Date: Mon, 23 Apr 2012 09:32:32 -0400
Local: Mon, Apr 23 2012 9:32 am
Subject: RE: [Snorby] Trouble installing
James,

I had the same problem on Debian 6.0.4 - every online instructions
failed at some point - I made these up that worked for me..  Your apt
entries will be different on Ubuntu but the rest should be good...

# vi /etc/apt/sources.list

Add the following lines:

deb http://packages.dotdeb.org squeeze all
deb-src http://packages.dotdeb.org squeeze all

Install the dotdeb GnuPG key:

# cd /usr/src && wget http://www.dotdeb.org/dotdeb.gpg
# cat dotdeb.gpg | apt-key add -

# apt-get update && apt-get install build-essential curl default-jre g++
gcc git git-core imagemagick libmagickwand-dev libmysqlclient-dev
libreadline5-dev libsqlite3-dev libssl-dev libxml2-dev libxslt1-dev
libxslt1-dev libyaml-dev make mysql-server vim wkhtmltopdf zlib1g-dev
zlib1g-dev

# cd /usr/src && wget
http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
# tar -zxf ruby-1.9.3-p125.tar.gz && cd ruby-1.9.3-p125
# ./configure && make && make install
# gem install bundler

# git clone http://github.com/Snorby/snorby.git /var/www/snorby && cd
/var/www/snorby
# bundle install
# cp config/snorby_config.example.yml config/snorby_config.yml && vi
config/snorby_config.yml
Lines 3, 18 & 30 - change wkhtmltopdf path to /usr/bin/wkhtmltopdf
# cp config/database.example.yml config/database.yml && vi
config/database.yml
Line 9 - change db root password
# bundle exec rake snorby:setup RAILS_ENV=production
# rails server -e production
Go to http://servername:3000 - login with sno...@snorby.org:snorby

-J

https://github.com/Snorby/snorby/wiki/Ubuntu-11.10-by-Andrea-Modesto-

___________________________________________________________________________ __________________

Please visit www.nhrs.org to subscribe to NHRS email announcements and updates.


 
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.
James Lay  
View profile  
 More options Apr 23 2012, 9:19 pm
From: James Lay <digital...@gmail.com>
Date: Mon, 23 Apr 2012 19:19:26 -0600
Local: Mon, Apr 23 2012 9:19 pm
Subject: Re: [Snorby] Trouble installing
On Apr 23, 2012, at 7:32 AM, Weir, Jason wrote:

Thank you much…I'll try and get this installed the rest of the way this week…I'll let you know if I have success..thanks.

James


 
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.
James Lay  
View profile  
 More options Apr 25 2012, 7:55 am
From: James Lay <digital...@gmail.com>
Date: Wed, 25 Apr 2012 05:55:18 -0600
Local: Wed, Apr 25 2012 7:55 am
Subject: Re: [Snorby] Trouble installing
On Apr 23, 2012, at 7:32 AM, Weir, Jason wrote:

This totally worked…thank you very much!

James


 
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.
Константин Хабаров  
View profile  
 More options Apr 24 2012, 1:38 am
From: Константин Хабаров <k.khaba...@krasnodar.pro>
Date: Tue, 24 Apr 2012 09:38:26 +0400
Local: Tues, Apr 24 2012 1:38 am
Subject: Re: [Snorby] Trouble installing

I had this problem too. The manuals in the git are old already. Your system
installed two rakes, so try to uninstall rake 0.9.2.2. Use "gem uninstall
rake", and  choose rake 0.9.2.2 version.
PS Have anybody try to install snorby without downloading gem's (only ruby
and rails) with command "bundle install --deployment" ?. It starts to
dawnload gems. Seems that it downloads gems just needed to install current
snorby version

24 апреля 2012 г. 5:19 пользователь James Lay <digital...@gmail.com>написал:

--
 С уважением,
Инженер отдела защиты информации
ООО <<РосИнтеграция>>
Константин Хабаров

тел. 8-903-453-22-21

http://www.rosint.net

  image001.jpg
2K 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 »