麟の随笔

  • 游戏
  • 影视
  • Tech

技巧

Gitlab配置流水线(添加Runner)

Gitlab Runner 安装 1、添加安装源 Centos curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh" | sudo bash Debian/Ubuntu安装包 curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.…

2023年2月1日 0条评论 12点热度 0人点赞 Kylin 阅读全文
技巧

svn报“Previous operation has not finished; run 'cleanup' if it was interrupted”的错误

SQLite3.exe下载 进入项目的.svn目录 将sqlite3.exe放入文件夹中 在当前窗口打开cmd,执行 sqlite3.exe wc.db 查询表,一定要加; .table 删除WORK_QUEUE内容 delete from work_queue; 查看结果 select * from work_queue; 执行结果如下,再对目录执行CleanUp即可

2023年1月5日 0条评论 40点热度 0人点赞 Kylin 阅读全文
Linux

银河麒麟中安装FTP

一、vsftpd安装 1、安装服务 yum install -y vsftpd 2、开启服务 systemctl enable vsftpd.service systemctl start vsftpd.service 3、查看端口 netstat -antup | grep ftp 4、关闭防火墙 systemctl stop firewalld 5、关闭SELinux(重要) setenforce 0 二、配置 vim /etc/vsftpd/vsftpd.conf 修改如下内容

2023年1月3日 0条评论 39点热度 0人点赞 Kylin 阅读全文
前端

Vue CLI 打包时不分割文件(避免打成多个umd.js)

Vue CLI项目中,制作封装好的组件发布到npm中,在别的项目中引入时,会因为样式文件过多而导致不方便引入。 打包命令为 vue-cli-service build --target lib src/package/index.js --dest lib --name kyui 一般我们把 .umd.js 引入到项目中就可以使用。但这里分包了。将 .umd.js 文件,分了好几个小包。在普通 html 文件里面引入是可以正常运行的。他会根据 umd.js 找到需要加载的其他分包并加载。但在vue项目中只引入 *.…

2022年12月23日 0条评论 65点热度 0人点赞 Kylin 阅读全文
Linux

Centos7(中标麒麟)安装Nginx整合Lua的方法

1、安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 2、安装luajit 在/usr/local目录下创建luajit文件夹 cd /usr/local mkdir luajit cd luajit wget https://luajit.org/download/LuaJIT-2.0.5.tar.gz tar –xvf luajit-2.0.5.tar.gz cd luajit-2.0.5 make install …

2022年12月23日 0条评论 55点热度 1人点赞 Kylin 阅读全文
SQL

MySQL自增ID从10000开始

需要确保自增字段为第一主键 alter table base_user AUTO_INCREMENT=10000;

2022年12月5日 0条评论 79点热度 1人点赞 Kylin 阅读全文
前端

Vue3 + vue router 在history模式下部署到tomcat方案

项目配置 名称 版本 vue 3.2.27 vue-router 4.0.12 tomcat 9.0.44 本项目名称以ky为例 一、非根目录配置 1、Vue Router : router = createRouter({ mode: 'history', base: '/ky/', history:createWebHistory('/ky/'), routes, }); 对于vue router 4+版本,除了配置base外,还需要配置history…

2022年10月25日 0条评论 168点热度 1人点赞 Kylin 阅读全文
技巧

Windows下使用bat脚本定时重启tomcat服务(窗口)

@echo off set filename=%date:~0,4%-%date:~5,2%-%date:~8,2% %time:~0,2%:%time:~3,2%:%time:~6,2% rem set "filename=%filename: =0%" echo Current Time: %filename% echo stop Tomcat... rem 遍历结果集(多行),获取每行的第5个元素,保存最后一个数据 for /f "tokens=5" %%i in (&…

2022年10月17日 0条评论 119点热度 0人点赞 Kylin 阅读全文
前端

Js数字补零

const GetSerialNum = function (num, length) { return (Array(length).join(0) + num).slice(-length); };

2022年10月8日 0条评论 100点热度 0人点赞 Kylin 阅读全文
未分类

密码保护:鲸蔚感知平台

无法提供摘要。这是一篇受保护的文章。

2022年5月24日 0条评论 206点热度 0人点赞 Kylin 阅读全文
12345…7

Kylin

必须有人浴血奋战,世上才有自由可言!

最新 热点 随机
最新 热点 随机
Gitlab配置流水线(添加Runner) svn报“Previous operation has not finished; run 'cleanup' if it was interrupted”的错误 银河麒麟中安装FTP Vue CLI 打包时不分割文件(避免打成多个umd.js) Centos7(中标麒麟)安装Nginx整合Lua的方法 MySQL自增ID从10000开始
Gitlab配置流水线(添加Runner)
利用ArcGIS(ArcMap)将img文件转换为tiff svn报“Previous operation has not finished; run 'cleanup' if it was interrupted”的错误 Gitlab配置流水线(添加Runner) SpringBoot + Vue3 + Ant Design 篇3 项目结构与Vue3 基础规范 Js数字补零 Winserver-默认以管理员运行程序
标签聚合
激战2 Java

COPYRIGHT © 2023 kirinz.com. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang

闽ICP备19013981号