一、yarr介绍
1.1 yarr简介
1.2 yarr使用场景
- 新闻阅读:Yarr 可以将多个 RSS 源聚合在一起,为用户提供一个集中阅读新闻的平台。用户可以订阅自己感兴趣的新闻源,并在 Yarr 中方便地浏览和阅读最新的新闻提要。
- 博客订阅:如果您关注多个博客,Yarr 可以帮助您将各个博客的最新文章聚合在一起。您可以订阅您喜欢的博客的 RSS 提要,并通过 Yarr 在一个界面中查看和阅读这些文章。
- 论坛跟帖:有些论坛提供了 RSS 提要功能,用户可以通过订阅论坛的 RSS 提要来获取最新的帖子和回复。Yarr 可以帮助用户将多个论坛的提要聚合在一起,方便用户在一个界面中浏览和跟踪这些论坛的动态。
- 自定义数据源:Yarr 还支持用户添加自定义的 RSS 源,用户可以根据自己的需求,添加自己喜欢的网站或博客的提要。这样,用户可以在 Yarr 中方便地查看多个数据源的最新内容。
二、本地环境介绍
2.1 本地环境规划
2.2 本次实践介绍
三、检查本地环境
3.1 检查本地操作系统版本
root@ubuntu-001:~# cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.1 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.1 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
3.2 检查系统内核版本
root@ubuntu-001:~# uname -r
5.15.0-97-generic
四、部署Node.js 环境
4.1 下载Node.js安装包
wget https://nodejs.org/dist/v20.10.0/node-v20.10.0-linux-x64.tar.xz
4.2 解压Node.js安装包
tar -xvJf node-v20.10.0-linux-x64.tar.xz
4.3 创建软链接
ln -s /root/node-v20.10.0-linux-x64/bin/node /usr/local/bin/node
ln -s /root/node-v20.10.0-linux-x64/bin/npm /usr/local/bin/npm
4.4 配置环境变量
export NODE_HOME=/root/node-v20.10.0-linux-x64/bin/
export PATH=$PATH:$NODE_HOME:/usr/local/bin/
source /etc/profile
4.5 查看node版本
root@ubuntu-001:~# npm -v
10.2.3
root@ubuntu-001:~# node -v
v20.10.0
4.6 安装yarn
npm install -g yarn
root@ubuntu-001:~# yarn -v
1.22.22
4.6 设置yarn镜像源
yarn config set registry https://registry.npmmirror.com
root@ubuntu-001:~# yarn config get registry
https://registry.npmmirror.com
五、部署yarr应用
6.1 下载安装包
wget https://github.com/nkanaev/yarr/releases/download/v2.4/yarr-v2.4-linux64.zip
6.2 解压软件包
unzip yarr-v2.4-linux64.zip
6.3 查看帮助信息
root@ubuntu-001:~# ./yarr -h
Usage of ./yarr:
-addr string
address to run server on (default "127.0.0.1:7070")
-auth username:password
string with username and password in the format username:password
-auth-file path
path to a file containing username:password. Takes precedence over --auth (or YARR_AUTH)
-base string
base path of the service url
-cert-file path
path to cert file for https
-db path
storage file path
-key-file path
path to key file for https
-log-file path
path to log file to use instead of stdout
-open
open the server in browser
-version
print application version
The environmental variables, if present, will be used to provide
the default values for the params above:
YARR_ADDR, YARR_BASE, YARR_AUTHFILE, YARR_AUTH, YARR_CERTFILE, YARR_KEYFILE, YARR_DB, YARR_LOGFILE
6.4 启动服务
./yarr -addr 192.168.3.251:9560 -auth admin:admin -open
七、访问yarr服务
八、总结