Fork me on GitHub
摘要: 1.Telnet命令安装 rpm -qa | grep xinetd yum -y install xinetd rpm -qa telnet-server yum install telnet service xinetd restart 备注:由于telnet服务是由xinetd守护的,必须先装 阅读全文
posted @ 2018-11-29 20:23 mankeu 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 一、准备 使用wget命令下载zookeeper安装包wget http://mirror.bit.edu.cn/apache/zookeeper/zookeeper-3.4.13/zookeeper-3.4.13.tar.gz二、安装步骤 ①首先检查是否具有java环境 java –version 阅读全文
posted @ 2018-11-29 15:44 mankeu 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 一.准备工作 使用wget命令下载jdkwget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub... 阅读全文
posted @ 2018-11-29 15:32 mankeu 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 一、环境 Vmware+Centos 64二、安装步骤 ①首先验证服务是否自带mysql npm-qa | grep mysql ②自带的话需删除mysql npm –e mysql npm –e –-nodeps mysql ③下载安装mysql wget http://repo.mysql.com/mysql-co... 阅读全文
posted @ 2018-11-23 16:25 mankeu 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1、如何查看端口占用情况? netstat -anp |grep 8080 lsof -i:8000 2、如何快速查看是哪个目录占用空间大? #只展示一级目录 du -ah --max-depth=1 #查找大文件 find . -type f -size +100M | xargs du -hm 阅读全文
posted @ 2018-11-23 16:00 mankeu 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 一、环境 Vmware+Centos 64 二、安装步骤 ①检查是否有编译环境gcc,因为Redis为c语言编写 yum list installed | grep gcc ②安装gcc yum install gcc ③下载redis安装包 yum –y install wget ... 阅读全文
posted @ 2018-11-23 15:50 mankeu 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 一、前言 在工作中难免遇到一些问题,为了方便查找,不如mark一下。二、问题列表 2.1 安装完Centos后找不到ifconfig命令 ①首先先确认Path中是否有/sbin目录,执行命令echo $PATH ②执行命令yum search ifconfig ③执行安装命令yum install net-to... 阅读全文
posted @ 2018-11-23 13:26 mankeu 阅读(164) 评论(0) 推荐(0) 编辑