如果我要看是谁占用80端口 输入命令:netstat -ano|findstr "80" 接着 : 输入 taskkill /f /t /pid 4712 即可。 taskkill是用来终止进程的命令 /f 参数是强调结束 /t 参数终止指定的进程以及由它启动的任何子进程 /pid 参数是使用pid ...
在使用spring项目接入携程 apollo 的时候,报了一个错误:Cause: [status code: 404] Could not find config for namespace - appId: housing102, cluster: default, namespace: appl ...
分类:
其他好文 时间:
2020-07-18 22:06:51
阅读次数:
150
China and Buddhism By far the most important gift that China received from India was neither cotton, nor sugar, nor the knowledge of saltpeter, but a ...
分类:
其他好文 时间:
2020-07-18 15:35:38
阅读次数:
83
1,讲分词器的文件夹放入es安装包的plugins,重新启动elasticsearch //查询es运行中的进程pid ps -aux|grep elasticsearch //杀死进程 kill -9 pid //使用es账户启动 nohup ./elasticsearch & 2,重启es,然后 ...
分类:
其他好文 时间:
2020-07-17 19:24:23
阅读次数:
67
环境:CentOS7版本:postgresql11安装repo源yuminstallhttps://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm2.安装client、serveryuminstallpostgresql11yuminstallpostgres
分类:
数据库 时间:
2020-07-17 16:27:16
阅读次数:
121
1,讲分词器的文件夹放入es安装包的plugins,重新启动elasticsearch //查询es运行中的进程pid ps -aux|grep elasticsearch //杀死进程 kill -9 pid //使用es账户启动 nohup ./elasticsearch & 2,重启es,然后 ...
分类:
其他好文 时间:
2020-07-17 16:22:28
阅读次数:
69
top Top命令用于按一定的顺序显示所有正在运行而且处于活动状态的实时进程,而且会定期更新显示结果。这条命令显示了CPU的使用率、内存使用率、交换内存使用大小、高速缓存使用大小、缓冲区使用大小,进程PID、所使用命令以及其他。它还可以显示正在运行进程的内存和CPU占用多的情况。对系统管理员来说,t ...
分类:
系统相关 时间:
2020-07-16 21:26:41
阅读次数:
81
在HotSpot虚拟机里,对象在堆内存中的存储不惧可以划分为三个部分: 对象头(Header)、实例数据(Instance Data)和对齐填充(Padding)。 对象头:包含了Mark Word(一定存在),元数据指针(一定存在),数组size(如果这个对象是个数组对象的话)。 实例数据:类元信 ...
分类:
编程语言 时间:
2020-07-16 12:19:07
阅读次数:
100
1.先在mysql数据库添加数据 DROP TABLE IF EXISTS `dept`;CREATE TABLE `dept` ( `id` int(11) NOT NULL, `pid` int(11) DEFAULT NULL, `name` varchar(255) CHARACTER SE ...
分类:
数据库 时间:
2020-07-16 11:48:49
阅读次数:
129
后台不挂断运行程序: nohup your_command & 同时指定输出日志文件并将错误重定向到标准输出: nohup your_command > your_out.file 2>&1 & 查看进程 ps -ef | grep "your_command" 杀死进程 kill -9 your_ ...
分类:
系统相关 时间:
2020-07-16 10:15:38
阅读次数:
95