1
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 5 years have passed since last update.

snapを使って、Rocket.Chatを構築する

Last updated at Posted at 2019-11-08

前提

  • VirtualBox
  • Debian10
  • Redmine4.0.5インストール済み

目的

  • Rocket.ChatをインストールしてRedmineの更新でRocket.Chatに通知を送る

Nat設定

  • VirtualBox上のNAT設定で3000をHost->Guestに通す

snapのインストール

command
sudo apt install snapd
操作コマンド
# 検索
sudo snap find [スナップ名]
# インストール
sudo snap install [スナップ名]
# アンインストール
sudo snap remove [スナップ名]
# インストール済のSnapを一覧表示
snap list
# アップデート
sudo snap refresh [スナップ名]

Rocket.Chatのインストール

command
sudo snap install rocketchat-server
操作コマンド
# snapのRocket.Chatを起動する
systemctl start snap.rocketchat-server.rocketchat-server.service

# MongoDBのサービス確認(状態が表示されたらCtrl+Cで抜ける)
systemctl status snap.rocketchat-server.rocketchat-mongo.service
^C
# Rocket.Chatのサービス確認
systemctl status snap.rocketchat-server.rocketchat-server.service

http://[host]:3000/にアクセスして
Rocket.Chatのログイン画面が表示されればOK
rocketchat.PNG

1
0
1

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
1
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?