![](https://i-blog.csdnimg.cn/columns/default/20201014180756928.png?x-oss-process=image/resize,m_fixed,h_224,w_224)
问题总结
jinchengyu_
希望我们可以一起交流一起进步~
展开
-
ifconfig command not found
CentOS Minimal版安装后 ifconfig 会出现 ifconfig command not found 可以通过 yum install net-tools yum无法使用的解决方法: vi /etc/sysconfig/network-script/ifcfg- 之后按tab自动联想 修改对应的配置文件设置为自动获取ip地址ONBOOT=yes MM_Controlled原创 2017-12-14 20:50:47 · 248 阅读 · 0 评论 -
Maven项目 整合 tomcat插件==> tomcat7:run
先在pom文件中添加依赖<!-- tomcat7插件 maven 命令 tomcat7:run 启动项目--><plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <...原创 2019-01-27 16:27:03 · 15420 阅读 · 2 评论 -
解决方案 [FATAL ERROR: please install the following Perl modules before executing * Data::Dumper]
当初始化mysql时出现错误./scripts/mysql_install_db --user = mysql错误:FATAL ERROR: please install the following Perl modules before executing ./scripts/mysql_install_db:Data::Dumper原因:缺少perl模块中的Data::Dumper...原创 2018-10-26 16:15:09 · 3397 阅读 · 1 评论 -
IDEA Unable to open debugger port (127.0.0.1:xxxx): java.net.SocketException "socket closed" 解决方案
1.查看哪个个端口被占用 我的是1099端口被占用2.运行cmd 输入命令 netstat -ano | findstr "1099" 查询这个端口的进程id是多少3.查询这个进程id 是哪个进程 tasklist | findstr "11684"如果确定这个程序没有问题 就可以干掉他了4.杀死进程 taskkill /pid 11684 -f...原创 2018-09-14 11:51:26 · 16189 阅读 · 4 评论 -
linux 下载文件到本地
sz 文件名即可下载文件原创 2018-09-02 18:25:42 · 6877 阅读 · 0 评论 -
lsof command not found
安装lsof 相关包 yum -y install lsof.*原创 2018-08-11 16:57:41 · 1373 阅读 · 0 评论 -
vim: command not found
缺少vim相关包 暴力破解 下载所有有关的包yum -y install vim*原创 2018-08-10 22:38:38 · 550 阅读 · 0 评论