上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页
2023年1月3日
摘要: CREATE TABLE `student` ( `name` varchar(10) DEFAULT NULL, `subject` varchar(10) DEFAULT NULL, `score` int(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHA 阅读全文
posted @ 2023-01-03 09:51 boye169 阅读(2023) 评论(0) 推荐(0) 编辑
摘要: #/user/bin/python3 from datetime import datetime, timezone, timedelta tz = timezone(timedelta(hours=+8)) fmt = '%Y-%m-%dT%H:%M:%S.%f%z' zoned_time1 = 阅读全文
posted @ 2023-01-03 09:35 boye169 阅读(45) 评论(0) 推荐(0) 编辑
2022年12月14日
摘要: 下载 https://prometheus.io/download/ 安装、启动 wget https://github.com/prometheus/prometheus/releases/download/v2.40.6/prometheus-2.40.6.linux-amd64.tar.gz 阅读全文
posted @ 2022-12-14 11:31 boye169 阅读(50) 评论(0) 推荐(0) 编辑
2022年12月7日
摘要: 下载 https://skywalking.apache.org/downloads/ https://archive.apache.org/dist/skywalking/ 运行 然后在浏览器中输入:http://127.0.0.1:8080/,尽可看到成功画面 配置 webapp前端端口 apa 阅读全文
posted @ 2022-12-07 17:57 boye169 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 下载 https://www.elastic.co/cn/downloads/elasticsearch 安装 tar -zxvf elasticsearch-8.5.2-linux-x86_64.tar.gz cd elasticsearch-8.5.2/bin elasticsearch-8.5 阅读全文
posted @ 2022-12-07 16:15 boye169 阅读(274) 评论(0) 推荐(0) 编辑
2022年12月1日
摘要: # coding:utf-8 from wsgiref.simple_server import make_server #导入simple_server模块 #视图函数 def home(*args): return "home" def login(*args): return "login" 阅读全文
posted @ 2022-12-01 19:44 boye169 阅读(37) 评论(0) 推荐(0) 编辑
2022年11月30日
摘要: 参数 含义-a all, 显示所有文件及目录 (. 开头的隐藏文件也会列出)-A 同-a ,但不列出 “.” (目前目录) 及 “…” (父目录)-l 以长格式显示目录下的内容列表,包括文件的权限、链接数、所有者名称和组所有者、文件大小、最后修改日期时间和文件/目录名称-r reverse,将排序结 阅读全文
posted @ 2022-11-30 16:52 boye169 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 下载 https://nginx.org/en/download.html Windows下安装 下载后解压(切记不能含有中文路径!!) 启动两种方法: 1) 直接双击该目录下的"nginx.exe",即可启动nginx服务器; 2) 命令行进入该文件夹,执行start nginx命令,也会直接启动 阅读全文
posted @ 2022-11-30 11:10 boye169 阅读(192) 评论(0) 推荐(0) 编辑
2022年11月29日
摘要: 下载地址 https://maven.apache.org/download.cgi linux环境 配置环境变量 tar -zxvf apache-maven-3.8.6-bin.tar.gz vim ~/.bashrc 新增一行 export PATH="/home/boye/software/ 阅读全文
posted @ 2022-11-29 16:50 boye169 阅读(62) 评论(0) 推荐(0) 编辑
摘要: history命令介绍 是被保存在内存中的,当退出或者登录shell时,会自动保存或读取。在内存中,历史命令仅能够存储1000条历史命令,该数量是由环境变量HISTSIZE进行控制。默认是不显示命令的执行时间,命令的执行时间,history 已经记录,只是没有显示。 注: 如想查询某个用户在系统上执 阅读全文
posted @ 2022-11-29 10:00 boye169 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页