Redmine部署安装手记

工作上杂事多,不能很好的汇报上级,所以想部署个项目管理规范规范。综合考虑后选择了很是折腾的Redmine,服务器上开了个虚拟机,装了Centos 7 minimal,参考Redmine官方文档开始部署。

1、安装一些常用软件

yum -y install screen vim wget svn

2、安装EPEL库

yum -y install epel-release

3、可选,关掉firewall(iptables默哀)

[[email protected] ~]# systemctl list-unit-files | grep -n ‘firewalld‘
51:firewalld.service                             enabled
[[email protected] ~]# systemctl disable firewalld.service
[[email protected] ~]# systemctl list-unit-files | grep -n ‘firewalld‘
50:firewalld.service                             disabled

4、安装依赖

yum -y install libyaml-devel zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel mysql-devel gcc ruby-devel gcc-c++ make postgresql-devel ImageMagick-devel sqlite-devel perl-LDAP mod_perl perl-Digest-SHA

5、安装Apache和MariaDB(MySQL)

yum -y install httpd mariadb mariadb-server
systemctl enable httpd.service
systemctl enable mariadb.service
systemctl start httpd.service
systemctl start mariadb.service

6、初始化MariaDB

[[email protected] ~]# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we‘ll need the current
password for the root user.  If you‘ve just installed MariaDB, and
you haven‘t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): 
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
 ... Success!

By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from ‘localhost‘.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] n
 ... skipping.

By default, MariaDB comes with a database named ‘test‘ that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you‘ve completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

7、装个webmin,装完浏览器通过SSL端口号10000访问,帐号密码同系统。

[[email protected] ~]# cat << EOF > /etc/yum.repos.d/webmin.repo
> [Webmin]
> name=Webmin Distribution Neutral
> #baseurl=http://download.webmin.com/download/yum
> mirrorlist=http://download.webmin.com/download/yum/mirrorlist
> enabled=1
> EOF
[[email protected] ~]# wget 
[[email protected] ~]# rpm --import jcameron-key.asc 
[[email protected] ~]# yum -y install webmin

8、通过RVM安装Ruby,用国内源加速

curl -L https://get.rvm.io | bash
source /etc/profile.d/rvm.sh
echo "ruby_url=https://cache.ruby-china.org/pub/ruby" > /usr/local/rvm/user/db
rvm install --disable-binary 2.4

9、安装Rubygems,用国内源加速

yum -y install rubygems
gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/

10、安装Passenger

[[email protected] ~]# gem install passenger
[[email protected] ~]# passenger-install-apache2-module
Almost there!

Please edit your Apache configuration file, and add these lines:

   LoadModule passenger_module /usr/local/rvm/gems/ruby-2.4.1/gems/passenger-5.1.8/buildout/apache2/mod_passenger.so
   <IfModule mod_passenger.c>
     PassengerRoot /usr/local/rvm/gems/ruby-2.4.1/gems/passenger-5.1.8
     PassengerDefaultRuby /usr/local/rvm/gems/ruby-2.4.1/wrappers/ruby
   </IfModule>

After you restart Apache, you are ready to deploy any number of web
applications on Apache, with a minimum amount of configuration!

Press ENTER when you are done editing.
[[email protected] ~]# cat << EOF > /etc/httpd/conf.d/passenger.conf
LoadModule passenger_module /usr/local/rvm/gems/ruby-2.4.1/gems/passenger-5.1.8/buildout/apache2/mod_passenger.so
<IfModule mod_passenger.c>
  PassengerRoot /usr/local/rvm/gems/ruby-2.4.1/gems/passenger-5.1.8
  PassengerDefaultRuby /usr/local/rvm/gems/ruby-2.4.1/wrappers/ruby
</IfModule>
EOF
[[email protected] ~]# systemctl restart httpd.service

11、创建数据库

[[email protected] ~]# mysql --user=root --password=XXX
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 11
Server version: 5.5.52-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

MariaDB [(none)]> create database redmine character set utf8;
Query OK, 1 row affected (0.08 sec)

MariaDB [(none)]> quit;
Bye

12、安装Redmine,通过SVN拿版本

cd /var/www
svn co --trust-server-cert --non-interactive https://svn.redmine.org/redmine/branches/3.4-stable redmine

13、配置Redmine数据库连接

cd /var/www/redmine/config
cp database.yml.example database.yml
vim database.yml
# 只改production的参数即可
production:
  adapter: mysql2
  database: redmine
  host: localhost
  username: root
  password: XXX
  encoding: utf8

14、配置Rails,国内源加速

cd /var/www/redmine
gem install bundler
bundle config mirror.https://rubygems.org https://gems.ruby-china.org
bundle install
rake generate_secret_token

15、部署Redmine数据库

RAILS_ENV=production rake db:migrate
RAILS_ENV=production rake redmine:load_default_data

16、启用FCGI

cd /var/www/redmine/public
cp dispatch.fcgi.example dispatch.fcgi
cp htaccess.fcgi.example .htaccess
yum -y install mod_fcgid

17、配置httpd

[[email protected] config]# cat << EOF > /etc/httpd/conf.d/redmine.conf
> <VirtualHost *:80>
>       DocumentRoot /var/www/redmine/public/
>       ErrorLog logs/redmine_error_log
>       <Directory "/var/www/redmine/public/">
>             Options Indexes ExecCGI FollowSymLinks
>             Order allow,deny
>             Allow from all
>             AllowOverride all
>       </Directory>
> </VirtualHost>
> EOF

18、运行Redmine

cd /var/www
chown -R apache:apache redmine
chmod -R 755 redmine
systemctl restart httpd.service

19、访问网页,收工。

时间: 2024-10-12 22:47:33

Redmine部署安装手记的相关文章

Centos系统环境下Redmine部署安装手册

1 安装mysql 下载mysql-5.0.51b.tar.gz到目录/home/oemplat/下,新建mysql安装后的目录/home/oemplat/mysql/ 解压文件并安装配置的命令如下: cd /home/oemplat/ tar -xzvf mysql-5.0.51b.tar.gz cd /home/oemplat/mysql-5.0.51b#进入解压后的源码目录 ./configure--prefix=/home/oemplat/mysql/ --with-charset=gb

Redmine部署到Windows Azure

有幸,今天可以尝试将Redmine部署到Windows Azure中,记下点滴,方便大家查阅 步骤一:Windows Azure中安装Ubuntu VM 遇到的问题,创建VM时会提示云服务.云存储订阅上限问题,此类问题是创建VM时默认会新建云服务和云存储,所以选择下已存在的云服务.如下图所示: 步骤二:配置打开SSH 22 和Remote Desktop 3389端口,如下图所示: 步骤三:使用Putty连接到云服务,安装ubuntu-desktop及xrdp 执行命令: sudo su - s

redmine的安装与配置

1.安装相关软件 yum install make gcc gcc-c++ zlib-devel ruby-devel rubygems ruby-libs apr-devel apr-util-devel httpd-devel mysql-devel automake autoconf ImageMagick ImageMagick-devel curl-devel mysql mysql-server 2.安装包组 yum groupinstall -y "Development Tool

OpenVPN学习笔记——部署安装

上一篇介绍了OpenVPN部署前的环境准备,下面开始具体的部署安装. mkdir -p /opt/tools cd /opt/tools/ wget http://www.oberhumer.com/opensource/lzo/download/lzo-2.03.tar.gz yum install openssl openssl-devel gcc -y # 因为openvpn依赖于openssl,所以这里需要安装openssl和openssl-devel [[email protected

Hadoop0.21.0部署安装以及mapreduce测试

鉴于hadoop的需要...但是并不限于此...有时候闲输入密码麻烦,也可以用这种办法从一个节点通过ssh进入另一个节点... 设要使master进入slave是免密码的,则可以在master(ip为192.168.169.9)中如下操作: 命令:ssh-keygen -t rsa  然后一路回车(该命令不需要进入特定目录) cd进入/root/.ssh/可以看见如下(橙色是新生成的) id_rsa  id_rsa.pub  known_hosts 然后用scp命令将id_rsa远程传输到sla

Sql Server Compact 4.0数据库部署安装

Sql Server Compact 4.0相比3.5版本增强了很多,支持Entity Framework 4.1,对于轻量级应用来讲,使用Sql Server Compact 4.0是个很好的选择,而且部署相当方便,不需要 Sql Server Compact 4.0的安装包,仅需要发布相关的dll以及web.config配置即可. 开发环境下,需要安装 vs2010 sp1 Microsoft SQL Server Compact 4.0 Visual Studio 2010 SP1 Too

Glusterfs部署安装(二)

Glusterfs部署安装 官网 https://www.gluster.org/ 安装前准备 安装VirtualBox 或VMWARE Workstation虚拟机软件. 安装好四台CentOS-6-x86_64(6.2-6.8都可以)的虚拟机. 基本系统:1VCPU+1024M内存+10G硬盘. 网络选择:网络地址转换(NAT). 软件包选择:Basic Server. 关闭iptables和SELinux. 备注:本次安装主机地址分别为192.168.137.13.192.168.137.

Microsoft SQL Server 2012 R2部署安装

SQL Server 的安装相对于其他服务来说还是比较简单的,插入光盘,点击"Setup"打开"SQL Server安装中心",在安装中心界面我们可以通过"计划""安装""维护""工具""资源""高级""选项"进行系统安装,信息查看以及系统设置,首先,点击"硬件和软件要求"来查看是否支持最低软硬件要求配置,在

Windows系统下部署安装一个/多个Tomcat8

首先从http://tomcat.apache.org/上下载Tomcat8.0压缩版的,解压到指定路径后即可.  第一:在Windows系统中安装部署单个Tomcat         对于这种情况,通常的做法配置环境变量,在系统环境变量中添加CATALINE_HOME.JAVA_HOME. 我把tomcat解压到D:\Tomcats\tomcat8.0目录下,JDK在C盘目录下,下面是我配置的环境变量:(桌面上我的电脑右键属性->高级->环境变量) JAVA_HOME C:\Program