プロジェクト

全般

プロフィール

丼鯖の建てかた » 履歴 » バージョン 5

白林檎 美和, 2020/07/15 02:35

1 1 白林檎 美和
# 丼鯖の建てかた
2
## 材料
3
* 最新のFreeBSD, nginx, PostgreSQL等が走るホスト
4
* データ置き場のストレージ: ユーザーを増やしたり,廃人のやうにつぶやいたりする気満々の方のみ
5
* 80/tcp, 443/tcpへ外からアクセス可能な,イソターネット接続環境
6
7
## 準備
8
### OSのインスコ
9
1. 最新のFreeBSDのディスクイメージを取ってきて,そいつからホストを起動。2020/7/7現在の最新リリースは, [12.1](http://ftp.jaist.ac.jp/pub/FreeBSD/releases/ISO-IMAGES/12.1/)。
10
1. テキストベースのウィザードを,淡々と進める。データ置き場のストレージを,ルートファイルシステムと別に設ける方は,そいつを /usr/home へマウント。
11 5 白林檎 美和
1. 丼インスタンスの各種プロセスを実行するためのユーザー “mastodon” を作成。
12 1 白林檎 美和
1. 作業しやすいやう, sshdを有効化。sshdを常駐させるもよし, inetdで必要なときだけ起こすもよし。
13
14
### ホストがNATの内側にいる場合
15
1. イソターネットからの80/tcp, 443/tcpへのアクセスを,ホストへ通すよう設定。
16
1. NATの内外どちらからも,同じFQDNでホストへアクセスできるよう, DNS鯖を設定。さうしないと, SSLの証明書を取れなかったり, WWWブラウザで開いたときにSSLが有効にならなかったりする。
17
18
## 丼建て
19
ここからは基本的に,公式サイトの[Installing from source](https://docs.joinmastodon.org/admin/install/)の順番で進める。Ubuntu (Debian系Linux) 固有のコマンド等がばしばし出てきて, FreeBSDでは使えないので,読み替えていく。
20
### Pre-requisites
21
1. /etc/make.conf へ, 次を追加。
22
23
    ```
24
DEFAULT_VERSIONS+=perl5=5.32 python=3.8 python3=3.8 ruby=2.7 ssl=openssl
25
```
26 5 白林檎 美和
    公式は未だruby 2.6.6を指定していたりするので,心配な方は `ruby=2.6` にするとよい。
27
1. パッケージのオプションを選択。nginxのオプションは, PASSENGERをON。丼では使わないが, Redmine等を建てるときに要る。
28 1 白林檎 美和
    ```
29
# portsnap fetch update
30 5 白林檎 美和
# don_pkgs='databases/gdbm databases/postgresql12-server databases/postgresql12-contrib databases/redis devel/bison devel/git devel/protobuf devel/protobuf-c devel/bison devel/icu devel/readline dns/libidn graphics/ImageMagick7 multimedia/ffmpeg textproc/libxml2 textproc/libxslt security/openssl security/py-certbot-nginx security/sudo sysutils/rubygem-bundler www/nginx www/yarn-node12'
31 1 白林檎 美和
# for pack in don_packs; do make -C /usr/ports/$pack config-recursive; done
32
```
33 5 白林檎 美和
1. Portsの一括インスコや更新に便利な, portupgradeをインスコ。これがrubyを引き連れてくる。
34 1 白林檎 美和
    ```
35
# make -C /usr/ports/ports-mgmt/portupgrade config-recursive install clean
36
```
37
1. 丼が使うパッケージを, portsからごりごりインスコ。
38
    ```
39
# portinstall $don_pkgs
40
```
41 5 白林檎 美和
1. 既存のFreeBSDの環境へ導入する方は,ここでユーザー “mastodon” を作成。bsdconfigの [6  Login/Group Management]→[1  Add Login] なり, adduserなり,お好きな方法で。
42 2 白林檎 美和
43
### Setup
44
1. /etc/rc.conf へ次を追加。
45
46
    ```
47
nginx_enable="YES"
48
postgresql_enable="YES"
49
redis_enable="YES"
50
```
51
1. データ置き場を分けた方は, `postgresql_data="/usr/home/postgres/data12"` も追加。既に /var/db/postgres が作られていたら, /usr/home へ移動。
52
1. ぽすぐれを初期化,起動。
53
    ```
54
# service postgresql initdb
55
# service postgresql start
56
```
57
1. 丼DB用のユーザーを作成。ついでに,スーパーユーザーへパスワードを付与。
58
    ```
59
# sudo -u postgres psql
60
postgres=# CREATE USER mastodon WITH PASSWORD '<ぱすわぁど>' CREATEDB;
61
postgres=# ALTER ROLE postgres WITH PASSWORD '<ぱすわぁど>';
62
postgres=# \q  ← ^D
63
```
64
1. ユーザーmastodonへ切り替え。
65
    ```
66
# su - mastodon
67
```
68
1. 丼鯖の最新リリースを取得。
69
    ```
70
$ git clone https://github.com/tootsuite/mastodon.git live
71
$ cd live
72
$ git checkout <最新リリースのタグ>
73
```
74
1. 丼鯖が使う, rubyや農奴のパッケージを, live以下へ配置。`getconf _NPROCESSORS_ONLN` は,ホストのCPUのスレッド数を返す。
75
    ```
76
$ bundle config deployment 'true'
77
$ bundle config without 'development test'
78
$ bundle install -j$(getconf _NPROCESSORS_ONLN)
79
$ yarn install --pure-lockfile
80
```
81
1. 初回設定。
82
  * DBはUNIX domain socketではなく, localhostを指定。前者では, socketのパス名がUbuntu標準と合わず失敗。
83
  * adminのパスワードがランダムに生成されるので,控えておく。
84
85
    ```
86
$ export RAILS_ENV=production
87
$ bundle exec rake mastodon:setup
88
```
89 3 白林檎 美和
1. dist/nginx.conf を /usr/local/etc/nginx/mastodon.conf へコピー。
90
1. /usr/local/etc/nginx に nginx.conf がなかったら,nginx.conf-dist をコピー。
91
    ```
92
# cp -p dist/nginx.conf /usr/local/etc/nginx/mastodon.conf
93
# cd /usr/local/etc/nginx
94
# cp -p nginx.conf-dist nginx.conf
95
```
96
1. nginx.conf の `http { ... }` から, `server { ... }` を削除。末尾に `include mastodon.conf;` を追加。
97
1. mastodon.conf を編集。
98
   1. `server_name` に,ホストのFQDNを記載。
99
   1. IPv6を使わない環境 ⇒ `listen [::]:80;`, `listen [::]:443 ssl http2;` をコメントアウト。
100
   1. /usr/local/etc/letsencrypt/options-ssl-nginx.conf と重複する,次の行をコメントアウト。
101
102
        ```
103
ssl_protocols TLSv1.2 TLSv1.3;
104
ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA;
105
ssl_prefer_server_ciphers on;
106
        ```
107
1. nginxを起動。
108
    ```
109
# service nginx start
110
```
111
1. Let's encryptからSSL証明書を貰う。
112
    ```
113
# certbot --nginx -d <ホストのFQDN>
114
```
115
1. mastodon.conf に次の行が足されたのを確認。
116
    ```
117
ssl_certificate /usr/local/etc/letsencrypt/live/<ホストのFQDN>/fullchain.pem;
118
ssl_certificate_key /usr/local/etc/letsencrypt/live/<ホストのFQDN>/privkey.pem;
119
include /usr/local/etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
120
ssl_dhparam /usr/local/etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
121
```
122
1. nginxを再起動。
123
    ```
124
# service nginx restart
125
```
126
1. /etc/periodic.conf に `weekly_certbot_enable="YES"` を追加。同ファイルがなければ作る。
127
1. dist/*.service の内容を基に,丼鯖の各種サービスの起動/終了用スクリプト /usr/local/etc/rc.d/mastodon を作成。最低限start, stop, restartができればよい。
128
129
``` shell
130
#!/bin/sh
131
132
# PROVIDE: mastodon
133
# REQUIRE: nginx postgresql redis
134
135
. /etc/rc.subr
136
137
name="mastodon"
138
rcvar="${name}_enable"
139
140
load_rc_config $name
141
: ${mastodon_enable="NO"}
142
: ${mastodon_user="mastodon"}
143
: ${mastodon_group="<ユーザーmastodonの所属グループ>"}
144
start_cmd="${name}_start"
145
stop_cmd="${name}_stop"
146
restart_cmd="${name}_restart"
147
148
MASTODON_HOME=/usr/home/mastodon/live
149
BUNDLE=/usr/local/bin/bundle
150
NODE=/usr/local/bin/node
151
DAEMON="/usr/sbin/daemon -u $mastodon_user"
152
PROCS="puma sidekiq node"
153
154
export RAILS_ENV=production
155
export NODE_ENV=production
156
export DB_POOL=25
157
export MALLOC_ARENA_MAX=2
158
export STREAMING_CLUSTER_NUM=1
159
160
mastodon_start() {
161
	cd $MASTODON_HOME
162
	for i in $PROCS; do
163
		pidfile=$i.pid
164
		if [ -f $pidfile ]; then
165
			echo "$i is running as pid $(cat $pidfile)."
166
		else
167
			touch $pidfile
168
			chmod 644 $pidfile
169
			case $i in
170
				puma ) PORT=3000 $DAEMON -p puma.pid -o log/puma.log $BUNDLE exec puma -C config/puma.rb ;;
171
				sidekiq ) $DAEMON -p sidekiq.pid -o log/sidekiq.log $BUNDLE exec sidekiq -c 25 ;;
172
				node ) PORT=4000 $DAEMON -p node.pid -o log/node.log $NODE ./streaming ;;
173
			esac
174
			echo "Started $i."
175
		fi
176
	done
177
}
178
179
mastodon_stop() {
180
	cd $MASTODON_HOME
181
	for i in $PROCS; do
182
		pidfile=$i.pid
183
		if [ -f $pidfile ]; then
184
			pid=$(cat $pidfile)
185
			kill -s TERM $pid
186
			while kill -0 $pid 2> /dev/null; do
187
				sleep 1
188
			done
189
			rm -f $pidfile
190
			echo "Stopped $i."
191
		else
192
			echo "$i is not running."
193
		fi
194
	done
195
	stty echo
196
}
197
198
mastodon_restart() {
199
	$stop_cmd
200
	$start_cmd
201
}
202
203
run_rc_command "$1"
204
```
205
1. /etc/rc.conf へ `mastodon_enable="YES"` を追加。
206 1 白林檎 美和
1. 丼鯖のサービスを起動。
207 3 白林檎 美和
208
    ```
209
# service mastodon start
210
```
211 5 白林檎 美和
1. WWWブラウザから https://*ホストのFQDN*/ を開き, adminのメアドと初期パスワードでログイン。あとはページ内から,各種設定を進める。
212 4 白林檎 美和
213
## ログ回し
214
nginxと丼サービスのログを1週間周期で固めて回すよう, newsyslogを設定。
215
1. /usr/local/etc/newsyslog.conf.d に次のファイルを作成。
216
   * nginx.conf
217
218
        ```
219
# logfilename         [owner:group]  mode  count  size  when   flags  [/pid_file]         [sig_num]
220
/var/log/nginx/*.log                 644   100    *     $W0D0  GX     /var/run/nginx.pid  SIGUSR1
221
```
222
   * mastodon.conf: “usuaji” は,ユーザーmastodonの所属グループに読み替え。
223
        ```
224
# logfilename                  [owner:group]    mode  count  size  when   flags  [/pid_file]                    [sig_num]
225
/home/mastodon/live/log/*.log  mastodon:usuaji  644   100    *     $W0D0  GRX    /usr/home/mastodon/restart.sh
226
```
227
1. /usr/home/mastodon/restart.sh を作成。
228
    ``` shell
229
#!/bin/sh
230
service mastodon restart
231
```
232
1. newsyslogを再起動。
233
    ```
234
# service newsyslog restart
235
```