上一页 1 2 3 4 5 6 7 ··· 40 下一页
摘要: VUE用mock数据没问题,调用接口就跨域问题影响,图片如下: 最好走后台API解决 sastapi后台解决办法如下: from fastapi.middleware.cors import CORSMiddleware #FastAPI支持跨域问题origins = [ "http://192.1 阅读全文
posted @ 2022-01-14 15:44 鸾舞春秋 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 磁盘的格式需要转换两次,这一次是在KVM主机上进行,转换为vmdk格式。可是这个镜像还不能直接应用在esxi主机中,还需要在esxi主机转换一次。 在KVM主机中使用以下命令将虚拟机镜像进行转换: [root@hp_server images]# qemu-img convert -f qcow2 阅读全文
posted @ 2021-12-20 15:12 鸾舞春秋 阅读(593) 评论(0) 推荐(0) 编辑
摘要: Git parameter多个仓库构建 注意,同一个Job可以选择多个Git parameter,但是Git parameter高级选择里需要填写 Use repository 的,里面填写git仓库的地址,才能保证多个能取到对应的分支或tag 阅读全文
posted @ 2021-12-14 18:01 鸾舞春秋 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1.问题:VUE本地npm run dev 正常,npm run build:prod构建后发布页面table空白,报错 ** is not a function 解决对策: 并注释 src/main.js 中的const { mockXHR } = require('../mock')和mockX 阅读全文
posted @ 2021-12-09 17:04 鸾舞春秋 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1.安装vsftpd yum install vsftpd 2.修改配置文件 cd /etc/vsftpd/ vim vsftpd.conf anonymous_enable=NOlocal_enable=YESlocal_root=/home/ftp01write_enable=YESlocal_ 阅读全文
posted @ 2021-12-06 19:55 鸾舞春秋 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1.获取程序运行时长 ps -eo pid,etime,cmd | grep 'server' | grep -v 'grep' 2.查看硬盘转速 sginfo -g /dev/sda 阅读全文
posted @ 2021-11-30 13:28 鸾舞春秋 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 查询所有表和行数 SELECT a.name, b.rows FROM sysobjects AS a INNER JOIN sysindexes AS b ON a.id = b.id WHERE (a.type = 'u') AND (b.indid IN (0, 1)) ORDER BY b. 阅读全文
posted @ 2021-11-25 17:16 鸾舞春秋 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1、查看死锁是否存在select username,lockwait,status,machine,program from v$session where sid in(select session_id from v$locked_object);Username:死锁语句所用的数据库用户;Lo 阅读全文
posted @ 2021-11-08 15:31 鸾舞春秋 阅读(18365) 评论(0) 推荐(0) 编辑
摘要: 注意:***开启过滤规则后,整体-r同步和整体同步机制无效,最好启动前先命令整体同步一次*** # 先安装扩展包源,否则inotify-tools找不到 yum install epel-release yum install inotify-tools 服务器:2台,分别标识为A,B,其中A为客户 阅读全文
posted @ 2021-10-11 14:20 鸾舞春秋 阅读(767) 评论(0) 推荐(0) 编辑
摘要: 在启用 Hyper-V 后,总是会产生各种端口被占用的问题 我遇到过的问题就有: 启动 IDEA 时,报错: java.net.BindException: Address already in use: bind 使用 Clash for Windows 时,Could not connect t 阅读全文
posted @ 2021-09-29 18:42 鸾舞春秋 阅读(2095) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 40 下一页