0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Redmine 4.1をUbuntu 20.04にインストール

Posted at

##必要なパッケージのインストール
http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

####rbenv&ruby2.6インストール

sudo git clone https://github.com/rbenv/rbenv.git /usr/local/rbenv
sudo git clone https://github.com/rbenv/ruby-build.git /usr/local/rbenv/plugins/ruby-build
sudo RBENV_ROOT=/usr/local/rbenv /usr/local/rbenv/bin/rbenv init -
sudo RBENV_ROOT=/usr/local/rbenv /usr/local/rbenv/bin/rbenv install 2.6.x
sudo RBENV_ROOT=/usr/local/rbenv /usr/local/rbenv/bin/rbenv global 2.6.x

####/etc/profileに追加

export RBENV_ROOT=/usr/local/rbenv
export PATH="$RBENV_ROOT/bin:$RBENV_ROOT/shims:$PATH"
eval "$(rbenv init -)"

####visudoでパスの設定

Defaults	secure_path="/usr/local/rbenv/bin:/usr/local/rbenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
Defaults	env_keep += "RBENV_ROOT"

####Bundlerインストール

gem install bundler  

PostgreSQLの設定

http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

####database.yml編集
http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

####gemパッケージのインストール
http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

####Redmineの初期設定
http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

####Passengerのインストール
http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

Apacheの設定

http://blog.redmine.jp/articles/4_1/install/ubuntu/
の通りに実施

####stringio
ApacheのErrorログでstringioが古いといわれたのでupdate

sudo gem update stringio
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?