摘要: 将博客搬至CSDN 阅读全文
posted @ 2024-03-20 16:21 牛啊! 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ##原创转载请标注来源#!/bin/sh #定义程序名 及jar包的名(写上你自己的jar包) PROJECT_NAME=/home/xtgl/a/release-1.0.jar FILEPATH=/home/xtgl date=`date +%Y-%m-%d-%H-%M-` ## 编写判断程序是否 阅读全文
posted @ 2024-03-20 16:18 牛啊! 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Linux安装字体 下载需要安装的字体 ① 在Windows/Fonts路径下找到需要的字体,上传到需要安装字体的linux服务器 查看linux有什么字体 命令:fc-list 安装字体库 命令:yum -y install fontconfig 这时在/usr/share/目录就可以看到font 阅读全文
posted @ 2024-03-20 16:10 牛啊! 阅读(1522) 评论(0) 推荐(0) 编辑
摘要: 转载请标注出处 /** * @Author : liuzhiyuan * @Create : 2024/1/11 * Description : 响应封装 */ @Data@ToStringpublic class ResponseBean<T> implements Serializable { 阅读全文
posted @ 2024-03-11 16:30 牛啊! 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 移步github查看 https://github.com/ZHIYUAN-LIU07/wecomsendmsg.git 附带接口说明,如有bug请提出指正 更新gitee链接 https://gitee.com/liu199907/wecomsendmsg 转载请说明 阅读全文
posted @ 2023-12-19 15:06 牛啊! 阅读(99) 评论(0) 推荐(0) 编辑
摘要: linux版本mysql安装 1先检查有没有安装mariadb,有的话将其卸载,不然会和mysql冲突。 yum list | grep mariadb mariadb-libs.x86_64 1:5.5.68-1.el7 @anaconda mariadb.x86_64 1:5.5.68-1.el 阅读全文
posted @ 2023-11-07 11:14 牛啊! 阅读(32) 评论(0) 推荐(0) 编辑
摘要: nfs服务器搭建服务端1安装NFS服务rpcbind && nfs-utilsyum install -y nfs-utils yum install -y rpcbind2启动服务和设置开启启动systemctl start rpcbind #先启动rpc服务//systemctl enable 阅读全文
posted @ 2023-11-07 11:13 牛啊! 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 安装Maven私有仓库Nexus 下载nexus免费版 --下载链接 https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/3/nexus-3.61.0-02-unix.tar.gz 上传至服务 阅读全文
posted @ 2023-11-07 11:12 牛啊! 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #### 本地项目上传git 1:git新建需要上传文件的同名项目 2:git进入本地文件夹进行初始化为git项目。命令:git init 3:将本地项目所有文件添加到暂存区。命令:git add . 4:提交项目。命令:git commit -m "初始化项目" 5:建立远程仓库和远程仓库连接。命 阅读全文
posted @ 2023-09-04 14:44 牛啊! 阅读(52) 评论(0) 推荐(0) 编辑
摘要: redis在linux上的部署 1.在官网下载Linux版本redis 2.拷贝到linux服务器上,解压到指定目录 3.解压后得到redis文件夹 移动到自己知道的文件位置 4.注:redis是c语言编写,需要依托c语言环境 yum install gcc-c++ tcl 进入到redis安装目录 阅读全文
posted @ 2022-02-17 16:00 牛啊! 阅读(913) 评论(0) 推荐(0) 编辑