Installieren Sie Redmine 4.1.1 auf dem Server, auf dem CentOS 7 installiert ist. Grundsätzlich sollten Sie in der Lage sein, das Paket mit dem Befehl yum
zu aktualisieren.
SELinux ist aus irgendeinem Grund deaktiviert, daher wird SELinux nicht berücksichtigt.
# cat /etc/redhat-release
CentOS Linux release 7.8.2003 (Core)
SCL-Repository hinzugefügt, um Ruby 2.5 aus dem SCL-Repository zu installieren. Fügen Sie außerdem die Pakete hinzu, die für Ruby-bezogene Builds erforderlich sind.
# yum install centos-release-scl
# yum group install "Development tools"
# yum install zlib-devel
# yum install ImageMagick ImageMagick-devel
# yum install rh-ruby25 rh-ruby25-ruby-devel
# echo '/opt/rh/rh-ruby25/root/usr/lib64' > /etc/ld.so.conf.d/rh-ruby.conf
# ldconfig
# update-alternatives --display ruby
# update-alternatives --install /usr/bin/ruby ruby /opt/rh/rh-ruby25/root/bin/ruby 25 \
--slave /usr/bin/gem gem /opt/rh/rh-ruby25/root/usr/bin/gem
# ruby -v
ruby 2.5.5p157 (2019-03-15 revision 67260) [x86_64-linux]
# gem install rails
# gem install bundler
# update-alternatives --install /usr/bin/ruby ruby /opt/rh/rh-ruby25/root/bin/ruby 25 \
--slave /usr/bin/gem gem /opt/rh/rh-ruby25/root/usr/bin/gem \
--slave /usr/local/bin/rails rails /opt/rh/rh-ruby25/root/usr/local/bin/rails \
--slave /usr/local/bin/rake rake /opt/rh/rh-ruby25/root/usr/local/bin/rake \
--slave /usr/local/bin/bundle bundle /opt/rh/rh-ruby25/root/usr/local/bin/bundle
# yum install mariadb-server mariadb-devel
# systemctl start mariadb
# systemctl enable mariadb
# mysql_secure_installation
# mysql -u root -p
MariaDB [(none)]> CREATE DATABASE redmine CHARACTER SET utf8;
MariaDB [(none)]> GRANT ALL PRIVILEGES ON redmine.* TO redmine@localhost IDENTIFIED BY 'P@ssw0rd!';
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> quit
# cd /var/www
# wget https://www.redmine.org/releases/redmine-4.1.1.tar.gz
# tar xvzf redmine-4.1.1.tar.gz
# cd /var/www/redmine-4.1.1/config
# cp database.yml.example database.yml
# vi database.yml
Geändert gemäß den MariaDB-Einstellungen. Da es sich um MariaDB 5.5 handelt, handelt es sich um ** Kodierung: utf8 **.
diff:/var/www/redmine-4.1.1/database.yml
production:
adapter: mysql2
database: redmine
host: localhost
- username: root
+ username: redmine
- password: ""
+ password: "P@ssw0rd!"
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
- encoding: utf8mb4
+ encoding: utf8
# cd /var/www/redmine-4.1.1
# bundle install --without development test --path vendor/bundle
# bundle exec rake generate_secret_token
# RAILS_ENV=production bundle exec rake db:migrate
# RAILS_ENV=production bundle exec rake redmine:load_default_data
# cd /var/www/redmine-4.1.1/public
# cp dispatch.fcgi.example dispatch.fcgi
# cp htaccess.fcgi.example .htaccess
# yum install httpd mod_fcgid fcgi fcgi-devel mod_ssl
# gem install fcgi
# cd /var/www/redmine-4.1.1
# vi Gemfile.local
Am Ende von Gemfile.local hinzugefügt.
diff:/var/www/redmine-4.1.1/Gemfile.local
+ gem 'fcgi'
# bundle install --without development test --path vendor/bundle
# chown -R apache:apache /var/www/redmine-4.1.1
Diese Einstellung überschreibt vorerst nur DocumentRoot. Wenn Sie VirtualHost oder SSL installieren müssen, legen Sie es als solches fest. Wenn ** FcgidMaxRequestLen ** nicht festgelegt ist, ist die Dateigröße, die hochgeladen werden kann, begrenzt. Beschreiben Sie daher einen Wert, der größer als der Einstellungswert in Redmine ist.
apache:/etc/httpd/conf.d/redmine.conf
DocumentRoot /var/www/redmine-4.1.1/public
FcgidMaxRequestLen 10485760
<Directory /var/www/redmine-4.1.1/public>
Require all granted
AllowOverride All
</Directory>
Am Ende von fcgid.conf hinzugefügt. Ohne es wird es in der Produktion nicht funktionieren.
diff:/etc/httpd/conf.d/fcgid.conf
# Use FastCGI to process .fcg .fcgi & .fpl scripts
AddHandler fcgid-script fcg fcgi fpl
# Sane place to put sockets and shared memory file
FcgidIPCDir /run/mod_fcgid
FcgidProcessTableFile /run/mod_fcgid/fcgid_shm
+
+ DefaultInitEnv RAILS_ENV production
Stellen Sie danach Firewalld ein, starten Sie Apache httpd neu und beenden Sie den Vorgang.
Recommended Posts