1 2 3 4 5 ··· 9 下一页
摘要: 1.对目录下的文件进行分类,并根据文件后缀,将相应文件移动或拷贝至对应目录 import sys import os import shutil def get_file_extension(filename): _, file_extension = os.path.splitext(filena 阅读全文
posted @ 2024-08-24 09:33 一窗明月半帘风 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1. Python django 添加自定义标签过滤器失败No module named 'templatetags' django.template.library.InvalidTemplateLibrary: Invalid template library specified. Import 阅读全文
posted @ 2024-07-15 20:03 一窗明月半帘风 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 1.安装模块 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple huaweicloudsdkcdn pip install -i https://pypi.tuna.tsinghua.edu.cn/simple datetime 2.获取 阅读全文
posted @ 2024-05-22 14:35 一窗明月半帘风 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 现象:systemctl start httpd 启动超时,提示信息如下: Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.ser 阅读全文
posted @ 2024-03-06 08:29 一窗明月半帘风 阅读(819) 评论(0) 推荐(0) 编辑
摘要: 下载 官网路径:https://dlcdn.apache.org/zookeeper/ 单机部署 #解压 tar -zxf apache-zookeeper-3.8.1.tar.gz #进入配置文件目录 cd apache-zookeeper-3.8.1/conf #拷贝模板文件 cp -a zoo 阅读全文
posted @ 2023-07-24 14:35 一窗明月半帘风 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1. redis启停脚本,redis_start_stop.sh #!/bin/bash REDIS_PORT=6379 SENTINEL_PORT=26379 IP=`(ifconfig|grep inet|egrep -v "127.0.0.1"|awk '{print $2}')` redis 阅读全文
posted @ 2023-07-11 14:36 一窗明月半帘风 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 初稿。。。 1.下载 https://downloads.mysql.com/archives/community/ 选择对应版本->选择 source code ->系统版本一定要选all ->拉至最下方-选择mysql-boost-8.0.xx.tar.gz(不下载带有boost的压缩包,需自行 阅读全文
posted @ 2023-07-11 13:54 一窗明月半帘风 阅读(1289) 评论(0) 推荐(0) 编辑
摘要: 在gitlab上构建Webhooks,测试报错Hook executed successfully but returned HTTP 403。具体如下图所示: 解决办法: 1. 打开gitlab->Admin Area->Settings->Network->Outbound requests E 阅读全文
posted @ 2021-02-03 16:25 一窗明月半帘风 阅读(1882) 评论(3) 推荐(0) 编辑
摘要: gitlab安装请参考 https://www.cnblogs.com/sswind/p/14356558.html 1.安装openjdk https://www.openlogic.com/openjdk-downloads http://openjdk.java.net/install/ 2. 阅读全文
posted @ 2021-02-03 15:57 一窗明月半帘风 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.安装go环境 #下载 wget -c https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz #解压 tar -zxvf go1.8.3.linux-amd64.tar.gz -C /usr/local/ #配置环境变量 阅读全文
posted @ 2021-02-02 14:20 一窗明月半帘风 阅读(226) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 9 下一页