阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

在集群中Java 通过调用API操作HBase 0.98

384次阅读
没有评论

共计 17394 个字符,预计需要花费 44 分钟才能阅读完成。

在集群中 Java 通过调用 API 操作 HBase 0.98

本文的内容是在集群中创建 java 项目调用 api 来操作 hbase,主要涉及对 hbase 的创建表格,删除表格,插入数据,删除数据,查询一条数据,查询所有数据等操作。

具体流程如下:
1. 创建项目
2. 获取 jar 包到项目的 lib 目录下(这边试用的事 hbase 0.98 lib 目录下的所有 jar 包)
3. 编写 java 程序
4. 编写 ant 脚本

package com.wan.hbase;

import java.io.IOException;

import org.apache.Hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.CellUtil;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.MasterNotRunningException;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.ZooKeeperConnectionException;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HBaseAdmin;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.util.Bytes;

 

public class SimpleHBase {

 public static void main(String[] args) {
  Configuration configuration=HBaseConfiguration.create();
  String tableName=”student”;
  createTable(configuration, tableName);
//  addData(configuration, tableName);
//  getData(configuration, tableName);
//  getAllData(configuration, tableName);
//  deleteDate(configuration, tableName);
//  dropTable(configuration, tableName);
 
 }
 
 /**
  * create a new Table
  * @param configuration Configuration
  * @param tableName String,the new Table’s name
  * */
 public static void createTable(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin = new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    admin.disableTable(tableName);
    admin.deleteTable(tableName);
    System.out.println(tableName+”is exist ,delete ……”);
   }
   
   
   HTableDescriptor tableDescriptor=new HTableDescriptor(TableName.valueOf(tableName));
   tableDescriptor.addFamily(new HColumnDescriptor(“info”));
   tableDescriptor.addFamily(new HColumnDescriptor(“address”));
   admin.createTable(tableDescriptor);
   System.out.println(“end create table”);
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 
 }
 
 /**
  * Delete the existing table
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void dropTable(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin = new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    admin.disableTable(tableName);
    admin.deleteTable(tableName);
    System.out.println(tableName+”delete success!”);
   }else{
    System.out.println(tableName+”Table does not exist!”);
   }
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 
 /**
  * insert a data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void addData(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin = new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    HTable table=new HTable(configuration, tableName);
    Put put=new Put(Bytes.toBytes(“zhangsan”));
    put.add(Bytes.toBytes(“info”), Bytes.toBytes(“age”), Bytes.toBytes(“28”));
    table.put(put);
    System.out.println(“add success!”);
   }else{
    System.out.println(tableName+”Table does not exist!”);
   }
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 
 /**
  * Delete a data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void deleteDate(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin=new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    HTable table=new HTable(configuration, tableName);
    Delete delete=new Delete(Bytes.toBytes(“zhangsan”));
    table.delete(delete);
    System.out.println(“delete success!”);
   }else{
    System.out.println(“Table does not exist!”);
   }
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 

 /**
  * get a data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void getData(Configuration configuration,String tableName){
  HTable table;
  try {
   table = new HTable(configuration, tableName);
   Get get=new Get(Bytes.toBytes(“zhangsan”));
   Result result=table.get(get);
 
   for(Cell cell:result.rawCells()){
    System.out.println(“RowName:”+new String(CellUtil.cloneRow(cell))+” “);
    System.out.println(“Timetamp:”+cell.getTimestamp()+” “);
    System.out.println(“column Family:”+new String(CellUtil.cloneFamily(cell))+” “);
    System.out.println(“row Name:”+new String(CellUtil.cloneQualifier(cell))+” “);
    System.out.println(“value:”+new String(CellUtil.cloneValue(cell))+” “);
   }
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 
 /**
  * insert all data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void getAllData(Configuration configuration,String tableName){
  HTable table;
  try {
   table=new HTable(configuration, tableName);
   Scan scan=new Scan();
   ResultScanner results=table.getScanner(scan);
   for(Result result:results){
    for(Cell cell:result.rawCells()){
     System.out.println(“RowName:”+new String(CellUtil.cloneRow(cell))+” “);
     System.out.println(“Timetamp:”+cell.getTimestamp()+” “);
     System.out.println(“column Family:”+new String(CellUtil.cloneFamily(cell))+” “);
     System.out.println(“row Name:”+new String(CellUtil.cloneQualifier(cell))+” “);
     System.out.println(“value:”+new String(CellUtil.cloneValue(cell))+” “);
    }
   }
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
   
 }
}

ant 脚本

<?xml version=”1.0″?> 
<project name=”HBaseProject” default=”run” basedir=”.”> 
<!– properies –> 
    <property name=”src.dir” value=”src” /> 
    <property name=”report.dir” value=”report” /> 
    <property name=”classes.dir” value=”classes” /> 
    <property name=”lib.dir” value=”lib” /> 
    <property name=”dist.dir” value=”dist” /> 
<property name=”doc.dir” value=”doc”/> 
    <!– 定义 classpath –> 
    <path id=”master-classpath”> 
     <!– 这边指向的 jar 包就是 hbase 0.98 lib 目录下对应的 jar 包,当前项目是把这些 jar 包放在项目的 lib 目录下 –>
        <fileset file=”${lib.dir}/*.jar” /> 
        <pathelement path=”${classes.dir}”/> 
    </path> 
 
 <path id=”run.path”> 
  <path path=”${classes.dir}”/>
          <path refid=”master-classpath” />
      </path>
    <!– 初始化任务 –> 
    <target name=”init” depends=”clean”>
     <mkdir dir=”${classes.dir}”/>
     <mkdir dir=”${dist.dir}”/>
    </target> 
    <!– 编译 –> 
    <target name=”compile” depends=”init” description=”compile the source files”> 
         
        <javac srcdir=”${src.dir}” destdir=”${classes.dir}” target=”1.7″ includeantruntime=”false”> 
            <classpath refid=”master-classpath”/> 
        </javac> 
    </target> 
 
 <target name=”run” depends=”compile”>
        <java classname=”com.wan.hbase.SimpleHBase” classpathref=”run.path” fork=”true” >
        </java>
    </target>
 
    <!– 打包成 jar –> 
    <target name=”pack” depends=”compile” description=”make .jar file”> 
      <mkdir dir=”${dist.dir}” /> 
        <jar destfile=”${dist.dir}/hbaseproject.jar” basedir=”${classes.dir}”> 
            <exclude name=”**/*Test.*” /> 
            <exclude name=”**/Test*.*” /> 
        </jar> 
    </target> 

 
 <target name=”clean” description=”clean the project”>
  <delete dir=”${classes.dir}”></delete>
  <delete dir=”${dist.dir}”></delete>
 </target>
</project>

最后把项目放在集群中, 进入项目的根目录, 执行命令:ant run

即可运行!

完整项目(包含 hbase 中 lib 目录下的 jar 包):

百度网盘免费下载地址:http://pan.baidu.com/s/1eQEG7jO

—————————————— 分割线 ——————————————

FTP 地址:ftp://ftp1.linuxidc.com

用户名:ftp1.linuxidc.com

密码:www.linuxidc.com

在 2014 年 LinuxIDC.com\5 月 \ 在集群中 Java 通过调用 API 操作 HBase 0.98

下载方法见 http://www.linuxidc.com/Linux/2013-10/91140.htm

—————————————— 分割线 ——————————————

编辑推荐

Hadoop+HBase 搭建云存储总结 PDF http://www.linuxidc.com/Linux/2013-05/83844.htm

HBase 结点之间时间不一致造成 regionserver 启动失败 http://www.linuxidc.com/Linux/2013-06/86655.htm

Hadoop+ZooKeeper+HBase 集群配置 http://www.linuxidc.com/Linux/2013-06/86347.htm

Hadoop 集群安装 &HBase 实验环境搭建 http://www.linuxidc.com/Linux/2013-04/83560.htm

基于 Hadoop 集群的 HBase 集群的配置 http://www.linuxidc.com/Linux/2013-03/80815.htm‘

Hadoop 安装部署笔记之 -HBase 完全分布模式安装 http://www.linuxidc.com/Linux/2012-12/76947.htm

单机版搭建 HBase 环境图文教程详解 http://www.linuxidc.com/Linux/2012-10/72959.htm

在集群中 Java 通过调用 API 操作 HBase 0.98

本文的内容是在集群中创建 java 项目调用 api 来操作 hbase,主要涉及对 hbase 的创建表格,删除表格,插入数据,删除数据,查询一条数据,查询所有数据等操作。

具体流程如下:
1. 创建项目
2. 获取 jar 包到项目的 lib 目录下(这边试用的事 hbase 0.98 lib 目录下的所有 jar 包)
3. 编写 java 程序
4. 编写 ant 脚本

package com.wan.hbase;

import java.io.IOException;

import org.apache.Hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.CellUtil;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.MasterNotRunningException;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.ZooKeeperConnectionException;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HBaseAdmin;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.util.Bytes;

 

public class SimpleHBase {

 public static void main(String[] args) {
  Configuration configuration=HBaseConfiguration.create();
  String tableName=”student”;
  createTable(configuration, tableName);
//  addData(configuration, tableName);
//  getData(configuration, tableName);
//  getAllData(configuration, tableName);
//  deleteDate(configuration, tableName);
//  dropTable(configuration, tableName);
 
 }
 
 /**
  * create a new Table
  * @param configuration Configuration
  * @param tableName String,the new Table’s name
  * */
 public static void createTable(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin = new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    admin.disableTable(tableName);
    admin.deleteTable(tableName);
    System.out.println(tableName+”is exist ,delete ……”);
   }
   
   
   HTableDescriptor tableDescriptor=new HTableDescriptor(TableName.valueOf(tableName));
   tableDescriptor.addFamily(new HColumnDescriptor(“info”));
   tableDescriptor.addFamily(new HColumnDescriptor(“address”));
   admin.createTable(tableDescriptor);
   System.out.println(“end create table”);
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 
 }
 
 /**
  * Delete the existing table
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void dropTable(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin = new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    admin.disableTable(tableName);
    admin.deleteTable(tableName);
    System.out.println(tableName+”delete success!”);
   }else{
    System.out.println(tableName+”Table does not exist!”);
   }
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 
 /**
  * insert a data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void addData(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin = new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    HTable table=new HTable(configuration, tableName);
    Put put=new Put(Bytes.toBytes(“zhangsan”));
    put.add(Bytes.toBytes(“info”), Bytes.toBytes(“age”), Bytes.toBytes(“28”));
    table.put(put);
    System.out.println(“add success!”);
   }else{
    System.out.println(tableName+”Table does not exist!”);
   }
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 
 /**
  * Delete a data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void deleteDate(Configuration configuration,String tableName){
  HBaseAdmin admin;
  try {
   admin=new HBaseAdmin(configuration);
   if(admin.tableExists(tableName)){
    HTable table=new HTable(configuration, tableName);
    Delete delete=new Delete(Bytes.toBytes(“zhangsan”));
    table.delete(delete);
    System.out.println(“delete success!”);
   }else{
    System.out.println(“Table does not exist!”);
   }
  } catch (MasterNotRunningException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (ZooKeeperConnectionException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 

 /**
  * get a data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void getData(Configuration configuration,String tableName){
  HTable table;
  try {
   table = new HTable(configuration, tableName);
   Get get=new Get(Bytes.toBytes(“zhangsan”));
   Result result=table.get(get);
 
   for(Cell cell:result.rawCells()){
    System.out.println(“RowName:”+new String(CellUtil.cloneRow(cell))+” “);
    System.out.println(“Timetamp:”+cell.getTimestamp()+” “);
    System.out.println(“column Family:”+new String(CellUtil.cloneFamily(cell))+” “);
    System.out.println(“row Name:”+new String(CellUtil.cloneQualifier(cell))+” “);
    System.out.println(“value:”+new String(CellUtil.cloneValue(cell))+” “);
   }
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 
 /**
  * insert all data
  * @param configuration Configuration
  * @param tableName String,Table’s name
  * */
 public static void getAllData(Configuration configuration,String tableName){
  HTable table;
  try {
   table=new HTable(configuration, tableName);
   Scan scan=new Scan();
   ResultScanner results=table.getScanner(scan);
   for(Result result:results){
    for(Cell cell:result.rawCells()){
     System.out.println(“RowName:”+new String(CellUtil.cloneRow(cell))+” “);
     System.out.println(“Timetamp:”+cell.getTimestamp()+” “);
     System.out.println(“column Family:”+new String(CellUtil.cloneFamily(cell))+” “);
     System.out.println(“row Name:”+new String(CellUtil.cloneQualifier(cell))+” “);
     System.out.println(“value:”+new String(CellUtil.cloneValue(cell))+” “);
    }
   }
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
   
 }
}

ant 脚本

<?xml version=”1.0″?> 
<project name=”HBaseProject” default=”run” basedir=”.”> 
<!– properies –> 
    <property name=”src.dir” value=”src” /> 
    <property name=”report.dir” value=”report” /> 
    <property name=”classes.dir” value=”classes” /> 
    <property name=”lib.dir” value=”lib” /> 
    <property name=”dist.dir” value=”dist” /> 
<property name=”doc.dir” value=”doc”/> 
    <!– 定义 classpath –> 
    <path id=”master-classpath”> 
     <!– 这边指向的 jar 包就是 hbase 0.98 lib 目录下对应的 jar 包,当前项目是把这些 jar 包放在项目的 lib 目录下 –>
        <fileset file=”${lib.dir}/*.jar” /> 
        <pathelement path=”${classes.dir}”/> 
    </path> 
 
 <path id=”run.path”> 
  <path path=”${classes.dir}”/>
          <path refid=”master-classpath” />
      </path>
    <!– 初始化任务 –> 
    <target name=”init” depends=”clean”>
     <mkdir dir=”${classes.dir}”/>
     <mkdir dir=”${dist.dir}”/>
    </target> 
    <!– 编译 –> 
    <target name=”compile” depends=”init” description=”compile the source files”> 
         
        <javac srcdir=”${src.dir}” destdir=”${classes.dir}” target=”1.7″ includeantruntime=”false”> 
            <classpath refid=”master-classpath”/> 
        </javac> 
    </target> 
 
 <target name=”run” depends=”compile”>
        <java classname=”com.wan.hbase.SimpleHBase” classpathref=”run.path” fork=”true” >
        </java>
    </target>
 
    <!– 打包成 jar –> 
    <target name=”pack” depends=”compile” description=”make .jar file”> 
      <mkdir dir=”${dist.dir}” /> 
        <jar destfile=”${dist.dir}/hbaseproject.jar” basedir=”${classes.dir}”> 
            <exclude name=”**/*Test.*” /> 
            <exclude name=”**/Test*.*” /> 
        </jar> 
    </target> 

 
 <target name=”clean” description=”clean the project”>
  <delete dir=”${classes.dir}”></delete>
  <delete dir=”${dist.dir}”></delete>
 </target>
</project>

最后把项目放在集群中, 进入项目的根目录, 执行命令:ant run

即可运行!

完整项目(包含 hbase 中 lib 目录下的 jar 包):

百度网盘免费下载地址:http://pan.baidu.com/s/1eQEG7jO

—————————————— 分割线 ——————————————

FTP 地址:ftp://ftp1.linuxidc.com

用户名:ftp1.linuxidc.com

密码:www.linuxidc.com

在 2014 年 LinuxIDC.com\5 月 \ 在集群中 Java 通过调用 API 操作 HBase 0.98

下载方法见 http://www.linuxidc.com/Linux/2013-10/91140.htm

—————————————— 分割线 ——————————————

编辑推荐

Hadoop+HBase 搭建云存储总结 PDF http://www.linuxidc.com/Linux/2013-05/83844.htm

HBase 结点之间时间不一致造成 regionserver 启动失败 http://www.linuxidc.com/Linux/2013-06/86655.htm

Hadoop+ZooKeeper+HBase 集群配置 http://www.linuxidc.com/Linux/2013-06/86347.htm

Hadoop 集群安装 &HBase 实验环境搭建 http://www.linuxidc.com/Linux/2013-04/83560.htm

基于 Hadoop 集群的 HBase 集群的配置 http://www.linuxidc.com/Linux/2013-03/80815.htm‘

Hadoop 安装部署笔记之 -HBase 完全分布模式安装 http://www.linuxidc.com/Linux/2012-12/76947.htm

单机版搭建 HBase 环境图文教程详解 http://www.linuxidc.com/Linux/2012-10/72959.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-20发表,共计17394字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中

星哥玩云

星哥玩云
星哥玩云
分享互联网知识
用户数
4
文章数
19348
评论数
4
阅读量
7823617
文章搜索
热门文章
开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南

开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南

开发者必备神器:阿里云 Qoder CLI 全面解析与上手指南 大家好,我是星哥。之前介绍了腾讯云的 Code...
星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛NAS-6:抖音视频同步工具,视频下载自动下载保存

星哥带你玩飞牛 NAS-6:抖音视频同步工具,视频下载自动下载保存 前言 各位玩 NAS 的朋友好,我是星哥!...
云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板1Panel:小白轻松构建Web服务与面板加固指南

云服务器部署服务器面板 1Panel:小白轻松构建 Web 服务与面板加固指南 哈喽,我是星哥,经常有人问我不...
我把用了20年的360安全卫士卸载了

我把用了20年的360安全卫士卸载了

我把用了 20 年的 360 安全卫士卸载了 是的,正如标题你看到的。 原因 偷摸安装自家的软件 莫名其妙安装...
星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛NAS-3:安装飞牛NAS后的很有必要的操作

星哥带你玩飞牛 NAS-3:安装飞牛 NAS 后的很有必要的操作 前言 如果你已经有了飞牛 NAS 系统,之前...
阿里云CDN
阿里云CDN-提高用户访问的响应速度和成功率
随机文章
仅2MB大小!开源硬件监控工具:Win11 无缝适配,CPU、GPU、网速全维度掌控

仅2MB大小!开源硬件监控工具:Win11 无缝适配,CPU、GPU、网速全维度掌控

还在忍受动辄数百兆的“全家桶”监控软件?后台偷占资源、界面杂乱冗余,想查个 CPU 温度都要层层点选? 今天给...
我用AI做了一个1978年至2019年中国大陆企业注册的查询网站

我用AI做了一个1978年至2019年中国大陆企业注册的查询网站

我用 AI 做了一个 1978 年至 2019 年中国大陆企业注册的查询网站 最近星哥在 GitHub 上偶然...
一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸

一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸

一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸 前言 作为天天跟架构图、拓扑图死磕的...
240 元左右!五盘位 NAS主机,7 代U硬解4K稳如狗,拓展性碾压同价位

240 元左右!五盘位 NAS主机,7 代U硬解4K稳如狗,拓展性碾压同价位

  240 元左右!五盘位 NAS 主机,7 代 U 硬解 4K 稳如狗,拓展性碾压同价位 在 NA...
CSDN,你是老太太喝粥——无齿下流!

CSDN,你是老太太喝粥——无齿下流!

CSDN,你是老太太喝粥——无齿下流! 大家好,我是星哥,今天才思枯竭,不写技术文章了!来吐槽一下 CSDN。...

免费图片视频管理工具让灵感库告别混乱

一言一句话
-「
手气不错
星哥带你玩飞牛NAS-8:有了NAS你可以干什么?软件汇总篇

星哥带你玩飞牛NAS-8:有了NAS你可以干什么?软件汇总篇

星哥带你玩飞牛 NAS-8:有了 NAS 你可以干什么?软件汇总篇 前言 哈喽各位玩友!我是是星哥,不少朋友私...
手把手教你,购买云服务器并且安装宝塔面板

手把手教你,购买云服务器并且安装宝塔面板

手把手教你,购买云服务器并且安装宝塔面板 前言 大家好,我是星哥。星哥发现很多新手刚接触服务器时,都会被“选购...
4盘位、4K输出、J3455、遥控,NAS硬件入门性价比之王

4盘位、4K输出、J3455、遥控,NAS硬件入门性价比之王

  4 盘位、4K 输出、J3455、遥控,NAS 硬件入门性价比之王 开篇 在 NAS 市场中,威...
多服务器管理神器 Nexterm 横空出世!NAS/Win/Linux 通吃,SSH/VNC/RDP 一站式搞定

多服务器管理神器 Nexterm 横空出世!NAS/Win/Linux 通吃,SSH/VNC/RDP 一站式搞定

多服务器管理神器 Nexterm 横空出世!NAS/Win/Linux 通吃,SSH/VNC/RDP 一站式搞...
150元打造低成本NAS小钢炮,捡一块3865U工控板

150元打造低成本NAS小钢炮,捡一块3865U工控板

150 元打造低成本 NAS 小钢炮,捡一块 3865U 工控板 一块二手的熊猫 B3 工控板 3865U,搭...