摘要:
chkconfig --list 显示开机可以自动启动的服务 chkconfig --add *** 添加开机自动启动***服务 chkconfig --del *** 删除开机自动启动***服务 setup 可以在shell图形终端里面配置的命令,去service里选择 ntsysv 在shell 阅读全文
摘要:
aes之ecb模式的加密解密 from Crypto.Cipher import AES import base64 BLOCK_SIZE = 16 # Bytes pad = lambda s: s + (BLOCK_SIZE - len(s.encode()) % BLOCK_SIZE) * c 阅读全文
摘要:
##########django之使用celery############## 1.首先在目录:/项目/applition/celery.py添加以下内容 import os import django from celery import Celery, platforms from django 阅读全文
摘要:
linux之centos安装redis # 首先看一下c语言有没有安装 gcc -v # 如果没有安装 yum install -y gcc # 创建并进入一个目录 专门下载软件的目录 mkdir /software cd /software # 下载 wget http://download.re 阅读全文
摘要:
1.安装使用 1.安装教程 https://dataease.io/docs/installation/offline_installation/ 2.下载安装包网址 https://community.fit2cloud.com/#/products/dataease/downloads 3.下载 阅读全文
摘要:
centos7安装kafka安装教程:https://blog.csdn.net/shenyuanhaojie/article/details/121200011 一.安装jdkrpm -qa | grep javarpm -qa | grep jdkrpm -qa | grep gcjrpm -q 阅读全文
摘要:
1.mysql行拼接 SELECT GROUP_CONCAT(area_name SEPARATOR ',') from area 1.1效果图 2.clinkhouse行拼接 select groupArray(t3.enterprise_name) AS kpi_asc from area t1 阅读全文
摘要:
1.clinkhouse比较特殊基于Java,如果是数字还得强转 select t1.area_name,t1.nums,t2.allcount,concat(toString(round(((t1.nums/t2.allcount)*100),2)),'%') as rate from ( sel 阅读全文
摘要:
1.安装 clinkhouse之安装以及python操作 1.Clickhouse 仅支持Linux 且必须支持SSE4.2 指令集 grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not suppo 阅读全文
摘要:
代码直接放到utils目录下 from haversine import haversine from math import sin, asin, cos, radians, fabs, sqrt def hav(theta): """sin方""" s = sin(theta / 2) retu 阅读全文