This commit is contained in:
Yue_plus 2023-12-11 15:02:28 +00:00 committed by GitHub
commit d77e1333d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 81 additions and 65 deletions

View File

@ -1,6 +1,6 @@
---
title: 从源中安装
description: 创建你自己的Mastodon站点的教学指献
description: 创建你自己的 Mastodon 站点的教学指南
menu:
docs:
weight: 20
@ -9,30 +9,35 @@ menu:
## 前提条件 {#pre-requisites}
* 一台你有root访问权限的运行 **Ubuntu 18.04** 的机器
* 一个用于Mastodon站点的**域名**(或一个子域名),例如:`example.com`
* 一个电子邮件发送服务提供商,或其他**SMTP服务器**
* 一台你有 root 访问权限的运行 **Ubuntu 18.04** 或 **Debian 11** 的机器
* 一个用于 Mastodon 站点的 **域名**(或一个子域名),例如:`example.com`
* 一个电子邮件发送服务提供商,或其他 **SMTP 服务器**
你需要使用root用户运行命令。如果你现在不是root用户请切换至root用户
### 软件仓库 {#system-repositories}
首先确保已经安装curl
首先确保已经安装 curl、wget、gnupg、apt-transport-https、lsb-release、ca-certificates
```bash
apt install -y curl wget gnupg apt-transport-https lsb-release ca-certificates
```
#### Node.js {#node-js}
```bash
curl -sL https://deb.nodesource.com/setup_12.x | bash -
curl -sL https://deb.nodesource.com/setup_16.x | bash -
```
#### Yarn {#yarn}
#### PostgreSQL {#postgresql}
```bash
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
wget -O /usr/share/keyrings/postgresql.asc https://www.postgresql.org/media/keys/ACCC4CF8.asc
echo "deb [signed-by=/usr/share/keyrings/postgresql.asc] http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/postgresql.list
```
### 软件包 {#system-packages}
### 系统软件包 {#system-packages}
```bash
apt update
@ -40,26 +45,33 @@ apt install -y \
imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git-core \
g++ libprotobuf-dev protobuf-compiler pkg-config nodejs gcc autoconf \
bison build-essential libssl-dev libyaml-dev libreadline6-dev \
zlib1g-dev libncurses5-dev libffi-dev libgdbm5 libgdbm-dev \
zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev \
nginx redis-server redis-tools postgresql postgresql-contrib \
certbot python-certbot-nginx yarn libidn11-dev libicu-dev libjemalloc-dev
certbot python3-certbot-nginx libidn11-dev libicu-dev libjemalloc-dev
```
#### Yarn {#yarn}
```bash
corepack enable
yarn set version classic
```
### 安装 Ruby {#installing-ruby}
因为使用 rbenv 可以更容易的获得正确的版本并在新版本发布后进行更新,我们将使用 rbenv 来管理Ruby版本。rbenv 必须安装在单个Linux用户中因此我们首先需要使用以下命令创建一个Mastodon用户
我们将使用 rbenv 来管理 Ruby 版本因为更容易获得正确的版本并在新版本发布后进行更新。rbenv 必须为单个 Linux 用户安装 因此,首先我们必须创建 Mastodon 运行的用户:
```bash
adduser --disabled-login mastodon
```
切换到mastodon用户:
然后我们可以切换到用户:
```bash
su - mastodon
```
执行以下步骤安装 rbenv 和 rbenv-build
并继续安装 rbenv 和 rbenv-build
```bash
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
@ -70,44 +82,44 @@ exec bash
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
```
上述操作完成,我们便可以安装正确的 Ruby 版本:
完成此操作后,我们可以安装正确的 Ruby 版本:
```bash
RUBY_CONFIGURE_OPTS=--with-jemalloc rbenv install 2.6.6
rbenv global 2.6.6
RUBY_CONFIGURE_OPTS=--with-jemalloc rbenv install 3.0.4
rbenv global 3.0.4
```
我们同样需要安装 bundler
我们需要安装 bundler
```bash
gem install bundler --no-document
```
返回root用户
返回root 用户:
```bash
exit
```
## 配置 {#setup}
## 安装 {#setup}
### 置 PostgreSQL {#setting-up-postgresql}
### 置 PostgreSQL {#setting-up-postgresql}
#### 性能调优(可选) {#performance-configuration-optional}
#### 性能配置(可选) {#performance-configuration-optional}
为了优化性能,你可以使用 [pgTune](https://pgtune.leopard.in.ua/#/) 生成一个合适的配置文件。编辑 `/etc/postgresql/9.6/main/postgresql.conf` 中的相应数值并使用 `systemctl restart postgresql` 命令重启 PostgreSQL。
为了获得最佳性能,可以使用 [pgTune](https://pgtune.leopard.in.ua/#/) 生成适当的配置,编辑 `/etc/postgresql/15/main/postgresql.conf` 然后执行 `systemctl restart postgresql` 重新启动 PostgreSQL。
#### 创建户 {#creating-a-user}
#### 创建户 {#creating-a-user}
你需创建一个供Mastodon使用的PostgreSQL帐户。创建一个使用“ident”认证方式的帐户是最容易的配置方法即PostgreSQL帐户不需要独立的密码并由同名Linux用户使用。
你需要创建一个 Mastodon 可以使用的 PostgreSQL 用户。在简单的设置中使用“ident”身份验证是最容易的即 PostgreSQL 用户没有单独的密码,可以由具有相同用户名的 Linux 用户使用。
打开控制台
打开提示符
```bash
sudo -u postgres psql
```
控制台中执行:
提示符中,执行:
```sql
CREATE USER mastodon CREATEDB;
@ -116,26 +128,26 @@ CREATE USER mastodon CREATEDB;
完成!
### 置 Mastodon {#setting-up-mastodon}
### 置 Mastodon {#setting-up-mastodon}
现在该下载Mastodon代码了。切换至mastodon用户:
是时候下载 Mastodon 代码了。切换到 astodon 用户:
```bash
su - mastodon
```
#### 出代码 {#checking-out-the-code}
#### 出代码 {#checking-out-the-code}
使用git下载最新稳定版Mastodon
使用 Git 下载 Mastodon 的最新稳定版本
```bash
git clone https://github.com/mastodon/mastodon.git live && cd live
git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
```
#### 安装依赖 {#installing-the-last-dependencies}
#### 安装最后的依赖 {#installing-the-last-dependencies}
现在安装Ruby和JavaScript依赖
现在要安装 Ruby 和 JavaScript 依赖项
```bash
bundle config deployment 'true'
@ -145,10 +157,10 @@ yarn install --pure-lockfile
```
{{< hint style="info" >}}
两个`bundle config`命令仅仅第一次安装依赖时需要。如果你之后进行升级或重安装依赖,只需要`bundle install`就够了。
这两个 `bundle config` 命令仅在首次安装依赖项时需要。如果以后要更新或重新安装依赖项,只需要 `bundle install` 就可以了。
{{< /hint >}}
#### 生成配置文件 {#generating-a-configuration}
#### 生成配置 {#generating-a-configuration}
运行交互式安装向导:
@ -156,68 +168,72 @@ yarn install --pure-lockfile
RAILS_ENV=production bundle exec rake mastodon:setup
```
将:
将:
* 创建一个配置文件
* 预编译静态文件
* 创建数据库schema
* 创建配置文件
* 运行资产预编译
* 创建数据库架构
配置文件被保存在`.env.production`。如果你愿意的话,你可以查看并编辑这个文件。请参阅[配置文件的文档]({{< relref "config" >}})。
配置文件保存为 `.env.production`。你可以对自己的喜好进行查看和编辑。请参阅 [相关配置文档]({{< relref "config" >}})
已经完成需使用mastodon用户进行的操作请切换回root用户:
现在已经完成了 mastodon 用户,因此请切换回 root 用户:
```bash
exit
```
### 置 nginx {#setting-up-nginx}
### 置 nginx {#setting-up-nginx}
Mastodon目录复制配置文件模版到nginx
Mastodon 目录中复制 nginx 的配置模板
```bash
cp /home/mastodon/live/dist/nginx.conf /etc/nginx/sites-available/mastodon
ln -s /etc/nginx/sites-available/mastodon /etc/nginx/sites-enabled/mastodon
```
编辑 `/etc/nginx/sites-available/mastodon`,替换 `example.com` 为你自己的域名,你可以根据自己的需求做出其它的一些调整。
然后编辑 `/etc/nginx/sites-available/mastodon` 文件,将 `example.com` 替换为自己的域名,并进行其他任何调整。
重载 nginx 以使更生效:
新加载 nginx 以使更生效:
### 获取SSL证书 {#acquiring-a-ssl-certificate}
我们将使用 Lets Encrypt 获取一个免费的SSL证书
```bash
systemctl reload nginx
```
### 获取 SSL 证书 {#acquiring-a-ssl-certificate}
我们将使用 Let's Encrypt 来获取免费的 SSL 证书:
```bash
certbot --nginx -d example.com
```
这个命令将获取一个证书,自动更新 `/etc/nginx/sites-available/mastodon` 以使用新证书并重载nginx以使变更生效。
将获得证书,自动更新 `/etc/nginx/stites-abailable/mastodon` 使用新证书,然后 执行 `systemctl reload nginx` 使更改生效。
现在你应该能够通过浏览器访问你的域名然后看到一只大象锤击电脑屏幕的错误页面。这是因为我们还没有启动Mastodon进程。
此时,你应该能够在浏览器中访问你的域名,并看到大象点击计算机屏幕错误页面。这是因为我们还没有启动 Mastodon 进程。
### 置 systemd 服务 {#setting-up-systemd-services}
### 置 systemd 服务 {#setting-up-systemd-services}
Mastodon目录复制systemd服务模版
Mastodon 目录中复制 systemd 服务模板
```bash
```sh
cp /home/mastodon/live/dist/mastodon-*.service /etc/systemd/system/
```
然后修改以下文件,以保证用户名与路径是正确的
如果您在任何时候偏离默认值,请检查用户名和路径是否正确
* `/etc/systemd/system/mastodon-web.service`
* `/etc/systemd/system/mastodon-sidekiq.service`
* `/etc/systemd/system/mastodon-streaming.service`
最后启动新systemd服务并将该服务设为开机自动激活
```bash
systemctl daemon-reload
systemctl start mastodon-web mastodon-sidekiq mastodon-streaming
systemctl enable mastodon-*
```sh
$EDITOR /etc/systemd/system/mastodon-*.service
```
他们将在开机启动时自动开始运行。
最后,启动并启用新的 systemd 服务:
```sh
systemctl daemon-reload
systemctl enable --now mastodon-web mastodon-sidekiq mastodon-streaming
```
它们现在将在开机时自动启动。
{{< hint style="success" >}}
**欢呼吧!你现在可以从浏览器中访问你的域名了!**