0%

本文亮点

作者认为,本教程是目前网络上最新且最简单的,“一条命令”指的并不是真的只需一条命令,但是核心命令只有一条

  • 最新:网上的教程基本是一年前甚至几年前写的,某些参数和控制台命令已经不能使用
  • 最简单:相较于作者之前写的教程和网上的教程,省去了与 geth console 交互的步骤

本文的命令以 Windows 系统为准

阅读全文 »

配置过程

实验环境: Kibana 版本8.7.1, Elasticsearch 版本8.7.1,在 wsl2-ubuntu22.0.4 上部署

作者在启动 Kibana 的时候,遇到了找不到 nodejs 的报错,最后发现是 kibana-x.x.x/node 文件权限的问题,只需要用 chmod 755 kibana-x.x.x/node 即可

阅读全文 »

项目用处

Doris通过创建外部表方式将Doris的分布式查询规划能力和ES(Elasticsearch)的全文检索能力相结合,提供更完善的 OLAP 分析场景解决方案,支持:

  • ES 中的多index分布式Join查询
  • Doris 和 ES 中的表联合查询,更复杂的全文检索过滤
阅读全文 »

前言

这是我第一次参加 CTF 竞赛,感觉还是很好玩的,也很有收获
由于本人是第一次参加CTF比赛,所以一开始不知道得到flag需要截图,所以有些题目没有flag截图,一些流程的图片也没有截到。但是我会尽量将思路讲清楚的

阅读全文 »

编写智能合约

以下编写了一个简单的存储智能合约,不是 NFT 智能合约。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0;

contract SimpleStorage {
uint storedData;

function set(uint x) public {
storedData = x;
}

function get() public view returns (uint) {
return storedData;
}

function add(uint x) public {
uint y = x + storedData;
storedData = y;
}
}
阅读全文 »

由于综合实践项目需要用到Flink CDC、Kafka、ElasticSearch、Kibana、Doris,以下是对这些框架/技术的调研

阅读全文 »

在Go中调用以太坊的格式如下

1
2
3
client, _ := rpc.Dial("http://localhost:8545")
var result bool
client.Call(&result ,"net_listening")
阅读全文 »

这里的命令以 Linux 系统为准,但是在 Windows 系统下也是基本相同的

阅读全文 »

Start My Blogging Journey

This is my first post. Although it seems to be essential, I have never done this before.
I want to create my own blog, which can show my identity.

Another Reason

I am publishing this blog post as part of my assignment for the cloud computing course.
My name is 黄梓铭 and my ID number is 21311151.