GO 扩展包集锦

摘要: https://github.com/bitly/go-simplejson json操作包 regexp 正则包 官方 logrus 日志扩展 阅读全文
posted @ 2024-06-27 11:00 旭彬 阅读(1) 评论(0) 推荐(0) 编辑

node-sass 安装失败问题

摘要: 阅读全文
posted @ 2023-10-25 10:28 旭彬 阅读(7) 评论(0) 推荐(0) 编辑

phpstorm go py 30天无线试用

摘要: 1.关闭软件(建议先导出设置配置,操作会重置配置) 2.删除文件(一般AppData会被隐藏,需要通过查看选项里面打开查看隐藏文件,不懂自行百度) 删除目录 C:\Users\用户名\AppData\Roaming\JetBrains\PhpStorm2020.2\eval 删除文件 C:\User 阅读全文
posted @ 2023-02-23 09:10 旭彬 阅读(72) 评论(0) 推荐(0) 编辑

clickhouse 重启,软连接失效,增加存储路径

摘要: 1. 启动停止命令 systemctl start clickhouse-server systemctl stop clickhouse-server systemctl status clickhouse-server 2. 进入 /var/lib/clickhouse 阅读全文
posted @ 2023-02-14 09:49 旭彬 阅读(100) 评论(0) 推荐(0) 编辑

git 基础操作

摘要: Git 全局设置 git config --global user.name "马旭彬" git config --global user.email "2105007694@qq.com" 创建一个新仓库 git clone git@gitlab.cnsodata.com:data/qqgroup 阅读全文
posted @ 2023-02-06 14:18 旭彬 阅读(14) 评论(0) 推荐(0) 编辑

composer 操作

摘要: composer list 显示所有命令 composer show 显示所有包信息 composer install 在 composer.json 配置中添加依赖库之后运行此命令安装 composer create-project laravel/laravel Laravel –prefer- 阅读全文
posted @ 2022-08-12 15:57 旭彬 阅读(12) 评论(0) 推荐(0) 编辑

es 集群并设置密码

摘要: 1. 生成证书 bin/elasticsearch-certutil cert -out config/elastic-certificates.p12 -pass ""2. elastic-certificates.p12 复制到其他节点 3. 修改每一个节点配置并启动 xpack.securit 阅读全文
posted @ 2022-08-11 17:55 旭彬 阅读(422) 评论(0) 推荐(0) 编辑

linux命令添加至环境变量

摘要: vim /etc/profile 最后一行添加 /usr/local/nginx/sbin/ 命令目录 export PATH="/usr/local/nginx/sbin/:$PATH" 保存后 source /etc/profile 阅读全文
posted @ 2022-08-11 14:59 旭彬 阅读(181) 评论(0) 推荐(0) 编辑

rar 压缩解压

摘要: rar wget https://www.rarlab.com/rar/rarlinux-x64-612.tar.gz # 压缩文件 rar a -r test.rar file # 解压文件 unrar x test.rar a : 添加到压缩文件 -r : 递归处理 x : 以绝对路径解压文件 阅读全文
posted @ 2022-08-11 14:38 旭彬 阅读(147) 评论(0) 推荐(0) 编辑

ip库 可导入数据库,可使用dat文件本地执行

摘要: https://www.qqzeng.com/article/dev.html 阅读全文
posted @ 2022-07-26 17:11 旭彬 阅读(43) 评论(0) 推荐(0) 编辑