I have a problem in installing Redmine in my ubuntu system. I am following link...
http://www.drinkingbird.net/blog/articles/2008/02/27/setting-up-a-redmin...
I am installing redmine in steps wise...
1. aptitude install apache2 ruby rubygems subversion ruby-pkg-tools \
ruby1.8-dev build-essential postgresql libdbd-pg-perl libapache2-svn \
libapache-dbi-perl libapache2-mod-perl2 libdigest-sha1-perl
2. gem install rails mongrel mongrel_cluster postgres-pr --include-dependencies
When i type above command i got this error..
sudo gem install rails mongrel mongrel_cluster postgres-pr --include-dependencies
/usr/bin/gem:10: undefined method `manage_gems' for Gem:Module (NoMethodError)
Can anyone helpme in solving this problem..............
Thank you
Another installation problem of redmine.....
By ravindra.devagiriHi
I installed redmine in following way.....................
1. Install Packages
aptitude install apache2 ruby rubygems subversion ruby-pkg-tools \
ruby1.8-dev build-essential postgresql libdbd-pg-perl libapache2-svn \
libapache-dbi-perl libapache2-mod-perl2 libdigest-sha1-perl
2. Install Gems
gem install rails mongrel mongrel_cluster postgres-pr --include-dependencies
3. export PATH=/var/lib/gems/1.8/bin to the end of /etc/profile
SET UP DATABASE FOR REDMINE TO USE...........................................
4. su postgres
5. createuser redmine --no-superuser --no-createdb --no-createrole --login --pwprompt --encrypted
6. createdb --owner=redmine --encoding=utf-8 redmine
7. EXIT
8.Redmine itself
mkdir /var/www/rails_apps
cd /var/www/rails_apps
svn co http://redmine.rubyforge.org/svn/branches/0.6-stable redmine-0.6
9. Configure database access
Create the file config/database.yml within the redmine directory with the following contents:
production:
adapter: postgresql
database: redmine
host: localhost
username: redmine
password: redmine
10.
rake db:migrate RAILS_ENV="production"
rake redmine:load_default_data RAILS_ENV="production"
!!!!!!!!! but while executing above coomands it is giving following errors..................................
(in /var/www/rails_apps/redmine-0.6)
rake aborted!
uninitialized constant ActionController::Session::PStore
//////////////////////////////////////////////////////////////////////////////////////////////
Help me in above problem....................
Ravindrareddy
IIITB
ravindra.devagiri: Redmine
By edavis10ravindra.devagiri:
Redmine 0.6 is outdated and shouldn't be used. You should checkout the trunk version with the following command
svn co http://redmine.rubyforge.org/svn/trunk redmine-trunkI also think you might have a newer version of Ruby on Rails than Redmine supports.
sudo gem install rails -v 2.2.2will get you the 2.2.2 version of Rails that is used by the Redmine trunk. Hope this helps.Eric Davis
IP Address and domain problem
By ravindra.devagiriThank you Eric
I had some confusion with which fields i need to enter in the following commands
///////////////////////////////////////////////////////////////////////
Configure mailing from Redmine
Setting up a mail account for redmine is your own business, then change this section of config/environment.rb:
# SMTP server configuration
config.action_mailer.smtp_settings = {
:address => "127.0.0.1",
:port => 25,
:domain => "somenet.foo",
:authentication => :login,
:user_name => "redmine",
:password => "redmine",
}
to this:
# SMTP server configuration
config.action_mailer.smtp_settings = {
:address => "mail.yourdomain.com",
:port => 25,
:domain => "yourdomain.com",
:authentication => :login,
:user_name => "mail_user",
:password => "mail_password"
}
/////////////////////////////////////////////////////////////////////
Which fields i need to enter in the ipaddress, port, domain and username, password fields..............................
We don't have SMTP.................................
Help me in this..............
Thank you...
Ravindrareddy
IIITB
Setting up the SMTP server
By edavis10Setting up the SMTP server is optional for development and testing, so I'd recommend not configuring email.yml for now. Redmine's email tests will work fine without it.
Eric Davis
www.LittleStreamSoftware.com
running redmine from localhost
By ravindra.devagiriThank you Davis
When i run the following command
mongrel_rails start --environment=production
It is working properly but in browser with url http://localhost:3000 it is showing 500 internal server error...............................
I think it should show redmine site. but it is not showing....
Thank you
Ravindrareddy
IIITB
A few things: 1. Don't use
By edavis10A few things:
1. Don't use the production environment. It's more difficult to test and is intended for production sites. Change the databases configured in your database.yml so the "development" and "test" sections are correct. Then start mongrel using the "ruby script/server" command. This will load Redmine in development mode and will display the log file right on the command line. Control-C will shutdown the server.
2. If you ever get an error, check log/development.log or log/production.log. These will have the specific details of the error and will give you a clue as to how to solve them.
3. If you are new to Ruby on Rails, you might find it useful to go through the tutorial for building a Ruby on Rails site. This will walk you through building a small site with Rails and will show you how the different parts connect. If you don't want to run the full tutorial, reading the guide should help you understand how Redmine works at the core.
http://guides.rubyonrails.org/getting_started.html
I think one problem that came up, is that you are following an old guide on how to setup a Redmine application in the real world for users. You don't need to be as detailed since you are only needed to set it up for testing and development. I'll see if I can write up a guide focused on development only.
Eric Davis
www.LittleStreamSoftware.com
Are we progressing?
By sandyGiven that there has been no fresh posts since the last one by Eric providing details, is it alright to assume that all installation issues are sorted out?
Will it help to put together a development calendar to start tracking and work towards individual assignments? Here is a link to ofbiz - selenium testing project where they have put together a plan or sorts.
http://www.kenfuse.com/docs/project-schedule
Sorry for the delay
By saloneguptaHi Sandy
We are very sorry for the delay. We assure you there will be no delay in the work from now onwards.
We are facing some problem in the last stage of deployment of redmine. The setup will be completed within next 2-3 days.
After that we will quickly get the understanding of the code and start working on writing tests for redmine.
We will post our high level plan within 2-3 days from now.
Not a problem
By sandyHey! no issues. I was just curious to find out if you all got everything to get started. I am very sure you all share the enthusiasm of making significant contribution to the Redmine project and I would be glad if I can assist in anyways.
Best!
Sandy
regarding installation
By saloneguptaWe have installed redmine on windows using Bitnami tool. It is running fine on browser but we don't know the commands to rerun our code after doing some changes.
We have also installed redmine on Ubuntu 9.04 using http://wiki.ousli.org/index.php/RedmineUbuntu link. It is getting installed properly but we dont know how to run it on the browser. we are able to migrate the database but when i am typing http://localhost:3000/ it is giving mysql error and on typing http://localhost:3000/redmine it is giving no routes found error.
Please help us regarding these issues.
What is the MySQL Error
By edavis10What is the MySQL Error exactly?
Eric
Redmine Successfully installed
By anubhav nandaRedmine successfully installed and is running at http://localhost:3000/
Now what we should do next ?
useful links
By optikosI successfully installed Redmine using Postgresql using the following references plus setting Postgres's security as shown below. I would like to have used "ident map=somename" and then defining somename in pg_ident.conf in to limit each POSIX account name (especially www-data for Apache) to correspond to only one unique PostgreSQL account, but I have not yet taken the time to tighten down that part.
http://ubuntuforums.org/showthread.php?t=674598
http://www.stuartellis.eu/articles/postgresql-setup/
# Database administrative login by UNIX sockets
local all postgres ident
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
#local all all ident
local all all trust
# IPv4 local connections:
#host all all 127.0.0.1/32 md5
host all all 127.0.0.1/32 trust
# IPv6 local connections:
#host all all ::1/128 md5
host all all ::1/128 trust
# IP packets from machines other than this one
host all all 0.0.0.0/0 md5
You can find lots of PMP
By Tyadlscyou have a fantastic blog
By florencjnBitumen valium comments
By catheriypIts exhausting to search
By amandahc3Valium recessive marginate
By christimgFemale sex toys lasagna
By lindsayjqzonealarm coupons toothy
By christimgHow to intravenously inject
By lindsayjqtravel insurance online
By lindsayjqwhere to buy smoke deter
By amandahc3WONDERFUL Post.thanks for
By florencjnThis really answered my
By catheriypvery good post, i definitely
By lindsayjqIt is best to take part in a
By christimgAn fascinating discussion is
By florencjn