ubuntu安装code-server
- 2025-11-26
- 44
- 0
- 0
- 28.4℃
1、下载 # 下载ubuntu安装包
wget https://github.com/coder/code-server/releases/download/v4.106.2/code-server_4.106.2_amd64.deb
# 添加执行权限
chmod 755 code-server_
mysql建表语句样例
- 2025-11-25
- 27
- 0
- 0
- 26.7℃
这里写一个mysql的建表样例。 create table if not exists app_fund_index_percnet_df (
id int not null comment '主键id',
flag varchar(30) not null default '-' comm
mysql允许远程访问设置
- 2025-11-24
- 32
- 0
- 0
- 27.2℃
1、登录mysql,授权远程用户访问 grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges; 注:123456表示登录密码,需要根据实际修改。 %标识
ubuntu安装doris3.0.8
- 2025-11-23
- 104
- 0
- 0
- 34.4℃
1. 环境准备 安装Java环境 可以安装开源版本也可以去oracle官网下载bin安装包 Doris 3.0+ 不再支持 Java 8,必须使用 Java 17 wget https://mirrors.tuna.tsinghua.edu.cn/Adoptium/17/jdk/x64/linux/
Superset连接Hiveserver2
- 2025-11-11
- 86
- 0
- 0
- 32.6℃
Superset 本身没有提供链接 Hive的想先,可以使用 PyHive 或 Impyla 这类专门的适配器库来与 HiveServer2 通信。 一:环境准备(安装连接器驱动) 首先,需要在运行 Superset 的 Python 环境中安装必要的 Python 库。 推荐使用 PyHive 方
ubuntu切换ananconda国内镜像源
- 2025-11-10
- 105
- 0
- 0
- 34.5℃
在 Ubuntu 系统中切换 Anaconda 的软件源可以显著提高包下载速度。以下是详细的步骤: 1. 查看当前 conda 配置 conda config --show-sources
conda config --show channels 2. 添加国内镜像源 方法一: