跳转到内容

SRE笔记

  • 密码
    • 短链
  • 服务器
  • 关于

dn

259RSS订阅

dn 的帖子

ssh做端口转发

#本地5566端口转发到公网机器的7788端口 ssh -fNTR 7788:localhost:5… 继续阅读 ssh做端口转发

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: bash, https, ssh
  • 发表评论: ssh做端口转发

Hardware benchmarks on the Filecoin testnet

git clone –branch master https://github.com/filec… 继续阅读 Hardware benchmarks on the Filecoin testnet

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: bash, cpu, fil, filecoin, git, https, lotus, make
  • 发表评论: Hardware benchmarks on the Filecoin testnet

Lotus Storage Miner

https://filecoin.io/vintage/mining-hardware-config… 继续阅读 Lotus Storage Miner

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: fil, filecoin, hardware, https, I/O
  • 发表评论: Lotus Storage Miner

filecoin白皮书

https://filecoin.io/filecoin.pdf

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: fil, filecoin, https, I/O
  • 发表评论: filecoin白皮书

Filecoin 三种地址格式

普通地址格式(f1 开头): f16tugakjlpyoomxy5uv2d6bdj7wcyr3ueo… 继续阅读 Filecoin 三种地址格式

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: fil, https
  • 发表评论: Filecoin 三种地址格式

lotus创建钱包

BLS 钱包 lotus wallet new bls secp256k1 钱包 lotus wal… 继续阅读 lotus创建钱包

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: bash, https, lotus
  • 发表评论: lotus创建钱包

youtube视频下载

https://github.com/kkdai/youtube

  • 发表于: 2021-09-08 2021-09-08
  • 作者: dn
  • 分类: SRE
  • 标签: https
  • 发表评论: youtube视频下载

nvidia获取设备编号

nvidia-smi -L

  • 发表于: 2021-09-07 2021-09-07
  • 作者: dn
  • 分类: SRE
  • 标签: bash, https
  • 发表评论: nvidia获取设备编号

检查NUMA状态

apt-get install numactl numastat 只有node0则没开NUMA

  • 发表于: 2021-09-07 2021-09-07
  • 作者: dn
  • 分类: SRE
  • 标签: bash, https
  • 发表评论: 检查NUMA状态

软RAID开机丢失

mdadm -Ds >> /etc/mdadm/mdadm.conf

  • 发表于: 2021-09-07 2021-09-07
  • 作者: dn
  • 分类: SRE
  • 标签: bash, https
  • 发表评论: 软RAID开机丢失

lotus创建令牌

Lotus节点: lotus auth create-token –perm <read,w… 继续阅读 lotus创建令牌

  • 发表于: 2021-09-07 2021-09-07
  • 作者: dn
  • 分类: SRE
  • 标签: bash, lotus
  • 发表评论: lotus创建令牌

rust安装

curl –proto ‘=https’ –tlsv1.2 -sSf https://sh.ru… 继续阅读 rust安装

  • 发表于: 2021-09-07 2021-09-07
  • 作者: dn
  • 分类: SRE
  • 标签: bash, curl, https, rust
  • 发表评论: rust安装

lotus-worker启动不同任务类型

启动一个只接 P1 任务的 worker lotus-worker run –listen={wo… 继续阅读 lotus-worker启动不同任务类型

  • 发表于: 2021-09-07 2021-09-07
  • 作者: dn
  • 分类: SRE
  • 标签: bash, fil, lotus
  • 发表评论: lotus-worker启动不同任务类型

curl: option –data-raw: is unknown

curl版本差异,换成–data即可

  • 发表于: 2021-09-06 2021-09-06
  • 作者: dn
  • 分类: SRE
  • 标签: curl, https
  • 发表评论: curl: option –data-raw: is unknown

从filscan获取fil全网状态信息

curl ‘https://api.filscan.io:8700/rpc/v1’ \ -H ‘Co… 继续阅读 从filscan获取fil全网状态信息

  • 发表于: 2021-09-06 2021-09-06
  • 作者: dn
  • 分类: SRE
  • 标签: fil, https, I/O, json
  • 发表评论: 从filscan获取fil全网状态信息

Quality of life improvements in Go

https://docs.google.com/presentation/d/1sBXrDYiSCP… 继续阅读 Quality of life improvements in Go

  • 发表于: 2021-09-06 2021-09-06
  • 作者: dn
  • 分类: SRE
  • 标签: go, https
  • 发表评论: Quality of life improvements in Go

information_schema.processlist

按客户端 IP 分组,看哪个客户端的链接数最多 select client_ip,count(cli… 继续阅读 information_schema.processlist

  • 发表于: 2021-09-05 2021-09-05
  • 作者: dn
  • 分类: SRE
  • 标签: MySQL, sql
  • 发表评论: information_schema.processlist

查询执行时间超过2分钟的线程,然后拼接成 kill 语句

select concat(‘kill ‘, id, ‘;’) from information_s… 继续阅读 查询执行时间超过2分钟的线程,然后拼接成 kill 语句

  • 发表于: 2021-09-05 2021-09-05
  • 作者: dn
  • 分类: SRE
  • 标签: https, MySQL, sql
  • 发表评论: 查询执行时间超过2分钟的线程,然后拼接成 kill 语句

golang 环境变量

wget https://golang.google.cn/dl/go1.17.linux-amd6… 继续阅读 golang 环境变量

  • 发表于: 2021-09-03 2021-09-03
  • 作者: dn
  • 分类: SRE
  • 标签: aliyun, bash, go, golang, https, Linux, tar
  • 发表评论: golang 环境变量

randomx算法cpu算力排名

https://www.hashrates.com/cpus/

  • 发表于: 2021-09-02 2021-09-02
  • 作者: dn
  • 分类: SRE
  • 标签: cpu, https
  • 发表评论: randomx算法cpu算力排名

分页

上一页 页码: 1 … 页码: 7 页码: 8 页码: 9 页码: 10 页码: 11 页码: 12 页码: 13 下一页

搜索

搜索:

近期评论

  • 周周 发表在《Kubernetes部署NextCloud网盘》
  • mysql m-s via gtid – SRE笔记 发表在《MySQL SET GTID_NEXT》
  • kangder 发表在《Kubernetes部署NextCloud网盘》
  • xs 发表在《Kubernetes部署NextCloud网盘》
  • test 发表在《gin不转义html标签》

标签

aws (15) bash (1123) Blockchain (28) centos (28) Docker (105) elasticsearch (26) eth (34) fil (39) go (129) golang (154) Grafana (13) hpc (15) http (299) https (1999) ingress (14) iptables (20) java (75) JVM (20) kubernetes (309) Linux (546) lotus (30) mongoDB (41) MySQL (184) nginx (112) php (25) python (148) redis (34) s3 (75) shell (20) springboot (32) tcp (69) tomcat (15) ubuntu (31) vue (18) windows (42) wordpress (14) zabbix (37) 夏小胖 (31) 安全 (55) 工具 (451) 折腾 (24) 推荐 (15) 硬件 (61) 网络 (246) 资源 (49)

归档

  • 2024 年 12 月
  • 2024 年 11 月
  • 2024 年 10 月
  • 2024 年 9 月
  • 2024 年 8 月
  • 2024 年 7 月
  • 2024 年 6 月
  • 2024 年 5 月
  • 2024 年 4 月
  • 2024 年 3 月
  • 2024 年 2 月
  • 2024 年 1 月
  • 2023 年 12 月
  • 2023 年 11 月
  • 2023 年 10 月
  • 2023 年 9 月
  • 2023 年 8 月
  • 2023 年 7 月
  • 2023 年 6 月
  • 2023 年 5 月
  • 2023 年 4 月
  • 2023 年 3 月
  • 2023 年 2 月
  • 2023 年 1 月
  • 2022 年 12 月
  • 2022 年 11 月
  • 2022 年 10 月
  • 2022 年 9 月
  • 2022 年 8 月
  • 2022 年 7 月
  • 2022 年 6 月
  • 2022 年 5 月
  • 2022 年 4 月
  • 2022 年 3 月
  • 2022 年 2 月
  • 2022 年 1 月
  • 2021 年 12 月
  • 2021 年 11 月
  • 2021 年 10 月
  • 2021 年 9 月
  • 2021 年 8 月
  • 2021 年 7 月
  • 2021 年 6 月
  • 2021 年 5 月
  • 2021 年 4 月
  • 2021 年 3 月
  • 2021 年 2 月
  • 2021 年 1 月
  • 2020 年 12 月
  • 2020 年 11 月
  • 2020 年 10 月
  • 2020 年 9 月
  • 2020 年 8 月
  • 2020 年 7 月
  • 2020 年 6 月
  • 2020 年 5 月
  • 2020 年 4 月
  • 2020 年 3 月
  • 2020 年 2 月
  • 2020 年 1 月
  • 2019 年 12 月
  • 2019 年 11 月
  • 2019 年 10 月
  • 2019 年 9 月
  • 2019 年 8 月
  • 2019 年 7 月
  • 2019 年 6 月
  • 2019 年 5 月
  • 2019 年 4 月
  • 2019 年 3 月
  • 2019 年 2 月
  • 2019 年 1 月
  • 2018 年 12 月
  • 2018 年 11 月
  • 2018 年 10 月
  • 2018 年 9 月
  • 2018 年 8 月
  • 2018 年 7 月
  • 2018 年 6 月
  • 2018 年 5 月
  • 2018 年 4 月
  • 2018 年 3 月
  • 2018 年 2 月
  • 2018 年 1 月
  • 2017 年 12 月
  • 2017 年 11 月
  • 2017 年 10 月
  • 2017 年 8 月
  • 2017 年 7 月
  • 2017 年 6 月
  • 2017 年 5 月
  • 2017 年 4 月
  • 2017 年 3 月
  • 2017 年 2 月
  • 2017 年 1 月
  • 2016 年 12 月
  • 2016 年 11 月
  • 2016 年 10 月
  • 2016 年 9 月
  • 2016 年 8 月
  • 2016 年 7 月
  • 2016 年 6 月
  • 2016 年 5 月
  • 2016 年 4 月
  • 2016 年 3 月
  • 2016 年 2 月
  • 2016 年 1 月
  • 2015 年 12 月
  • 2015 年 10 月
  • 2015 年 9 月
  • 2015 年 8 月
  • 2015 年 7 月
  • 2015 年 6 月
  • 2015 年 5 月
  • 2015 年 4 月
  • 2015 年 3 月
  • 2015 年 2 月
  • 2015 年 1 月
  • 2014 年 12 月
  • 2014 年 11 月
  • 2014 年 10 月
  • 2014 年 9 月
  • 2014 年 8 月
  • 2014 年 7 月
  • 2014 年 6 月
  • 2014 年 5 月
  • 2014 年 2 月