Project

General

Profile

F29Installation » History » Version 30

Gerd Pokorra, 2019-01-03 18:54

1 1 Gerd Pokorra
h1. HowTo Install Redmine 4.0.0 on Fedora 29
2
3
{{toc}}
4
5
This guide is not complete. It will be completed in the next two weeks.
6
7
h2.  System Requirements
8
9
It is assumed that the Server Edition is installed on the system in this guide.
10
11 13 Gerd Pokorra
h3. Updating the System
12
  
13
It is recommended to install Redmine on an update system. To ensure that all installed packages are up-to-date issue the following command:
14
15
<pre>> dnf update
16
</pre>
17
18 14 Gerd Pokorra
h3. Installing Dependencies
19
20
A number of dependencies need to be installed:
21
22
<pre>> dnf install rubygem-bundler
23
> dnf install rubygem-rails
24
25
> dnf install ruby-devel rubygem-rmagick
26
> dnf install gcc redhat-rpm-config
27
28
> dnf groupinstall "C Development Tools and Libraries"
29
> dnf groupinstall "Development Tools"
30
</pre>
31
32 28 Gerd Pokorra
Database adapter for PostgreSQL:
33 16 Gerd Pokorra
  
34 1 Gerd Pokorra
<pre>> dnf install rubygem-pg
35
</pre>
36 17 Gerd Pokorra
37 28 Gerd Pokorra
Database adapter for MySQL:
38 27 Gerd Pokorra
<pre>> dnf install rubygem-mysql2
39
</pre>
40
41 29 Gerd Pokorra
Database adapter for MS SQL:
42
43
The Fedora distribution has not ruby software package for @tiny_tds@. The following dependency is needed for the build:
44
45
<pre>> dnf install freetds-devel
46
> # Now the build should work
47
> bundle install --without development test
48
</pre>
49
50
51
52 17 Gerd Pokorra
The list of dependencies may not complete. Problems of the installation or build of a compoment can be solved by installing the necessary dependency.
53 16 Gerd Pokorra
54 12 Gerd Pokorra
h2. Obtaining Redmine (Step 1)
55
56
Get the Redmine source code by downloading the packaged release.
57
58
<pre>> dnf install wget
59
60
> mkdir /var/www
61
> cd /var/www
62
63
> wget http://www.redmine.org/releases/redmine-4.0.0.tar.gz
64
> tar xf redmine-4.0.0.tar.gz
65
</pre>
66
67
At this guide is accepted that the location of the Redmine source code is:
68
69
<pre>/var/www/redmine-4.0.0
70
</pre>
71
72
For example the nginx configuration refer to the path @/var/www/redmine-4.0.0@.
73 16 Gerd Pokorra
74 22 Gerd Pokorra
h2. Setup a local database server (Step 2)
75 16 Gerd Pokorra
76
This section discribes the setup of a database server that will be configured to allow access from the localhost.
77
78
h3. PostgreSQL
79
80 18 Gerd Pokorra
The followings commands are for installing the packages, initializing the database, enable and start the postgresql server, switch the user to interact with @postgres@, create an empty database and accompanying user.
81
82
<pre>> dnf install postgresql-server postgresql-contrib
83
> postgresql-setup --initdb --unit postgresql
84
 * Initializing database in '/var/lib/pgsql/data'
85
 * Initialized, logs are in /var/lib/pgsql/initdb_postgresql.log
86
>
87
> systemctl enable postgresql
88
> systemctl start postgresql
89
> su - postgres
90
> psql
91
psql (10.6)
92
Type "help" for help.
93
94
postgres=# CREATE ROLE redmine LOGIN ENCRYPTED PASSWORD 'my_secret' NOINHERIT VALID UNTIL 'infinity';
95
CREATE ROLE
96
postgres=# CREATE DATABASE redmine WITH ENCODING='UTF8' OWNER=redmine;
97
CREATE DATABASE
98
postgres=# \q
99
> exit
100
</pre>
101
102 19 Gerd Pokorra
Edit the file @/var/lib/pgsql/data/pg_hba.conf@ to specify that the client has to supply password processed with MD5 algorithm:
103
104
<pre>#host    all             all             127.0.0.1/32            ident
105
host    all             all             127.0.0.1/32            md5
106
# IPv6 local connections:
107
#host    all             all             ::1/128                 ident
108
host    all             all             ::1/128                 md5
109
</pre>
110
111
You can check the access with the following command:
112
113
<pre>> su - postgres
114 20 Gerd Pokorra
> psql -h localhost -U redmine redmine
115 1 Gerd Pokorra
</pre>
116 20 Gerd Pokorra
117
The appropriate Redmine database configuration file for local access is:
118
119 21 Gerd Pokorra
<pre>> cat /var/www/redmine-4.0.0/config/database.yml
120 20 Gerd Pokorra
# PostgreSQL configuration
121
production:
122
  adapter: postgresql
123
  database: redmine
124
  host: localhost
125
  username: redmine
126
  password: "my_secret"
127
  encoding: utf8
128 1 Gerd Pokorra
  schema_search_path: public
129 21 Gerd Pokorra
</pre>
130 20 Gerd Pokorra
131
If you want to use IPv4 you have to specify @localhost4@ as hostname.
132 19 Gerd Pokorra
133 1 Gerd Pokorra
h3. MySQL
134 22 Gerd Pokorra
135
Install the MySQL repositry
136
137
<pre>> dnf -y install https://dev.mysql.com/get/mysql80-community-release-fc29-1.noarch.rpm
138
</pre>
139
140
If you prefer to stick to MySQL 5.7
141
142
<pre>> dnf config-manager --set-enabled mysql57-community
143
> dnf config-manager --set-disabled mysql80-community
144
</pre>
145
146 23 Gerd Pokorra
Install the MySQL server package, start the MySQL server and autostart the daemon on boot
147
148 22 Gerd Pokorra
<pre>> dnf -y install mysql-community-server
149
> systemctl start mysqld.service
150
> systemctl enable mysqld.service
151
</pre>
152 12 Gerd Pokorra
153 24 Gerd Pokorra
Get your generated random root password you will need it at the next step.
154
155
<pre>> grep 'A temporary password is generated for root@localhost' /var/log/mysqld.log |tail -1
156
</pre>
157
158
Start the secure installation assistant to
159
160 25 Gerd Pokorra
* change root password
161
* remove anonymous users
162
* disallow root login remotely
163
* remove test database and access to it
164
* reload privilege tables
165 24 Gerd Pokorra
166
<pre>> mysql_secure_installation
167
</pre>
168
169 26 Gerd Pokorra
Creation of user and database for Redmine
170
171
<pre>> mysql -h localhost -u root -p
172
Enter password:
173
...
174
mysql> CREATE DATABASE redmine CHARACTER SET utf8mb4;
175
mysql> CREATE USER 'redmine'@'localhost' IDENTIFIED BY 'my_secret';
176
mysql> GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost';
177
mysql> \q
178
</pre>
179
180 30 Gerd Pokorra
The appropriate Redmine database configuration file for local accessing the MySQL database is:
181
182
<pre>> cat /var/www/redmine-4.0.0/config/database.yml
183
# MySQL configuration
184
production:
185
  adapter: mysql2
186
  database: redmine
187
  host: localhost
188
  username: redmine
189
  password: "my_secret"
190
</pre>
191
192 11 Gerd Pokorra
h2. Firewall
193
194
Open the firewall for https:
195
196
<pre>> firewall-cmd --add-service=https
197
> firewall-cmd --permanent --add-service=https
198
</pre>
199
200 1 Gerd Pokorra
h2. Web Server
201
202 5 Gerd Pokorra
h3. Nginx/Passenger
203 2 Gerd Pokorra
204
The Fedora @nginx@ package do not include Passenger, so you have to build @nginx@ with the passenger module. The guide assume that the sources are extracted under the directory @/opt@ . The @nginx@ software will be installed at @/opt/ngnix@. At the time of writting that guide this was the current stable releases of @passenger@ and @nginx@:
205
206
* passenger-6.0.0
207
* nginx-1.14.2
208
209 4 Gerd Pokorra
h4. Downloading the sources:
210 2 Gerd Pokorra
211
<pre>Passenger
212
213
> cd /opt
214
> wget https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.0.tar.gz
215
> tar xf passenger-6.0.0.tar.gz
216
217
Nginx
218
219
> wget http://nginx.org/download/nginx-1.14.2.tar.gz
220
> mkdir /opt/src
221
> cd /opt/src
222
> tar xf nginx-1.14.2.tar.gz
223
</pre>
224 1 Gerd Pokorra
225 3 Gerd Pokorra
h4. Installing additional packages
226
227
For the build of @passenger@ and @nginx@ the following additional packages are needed to be installed:
228
229
<pre>> dnf install install gcc-c++ libcurl-devel openssl-devel zlib-devel
230
</pre>
231 1 Gerd Pokorra
232 5 Gerd Pokorra
h4. Execute the ruby script for building and installing
233 1 Gerd Pokorra
234 5 Gerd Pokorra
The simplest way to build and install the @nginx@ web server with the @passenger@ module is to run the script @passenger-install-nginx-module@.
235
236
<pre>> /opt/passenger-6.0.0/bin
237
> ./passenger-install-nginx-module --prefix=/opt/nginx --nginx-source-dir=/opt/src/nginx-1.14.2 --languages ruby
238
</pre>
239 3 Gerd Pokorra
240 7 Gerd Pokorra
With the same @passenger@ locality the installer modify the @nginx@ configuration file @/opt/nginx/conf/nginx.conf@ and output the same text:
241 6 Gerd Pokorra
242
<pre>  http {
243
      ...
244
      passenger_root /opt/passenger-6.0.0;
245
      passenger_ruby /usr/bin/ruby;
246
      ...
247
  }
248
</pre>
249
250 8 Gerd Pokorra
h4. Add a systemd service file
251
252
To start the @nginx@ process during the boot add the file @/usr/lib/systemd/system/nginx.service@ with the following content:
253
254
<pre>[Unit]
255
Description=The nginx HTTP and reverse proxy server
256
After=network.target remote-fs.target nss-lookup.target
257
258
[Service]
259
Type=forking
260
#PIDFile=/run/nginx.pid
261
PIDFile=/opt/nginx/logs/nginx.pid
262
# Nginx will fail to start if /run/nginx.pid already exists but has the wrong
263
# SELinux context. This might happen when running `nginx -t` from the cmdline.
264
# https://bugzilla.redhat.com/show_bug.cgi?id=1268621
265
ExecStartPre=/usr/bin/rm -f /opt/nginx/logs/nginx.pid
266
#ExecStartPre=/usr/sbin/nginx -t
267
#ExecStart=/usr/sbin/nginx
268
ExecStartPre=/opt/nginx/sbin/nginx -t
269
ExecStart=/opt/nginx/sbin/nginx -c /opt/nginx/conf/nginx.conf
270
ExecReload=/bin/kill -s HUP $MAINPID
271
KillSignal=SIGQUIT
272
TimeoutStopSec=5
273
KillMode=mixed
274
PrivateTmp=true
275
276
[Install]
277
WantedBy=multi-user.target
278
</pre>
279
280
The paths are modified to start the executable @/opt/nginx/sbin/nginx@.
281
282
<pre>> systemctl start nginx
283
> systemctl enable nginx
284
</pre>
285
286 9 Gerd Pokorra
h4. Nginx Configuration
287
288
For http add the two lines and comment out the four lines:
289
290
<pre>    server {
291
        listen       80;
292
...
293
        root         /var/www/redmine-4.0.0/public;
294
        passenger_enabled on;
295
        #location / {
296
        #    root   html;
297
        #    index  index.html index.htm;
298
        #}
299
...
300
       }
301
</pre>
302
303 10 Gerd Pokorra
For https add you can use lines like this:
304
305
<pre>    # HTTPS server
306
    #
307
    server {
308
        listen       443 ssl;
309
        server_name  my_web_serv.domain;
310
311
        ssl_certificate      /etc/ssl/certs/my_web_serv.pem;
312
        ssl_certificate_key  /etc/ssl/private/privkey.pem;
313
314
        root         /var/www/redmine-4.0.0/public;
315
        passenger_enabled on;
316
    }
317
</pre>
318
319 1 Gerd Pokorra
h3. Apache