- 博客(31)
- 资源 (20)
- 收藏
- 关注
原创 Vue打包时自增版本号
1、修改 package.json 中的 scripts.build 打包前调用修改脚本。2、同级目录下新建修改脚本 changeVersion.js。3、打包发布后,前端显示版本号。
2024-10-28 14:16:25 127
原创 Vue打包前修改根路径
3、打包编译部署到nginx后,访问 localhost:8080/app即可。2、修改 router/index.js,VueRouter中添加base。1、修改 vue.config.js,
2024-04-25 14:32:51 342 4
原创 VM-CentOs7 断电后,因磁盘问题启动异常修复
问题:Please umount the filesystem and rectify the problem(s)1.2 在linux16那行的末尾输入【rd.break】1.3 然后按ctrl+x组合键,稍等片刻,进入单用户只读模式。2.2 再输入:xfs_repair -L /dev/dm-0。2.1 输入命令:ls -l /dev/mapper。2.3 reboot 重启后,成功进入系统。1.1 开机引导页按e。1、进入单用户只读模式。
2024-04-24 17:58:16 894
原创 springboot 项目常用笔记
1、启动文件Application.java:继承 SpringBootServletInitializer 重写 configure2、修改pom文件:生成指定文件名的War包3、修改属性文件:指定接口访问时的相对路径(包文件名)4、打包后,拷贝到tomcat的webapps目录(自动解压为同名文件夹),之后就可以使用tomcat的ip和端口访问服务。
2024-01-19 23:20:48 353
原创 Springboot本地缓存带过期(名称分割-基于Caffeine-无Redis)
1、使用注解@Cacheable的属性 cacheNames 来传输 过期时间,格式:name#expireTime2、然后由 LocalCacheInit 解析注解,后构建支持过期的缓存管理器 CaffeineCacheManager3、为需要缓存值的方法添加注解 @Cacheable,表示值为空时不缓存4、写测试方法,定时查看请求结果是否达到预期5、启用缓存 @EnableCaching、启用定时@EnableScheduling。
2024-01-12 20:15:50 546
原创 nacos源码编译运行
编译环境:jdk1.8 + maven3.8.1包路径:Nacos\distribution\target\nacos-server-1.4.6.tar.gz单机运行修改:nacos-server-1.4.6\nacos\bin\startup.cmd 第26行为 set MODE="standalone"启动成功后访问:localhost:8848/nacos 默认账密:nacos/nacos。
2023-08-07 13:37:19 759 1
原创 Linux部署Docker
一、安装docker1.1 centos安装dockerecho `systemctl stop docker` && \echo `yum erase -y docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engin
2022-04-01 14:50:57 2679
原创 Linux部署Oracle
一、docker方式Docker容器oracle 11g部署(一) - 知乎一、获取取镜像执行命令: # docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 下载的过程少长,镜像约为6.8G 下载完成后 查看镜像: docker images 二、镜像重新命名[root@whdata3 ~]# docker t…https://zhuanlan.zhihu.com/p/362849510环境:centos71.1 ....
2022-03-31 17:05:58 1584
原创 Linux部署Mysql5.7-8.0
wget https://repo.huaweicloud.com/mysql/Downloads/MySQL-5.7/mysql-5.7.36-1.el7.x86_64.rpm-bundle.tar && \tar -xf mysql-5.7.36-1.el7.x86_64.rpm-bundle.tar ./mysql5.7 && \rpm -ivh ./mysql5.7/mysql-community-common-5.7.36-1.el7.x86_64.rpm.
2021-12-22 10:23:42 766
原创 Linux部署ClickHouse
参考:https://blog.csdn.net/weixin_39877754/article/details/115608368http://clickhouse安装记录 高可用双实例 超详细的clickhouse安装看这一篇就够了~https://www.dazhuanlan.com/2020/02/27/5e57170fc71e5/http://Clickhouse快速搭建高可用集群https://clickhouse.tech/#quick-starthttps://repo.yand
2021-10-25 10:24:35 1165
原创 Linux磁盘扩容系统根目录
root@datanode3:/home/user1# fdisk -lDisk /dev/loop0: 55.39 MiB, 58073088 bytes, 113424 sectorsUnits: sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk /dev/loop1: 6
2021-10-19 16:13:09 910
原创 Linux部署Donet5.0
wget -P ~ https://download.visualstudio.microsoft.com/download/pr/5972698f-ba44-4664-9c50-bdc69ca70fb7/1cf7d94425d8dd4d5789dfa978d61475/dotnet-sdk-5.0.401-linux-x64.tar.gz && \installDir=/opt && \mkdir -p ${installDir}/donet &&.
2021-09-23 14:22:38 441
原创 Linux部署Taos数据库(TDEngine)
快速上手 | 涛思数据TDengine是一个开源的专为物联网、车联网、工业互联网、IT运维等设计和优化的大数据平台。除核心的快10倍以上的时序数据库功能外,还提供缓存、数据订阅、流式计算等功能,最大程度减少研发和运维的工作量。https://www.taosdata.com/cn/getting-started/TDengine在Linux下的安装 - 石吴玉 - 博客园1.官网下载linux的安装包 地址:https://www.taosdata.com/cn/getting-started/#Qu.
2021-09-23 11:58:11 2462 1
原创 Linux部署Redis6.2.5
一、环境准备yum install gcc -y && \wget -P ~ https://repo.huaweicloud.com/redis/redis-6.2.5.tar.gz && \installDir=~ && \tar -zxf ~/redis-6.2.5.tar.gz -C ${installDir} && \mkdir -p /etc/redis && \cp ${installDir}/r
2021-09-23 10:15:54 242 1
原创 Linux部署Postgre12和PostGis,PGRoutting
centos7下部署yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm && \yum install -y postgresql12-server && \/usr/pgsql-12/bin/postgresql-12-setup initdb && \system.
2021-09-16 11:39:17 1138
原创 Linux部署MongoDB
1、准备环境wget -P ~ https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.2.4.tgz && \tar -zxf ~/mongodb-linux-x86_64-rhel70-3.2.4.tgz -C /optecho "export MONGODB_HOME=/opt/mongodb-linux-x86_64-rhel70-3.2.4 export PATH=\$PATH:\$MONGODB
2021-09-16 09:38:40 256
原创 Linux部署kafka(单节点与集群)
一、单节点无ZK部署(假设机器名为 node)1、下载并解压 jdk、kafka,备份配置文件,配置并加载JAVA环境变量wget -P ~ https://repo.huaweicloud.com/java/jdk/8u181-b13/jdk-8u181-linux-x64.tar.gz && \wget -P ~ https://mirrors.tuna.tsinghua.edu.cn/apache/kafka/2.8.0/kafka_2.13-2.8.0.tgz &
2021-09-15 19:06:36 1907 1
http连通性探测代码.txt
2017-11-11
CMD命令大全.txt
2017-11-11
vs2008运行时组件vc9_x86.msi
2017-03-01
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人