RedmineInstallOSXMavericksServer » History » Version 27
Khedron Wilk, 2014-11-28 22:24
"Downgraded" version of rmagick to and added note about why (latest version does not compile).
1 | 17 | Khedron Wilk | h1. Installing Redmine on OS X 10.9 Mavericks Server and Client |
---|---|---|---|
2 | 2 | Roland Laussat | |
3 | 17 | Khedron Wilk | This is a quick summary of the necessary steps for a simple install of Redmine on Apple OS X Mavericks Server 10.9. This summary can also be applied on Mavericks Client. This is slightly different from the install for [[RedmineInstallOSXServer|Snow Leopard Server]]. This is meant only as a supplement, not a replacement, to the official install guide found [[RedmineInstall|here]]. This summary contains instructions for MySQL only, for PostgreSQL please see related part of the official install guide. |
4 | 2 | Roland Laussat | |
5 | h2. Install Prerequisites |
||
6 | |||
7 | 9 | Roland Laussat | *Xcode 5 and MySQL Server* |
8 | 2 | Roland Laussat | |
9 | 17 | Khedron Wilk | Get Xcode 5 from the Mac App Store or register for a free account and download from: https://developer.apple.com/downloads/. (It seems that strictly speaking the full Xcode installation is not needed to install the command-line tools but download and install ful Xcode anyway to be on the safe side.) |
10 | 2 | Roland Laussat | Next, install the command line-tools via Terminal: |
11 | 14 | Khedron Wilk | <pre>xcode-select --install</pre> |
12 | 2 | Roland Laussat | |
13 | 1 | Roland Laussat | Then install MySQL Community Server - get it from http://dev.mysql.com/downloads/mysql (get the Mac OS X 10.7 64-bit DMG archive). |
14 | It will install a nifty little preference pane to start and stop the MySQL server. |
||
15 | |||
16 | 17 | Khedron Wilk | To make database administration easier you should include the database binaries in your path: |
17 | 18 | Khedron Wilk | <pre>export PATH=/usr/local/mysql/bin:$PATH</pre> (To make your life easier in the long run you may want to include this command in your ~/.bash_profile file.) |
18 | 17 | Khedron Wilk | |
19 | 1 | Roland Laussat | Because the installer doesn't set a root password during the installation, you've got to set it with mysqladmin: |
20 | 2 | Roland Laussat | <pre>mysqladmin -u root password "newpwd"</pre> |
21 | 17 | Khedron Wilk | Next, login to mysql. |
22 | 2 | Roland Laussat | <pre>mysql -u root -p</pre> |
23 | 17 | Khedron Wilk | Create the database, the database user and set privileges: |
24 | <pre><code class="sql">CREATE DATABASE redmine CHARACTER SET utf8 COLLATE utf8_general_ci; |
||
25 | CREATE USER 'redmine'@'localhost' IDENTIFIED BY 'my_password'; |
||
26 | GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost';</code></pre> |
||
27 | 9 | Roland Laussat | |
28 | 17 | Khedron Wilk | |
29 | 2 | Roland Laussat | The Redmine installer expects the MySQL client library in a different place, so you need to create a symbolic link to the original location: |
30 | 1 | Roland Laussat | <pre>sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib</pre> |
31 | |||
32 | *Redmine Prerequisites* |
||
33 | |||
34 | Redmine is built on Ruby which comes with Xcode, but some gems are missing: |
||
35 | <pre>sudo gem install rails bundler passenger</pre> |
||
36 | Next, use passenger to build the apache2-passenger module: |
||
37 | <pre>sudo passenger-install-apache2-module</pre> |
||
38 | 17 | Khedron Wilk | This will in the end output few lines of configuration code that you'll have to add to your Apache configuration. Here follows an example, be aware that exact content may change with newer versions of related software: |
39 | 26 | Khedron Wilk | <pre><code class="xml">LoadModule passenger_module /Library/Ruby/Gems/2.0.0/gems/passenger-4.0.53/buildout/apache2/mod_passenger.so |
40 | 17 | Khedron Wilk | <IfModule mod_passenger.c> |
41 | 26 | Khedron Wilk | PassengerRoot /Library/Ruby/Gems/2.0.0/gems/passenger-4.0.53 |
42 | 17 | Khedron Wilk | PassengerDefaultRuby /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby |
43 | </IfModule></code></pre> |
||
44 | 20 | Khedron Wilk | In OS X Mavericks it's necessary to put this code in one of two files. Either in the default standard https.conf-file or in a separate file that is automatically included. |
45 | Alternative A - main config file: |
||
46 | 1 | Roland Laussat | Server:<pre>/Library/Server/Web/Config/apache2/httpd_server_app.conf</pre> |
47 | 19 | Khedron Wilk | Client:<pre>/etc/apache2/httpd.conf</pre> |
48 | 20 | Khedron Wilk | Alternative B - separate include file (create as needed): |
49 | 19 | Khedron Wilk | Server:<pre>/Library/Server/Web/Config/apache2/other/passenger.conf</pre> |
50 | Client:<pre>/etc/apache2/other/passenger.conf</pre> |
||
51 | 15 | Khedron Wilk | |
52 | 17 | Khedron Wilk | |
53 | 2 | Roland Laussat | Finally, OS X Mavericks has a problem to install the rmagick gem which is optional for a successful installation of Redmine, but if you want to display images and charts it's necessary. |
54 | Get the following packages: |
||
55 | ImageMagick - http://cactuslab.com/imagemagick/ (Note there are two versions, one with free type which requires XQuartz to be installed - the basic version is sufficient.) |
||
56 | 1 | Roland Laussat | Pgkconfig - http://macpkg.sourceforge.net |
57 | rmagick - http://rubygems.org/gems/rmagick (sometimes the download during installation fails, it's easier to have it stored locally) |
||
58 | |||
59 | Install ImageMagick and Pkgconfig, both should be installed in the /opt directory by default. |
||
60 | Because neither ImageMagick or Pkgconfig seems to add the path to the executable during the installation, you have to export the path variable: |
||
61 | <pre>export PATH=/opt/ImageMagick/bin:/opt/pkgconfig/bin:$PATH</pre> |
||
62 | |||
63 | 27 | Khedron Wilk | The following command should install the rmagick gem without errors (check the exact version number). If installation fails please check the paths to MagickCore.pc and MagickWand.h. Please be aware that latest version at this time, 2.13.4, does not build clean on OS X 10.10 Yosemite. You may have to use the version before, 2.13.3, that one seems to compile and install fine. |
64 | <pre>sudo C_INCLUDE_PATH=/opt/ImageMagick/include/ImageMagick-6/ PKG_CONFIG_PATH=/opt/ImageMagick/lib/pkgconfig/ gem install --local ~/Downloads/rmagick-2.13.3.gem</pre> |
||
65 | 9 | Roland Laussat | (Assuming rmagick has been downloaded to your Downloads directory) |
66 | |||
67 | h2. Install Redmine |
||
68 | 3 | Roland Laussat | |
69 | 21 | Khedron Wilk | Get the latest stable build of Redmine and move the redmine directory to your web server root folder. The web server root folder is different on Server and client: |
70 | Server:<pre>/Library/Server/Web/Data/Sites/Default/</pre> |
||
71 | Client:<pre>/Library/WebServer/Documents</pre> |
||
72 | 3 | Roland Laussat | |
73 | 1 | Roland Laussat | *Configure Redmine* |
74 | |||
75 | 21 | Khedron Wilk | In the Terminal, change current directory to the new redmine foder in your web root and excute the following commands to setup the folder structure: |
76 | <pre> |
||
77 | 17 | Khedron Wilk | sudo mkdir public/plugin_assets |
78 | sudo chown -R _www:_www tmp public/plugin_assets log files |
||
79 | sudo chmod -R 755 files log tmp public/plugin_assets |
||
80 | sudo cp config/database.yml.example config/database.yml</pre> |
||
81 | 23 | Daniel Miller | Edit database.yml, e.g., for MySql: |
82 | 17 | Khedron Wilk | <pre><code class="yaml">production: |
83 | adapter: mysql2 |
||
84 | 3 | Roland Laussat | database: redmine |
85 | 1 | Roland Laussat | host: localhost |
86 | username: redmine |
||
87 | 23 | Daniel Miller | password: put_redmine's_password_here</code></pre> |
88 | 25 | Daniel Miller | E.g., for PostgreSQL (as detailed at http://www.uponmyshoulder.com/blog/2011/cant-find-the-postgresql-client-library-libpq), an additional package needs to be installed in a nondefault way to forestall the install failures that will occur for PostgreSQL during “bundle install” far below: |
89 | 24 | Daniel Miller | <pre>sudo env ARCHFLAGS="-arch x86_64" gem install pg -v '0.17.1'</pre> |
90 | 23 | Daniel Miller | then for PostgreSQL, edit database.yml: |
91 | <pre><code class="yaml">production: |
||
92 | adapter: postgresql |
||
93 | database: redmine |
||
94 | host: localhost |
||
95 | username: redmine |
||
96 | password: put_redmine's_password_here |
||
97 | encoding: utf8</code></pre> |
||
98 | 1 | Roland Laussat | |
99 | 3 | Roland Laussat | *Run Bundler* |
100 | 9 | Roland Laussat | |
101 | 10 | Roland Laussat | <pre>sudo bundle install --without development test</pre> |
102 | 9 | Roland Laussat | Assuming the installation finished without errors you can generate the secret token: |
103 | 2 | Roland Laussat | <pre>sudo rake generate_secret_token</pre> |
104 | Next steps: |
||
105 | <pre>sudo RAILS_ENV=production rake db:migrate</pre> |
||
106 | <pre>sudo RAILS_ENV=production rake redmine:load_default_data</pre> |
||
107 | |||
108 | 17 | Khedron Wilk | If you want to do a quick test and take Redmine for a ride your can now do so: |
109 | <pre>sudo ruby script/rails server webrick -e production</pre> |
||
110 | This will make your redmine available att http://localhost:3000 |
||
111 | |||
112 | |||
113 | 2 | Roland Laussat | Last but not least you need to point Apache to the public folder inside the red mine directory to serve Redmine as a website. |
114 | Please make sure you tick _Allow overrides using .htaccess file_ in the advanced settings of your website configuration. |
||
115 | 17 | Khedron Wilk | |
116 | 2 | Roland Laussat | |
117 | For further information please see |
||
118 | 1 | Roland Laussat | [[RedmineInstallOSXServer|HowTo Install Redmine on Mac OS X Server]] 10.6 Snow Leopard |
119 | and |
||
120 | [[RedmineInstallOSXLionServer|HowTo Install Redmine on Mac OS X Lion Server]] |
||
121 | in case some details are missing here. |
||
122 | 22 | Marek Weisskopf | Here is some step by step advice how to do quick install and upgrade on 10.8 and 10.9 Mac OS X Server with bitnami package http://www.macweb.cz/aktualizujeme-redmine-na-novou-verzi-2-5-x/ |