This commit is contained in:
chaos-zhu 2022-06-16 19:00:10 +08:00
parent a534e3a12e
commit cddf49b1d8
2 changed files with 163 additions and 134 deletions

23
Q&A.md Normal file
View File

@ -0,0 +1,23 @@
# 用于收集一些疑难杂症
- 欢迎pr~
## 甲骨文CentOS7/8启动服务失败
> 先关闭SELinux
```shell
vi /etc/selinux/config
SELINUX=enforcing
// 修改为禁用
SELINUX=disabled
```
> 重启:`reboot`,再使用一键脚本安装
> 查看SELinux状态sestatus
## 甲骨文ubuntu20.04客户端服务启动成功,无法连接?
> 端口未开放:`iptables -I INPUT -s 0.0.0.0/0 -p tcp --dport 22022 -j ACCEPT`

View File

@ -78,9 +78,13 @@ wget -qO- --no-check-certificate https://ghproxy.com/https://raw.githubuserconte
> 安装:支持后续一键升级 > 安装:支持后续一键升级
#### X86架构
```shell ```shell
wget -qO- --no-check-certificate https://ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/master/easynode-client-install.sh | bash wget -qO- --no-check-certificate https://ghproxy.com/https://raw.githubusercontent.com/chaos-zhu/easynode/master/easynode-client-install.sh | bash
```
#### ARM架构
```shell
待补充
``` ```
> 卸载:无服务残留 > 卸载:无服务残留
@ -92,6 +96,8 @@ wget -qO- --no-check-certificate https://ghproxy.com/https://raw.githubuserconte
> 查看客户端状态:`systemctl status easynode-client` > 查看客户端状态:`systemctl status easynode-client`
> >
> 查看客户端日志: `journalctl --follow -u easynode-client` > 查看客户端日志: `journalctl --follow -u easynode-client`
>
> 查看详细日志journalctl -xe
--- ---