龙腾万里sky的博客

养得胸中一种恬静

使用 htop -t 效果展示如下图

pp49tOO.png

htop 支持Linux发行版比较丰富,以RHEL9(EL9)CentOS Stream 9进行示例演示。

htop仓库地址https://github.com/htop-dev/htop

htop官网:https://htop.dev/downloads.html

epel:https://docs.fedoraproject.org/en-US/epel/

RHEL使用epel库,CentOS Stream 9

1
2
dnf config-manager --set-enabled crb
dnf install epel-release epel-next-release

wget获取epel:

1
wget https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm
阅读全文 »

pp2dg74.png

我相信有不少小伙伴已经用过eureka,那么问题来了,Nacos是个啥?

看到这个标题,MySQL数据库与Nacos搭建监控服务,它们有什么关系么?

其实是Nacos支持连接MySQL,内部已配置好数据源、连接池供我们使用。如果使用其它数据源(比如信创要求,使用达梦数据库比较多),可以通过插件形式适配,模仿MySQL实现方式。具体如何实现,可参考 Nacos 的 github issues。

阅读全文 »

npm切换镜像源

安装 npm & nodejs

Linux(RHEL系列)安装npm & nodejs

1
2
yum -y install npm
yum -y install node

查看镜像源使用状态:npm config get registry
切换到官方镜像源:npm config set registry http://www.npmjs.org
切换到淘宝镜像源:npm config set registry http://registry.npm.taobao.org

切换npm源:

1
npm config set registry http://registry.npm.taobao.org

安装nrm插件

安装nrm插件:

1
npm install nrm -g
阅读全文 »

Linux(CentOS-Stream-9)平台相对容易点,RHEL系列使用yum或者dnf管理工具安装Rust环境即可体验。

Rust官网:https://www.rust-lang.org/zh-CN/learn/get-started

ppBKbA1.png

如果你只是想在Windows环境体验Rust,可能比较麻烦,需要获取vs_BuildTools。

体验简易步骤如下。

Rust初体验:hello rust

1、安装rust环境

1
yum -y install rust.x86_64

2、新建rust工作空间

1
2
mkdir rust_workspace
cd rust_workspace/
阅读全文 »

主要托管在 github pages ,主站访问体验可能不友好。

实验阶段,备用地址采用 vercel 、netlify 提供的 pages 服务搭建。

阅读全文 »
0%