01 2022 档案

摘要:一、安装qt5.9.2 1.安装依赖 yum groupinstall "C Development Tools and Libraries"yum install libgl libgl-develyum install mesa-libGL-devel mesa-libGLU-devel fre 阅读全文
posted @ 2022-01-26 14:20 闪光123 阅读(1094) 评论(0) 推荐(0) 编辑
摘要:1.下载ssl证书的Nginx版本,在项目根目录新建https空文件夹,把crt文件和key文件复制到https文件夹中; 2.安装依赖:npm i fs http https 3.修改www文件的内容: var https = require('https'); var fs = require( 阅读全文
posted @ 2022-01-18 15:47 闪光123 阅读(155) 评论(0) 推荐(0) 编辑
摘要:一 安装前准备 1、检查是否已经安装过mysql,执行命令 rpm -qa | grep mysql 如果已存在,则执行删除命令 后边为Mysql目录 rpm -e --nodeps mysql-xxxx 2、查询所有Mysql对应的文件夹 whereis mysqlm find / -name m 阅读全文
posted @ 2022-01-17 17:46 闪光123 阅读(293) 评论(0) 推荐(0) 编辑
摘要:1.安装pm2: npm install -g pm2 2.在启动文件夹内新建文件processes.json: { "apps": [ { "name": "schedulingBack", "cwd": "/root/zdy/project/schedulingBack", "script": 阅读全文
posted @ 2022-01-14 10:57 闪光123 阅读(632) 评论(0) 推荐(0) 编辑
摘要:wget https://nodejs.org/dist/v18.15.0/node-v18.15.0-linux-x64.tar.xz // 下载 tar xf node-v18.15.0-linux-x64.tar.xz // 解压mv node-v18.15.0-linux-x64 /root 阅读全文
posted @ 2022-01-14 10:19 闪光123 阅读(149) 评论(0) 推荐(0) 编辑
摘要:1.查看是不是没安装xftp,xshell上的那个按钮只是启动按钮 2.还是不行的话,试试在linux上安装这个: yum install lrzsz 阅读全文
posted @ 2022-01-14 09:41 闪光123 阅读(411) 评论(0) 推荐(0) 编辑
摘要:1.跟目录下新建vue.config.js文件,添加内容: module.exports = { assetsDir: 'static', parallel: false, publicPath: './',//history模式注释掉此行,hash模式需要 productionSourceMap: 阅读全文
posted @ 2022-01-14 09:14 闪光123 阅读(95) 评论(0) 推荐(0) 编辑
摘要:1、查找以前是否装有mysql 命令:rpm -qa|grep -i mysql 2、停止mysql服务、删除之前安装的mysql 删除命令:rpm -e –nodeps 包名 # rpm -ev MySQL-client-5.5.25a-1.rhel5 # rpm -ev MySQL-server 阅读全文
posted @ 2022-01-13 15:36 闪光123 阅读(3014) 评论(0) 推荐(0) 编辑
摘要:<template> <el-table class="tableList" ref="rw_table" height="700" solt="append" :data="useData" :row-class-name="tableRowClassName" @cell-mouse-enter 阅读全文
posted @ 2022-01-13 15:30 闪光123 阅读(680) 评论(0) 推荐(0) 编辑
摘要:1.安装依赖: npm i node-schedule --save 2.添加定时任务 const schedule = require('node-schedule'); const scheduleCronstyle = () => { //每天凌晨定时执行一次: schedule.schedu 阅读全文
posted @ 2022-01-12 15:00 闪光123 阅读(181) 评论(0) 推荐(0) 编辑
摘要:1.express-generator 是 Express 应用程序生成器工具,我们可以使用它来快速创建应用程序框架。 npm install -g express-generatorwindows添加环境变量:E:\node\node_global 2.创建项目express expressFra 阅读全文
posted @ 2022-01-10 13:50 闪光123 阅读(132) 评论(0) 推荐(0) 编辑