概要
コミュニケーションを履歴で残して、設計書もwikiで書く。そういったモダンな開発スタイルに働き方を変えていきたいので、Confluenceの環境を立てました。
社内では全社Redmineなるものがあるがカスタマイズ皆無だったり使い勝手悪そうだし、逆に使いたくなくなったというのもある。
バージョンとか
ライセンスはチームの数人で使うなら、1000円で買い切りなのでまぁ自腹でもいいかと
今回は Debian に Confluence の 6.6.2 を入れることにしました
インストール手順
メディアをダウンロードしてきます
# Download sh
wget https://www.atlassian.com/software/confluence/downloads/binary/atlassian-confluence-6.6.2-x64.bin
chmod +x atlassian-confluence-6.6.2-x64.bin
# Execulte
./atlassian-confluence-6.6.2-x64.bin
Unpacking JRE ...
Starting Installer ...
Feb 15, 2018 2:12:31 PM java.util.prefs.FileSystemPreferences$1 run
INFO: Created user preferences directory.
Feb 15, 2018 2:12:31 PM java.util.prefs.FileSystemPreferences$2 run
INFO: Created system preferences directory in java.home.
You do not have administrator rights to this machine and as such, some installation options will not be available.
Are you sure you want to continue?
Yes [y, Enter], No [n]
y ## 1. [Enter] ##
This will install Confluence 6.7.1 on your computer.
OK [o, Enter], Cancel [c]
o ## 2. [Enter] ##
Choose the appropriate installation or upgrade option.
Please choose one of the following:
Express Install (uses default settings) [1],
Custom Install (recommended for advanced users) [2, Enter],
Upgrade an existing Confluence installation [3]
1 ## 3. [Enter] ##
See where Confluence will be installed and the settings that will be used.
Installation Directory: /home/hiroyuki_fukui_va/atlassian/confluence
Home Directory: /home/hiroyuki_fukui_va/atlassian/application-data/confluence
HTTP Port: 8090
RMI Port: 8000
Install as service: No
Install [i, Enter], Exit [e]
i
Extracting files ...
Please wait a few moments while we configure Confluence.
Installation of Confluence 6.7.1 is complete
Start Confluence now?
Yes [y, Enter], No [n]
y
Please wait a few moments while Confluence starts up.
Launching Confluence ...
Installation of Confluence 6.7.1 is complete
Your installation of Confluence 6.7.1 is now ready and can be accessed via
your browser.
Confluence 6.7.1 can be accessed at http://localhost:8090
Finishing installation ...
その後GUIでライセンス入力してうんぬんするが、HTTP 500 Errorでアクセスできなくなる
なぜと思い旧バージョンでインストールしたり試してみたがどれもうまく行かず、
結局ただどPermissionの設定不足でした
参考
sudo chmod +x /ect/init.d/confluence
sudo /ect/init.d/confluence restart
これで再度ブラウザからアクセスすればOK!!