上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页
摘要: 查看进程号 lsof -i:xxxx(xxxx是你要查看的端口号) 杀死进程 kill -9 xxxx(xxxx是查询到的进程号) 阅读全文
posted @ 2020-08-17 13:49 梦小冷 阅读(878) 评论(0) 推荐(0) 编辑
摘要: 给Date类型的对象绑定方法 Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this 阅读全文
posted @ 2020-08-15 11:43 梦小冷 阅读(613) 评论(0) 推荐(0) 编辑
摘要: 找到vue.config.js module.exports = { productionSourceMap: false, configureWebpack: { devServer: { proxy: { '/api': { target: 'http://localhost:8090', // 阅读全文
posted @ 2020-08-13 12:03 梦小冷 阅读(1137) 评论(0) 推荐(0) 编辑
摘要: 查找mysql的位置 whereis mysql 查看位置信息,我的机器显示的信息如下 ubuntu@VM-0-14-ubuntu:~$ whereis mysql mysql: /usr/bin/mysql /usr/lib/mysql /etc/mysql /usr/share/mysql /u 阅读全文
posted @ 2020-08-08 00:39 梦小冷 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 1、安装mysql sudo apt-get install mysql-server 2、2018年9月14日我安装的MySQL为5.7.21,查看方法为 mysql -V 3、5.7之后的mysql安装直接完成,不会让使用者配置用户名和密码,所以需要使用超级权限直接进入MySQL sudo my 阅读全文
posted @ 2020-08-05 16:40 梦小冷 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 首先在终端中查看MySQL的依赖项:dpkg --list|grep mysql 卸载: sudo apt-get remove mysql-common 卸载:sudo apt-get autoremove --purge mysql-server-5.7 清除残留数据:dpkg -l|grep 阅读全文
posted @ 2020-08-05 16:31 梦小冷 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 启动tomcat时候,控制台报错,发现是端口占用,于是寻找方法关闭对应的程序。 从网上找了好久,尝试之后,发现不行。开始自己尝试,终于,成功的将占用端口的进程杀掉。在此记录下过程(以8081端口为例): 第一步,根据端口号查找对应的进程号 netstat -ano | findstr 80 //列出 阅读全文
posted @ 2020-08-04 22:14 梦小冷 阅读(723) 评论(0) 推荐(0) 编辑
摘要: 首先要下载好两个jar包 下载地址 链接:https://pan.baidu.com/s/10lUtaODB8AOjdQAgXMUUFQ 提取码:c3a2 在数据库中建立好表格 CREATE TABLE ASSETSTATUS( ID INT(11) NOT NULL PRIMARY KEY AUT 阅读全文
posted @ 2020-08-02 11:15 梦小冷 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 输入 git clone 命令时出现Please make sure you have the correct access rights and the repository exists.错误,出现改问题的原因是git服务器没有存储本地ssh密钥。 解决步骤: 删除 .ssh 文件夹【C:\Us 阅读全文
posted @ 2020-07-28 23:34 梦小冷 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: 输入nmtui命令 敲空格开启. 之后一直退出 重启 reboot 确认开启虚拟机的NAT、DHCP服务 win+r->输入services.msc 这两个服务确定开启 进入虚拟机输入ip addr 将该信息输入xshell 成功 阅读全文
posted @ 2020-07-10 12:32 梦小冷 阅读(307) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页