Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Chef's Cookbook for installing Redmine

NotificationsYou must be signed in to change notification settings

juanje/cookbook-redmine

Repository files navigation

Installs the ticketing box with Redmine from the source.

The cookbook will install Redmine with MySql as a database adaptor and Apache2as a web server.

Notes for the current cookbook's version

The current version only support MySql and it will be installed at the samenode, but the recipe will take care of it. MySql and Apache2 will be installedby the recipe.You don't need to install it previously.

Requirements

Platform:

Tested on:

  • Ubuntu (12.04, 12.10)
  • CentOS (6.3, 6.4)

Cookbooks:

  • apt
  • yum
  • runit
  • git
  • apache2
  • passenger_apache2
  • mysql
  • postgresql
  • build-essential
  • openssl

If you are running different chef versions in your box, seehttps://github.com/opscode-cookbooks/apt#requirements to configure proper aptversion in Berksfile

Test the cookbook with Vagrant

You need to have installed Vagrant version 1.1.X and the Berskshelf plugin:

$ vagrant plugin install vagrant-berkshelf

Then just:vagrant up

Remember that you can change some cookbook's behavior through the attributes in theVagrantfile.Chef the example atchef.json.

Attributes

This cookbook uses many attributes, broken up into a few different kinds.

Usage

This cookbook installs Redmine with a defaults confirations to have it workingout the box. But if you like to customize them, just chage it at the attributes.

The easy way is to create your own role and specify your preferences. Here isan example:

# roles/redmine.rbname "redmine"description "Redmine box to manage all the tickets"run_list("recipe[redmine]")default_attributes(  "redmine" => {    "databases" => {      "production" => {        "password" => "redmine_password"      }    }  },  "mysql" => {    "server_root_password" => "supersecret_password"  })

Chef-solo tips

If you are using chef-solo provider you must specify mysql password attributes:

:mysql => {     :server_root_password => "supersecret_password",     :server_debian_password => "supersecret_password",     :server_repl_password => "supersecret_password"   }

See cookbook note:https://github.com/opscode-cookbooks/mysql#chef-solo-note

License and Author

Author:: Juanje Ojeda (juanje.ojeda@gmail.com)Author:: Roberto Majadas (<roberto.majadas at openshine.com>)

Copyright:: 2012-2013, Juanje Ojeda (juanje.ojeda@gmail.com)Copyright:: 2013, Roberto Majadas (<roberto.majadas at openshine.com>)

Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp