服务器与存储
文章平均质量分 53
对World说Hello
You either die a hero,or you live long enough to see yourself become the villain.
展开
-
安装linux-Generic mysql
安装编译好的mysql原创 2022-07-28 09:18:10 · 778 阅读 · 1 评论 -
CentOS 6.10 解压 rar压缩包
下载rarlinux和其运行需要的glibc-2.14[root@localhost ~]# wget https://www.rarlab.com/rar/rarlinux-x64-5.9.0.tar.gz[root@localhost ~]# wget http://ftp.gnu.org/gnu/glibc/glibc-2.14.tar.gz安装glibc-2.14[root@loc...原创 2020-04-26 11:34:57 · 725 阅读 · 0 评论 -
linux下查询用户登录记录的命令与对应查找文件
last /var/log/wtmp 所有成功登录/登出的历史记录 可以指定查看某个文件 如last -f /var/run/utmplastb /var/log/btmp 登录失败尝试lastlog /var/log/lastlog 最近登录记录who 默认没有指定FILE参数时,who查询的是utmp的内容,当然可以指定FILE参数,比如who -aH /var/log/wtmp,...原创 2020-04-17 16:03:23 · 836 阅读 · 0 评论 -
docker搭建httpsqs
按照https://github.com/toomeefed/docker-httpsqs搭建httpsqs参考:http://zyan.cc/httpsqs/原创 2020-01-17 14:53:28 · 314 阅读 · 0 评论 -
源码安装squid
https://lihaoquan.me/2017/9/20/setup-squid.html转载 2019-03-15 10:48:38 · 711 阅读 · 0 评论 -
在曙光服务器上做raid
1、开机,按提示进入raid configuration界面22、按F2选择操作动作,33、删除已有的raid0、raid54、把原来组成raid0、raid5的磁盘一起创建新的raid5原创 2018-10-13 15:29:40 · 18648 阅读 · 1 评论 -
解决elasticsearch主分片unassigned的问题
[root@localhost ~]# sh -x /tmp/es.sh + curl -XPOST localhost:9500/_cluster/reroute -d ‘{ “commands”:[ { “allocate”:{ “index”: “simtest”, “...原创 2018-04-18 15:15:24 · 5896 阅读 · 0 评论 -
大数据平台搭建
可以先安装hadoop等,最后安装hive; 安装hive时要手动创建配置文件中提到的目录。 可访问的url http://ip:8080/ http://ip:50070/dfshealth.html#tab-overview http://ip:8081/ http://ip:8042/node http://ip:8088/cluster http://ip:50075/...转载 2018-03-30 10:50:08 · 1291 阅读 · 0 评论 -
解决psycopg2的安装问题
http://blog.csdn.net/dzcdeposit/article/details/6606365 http://blog.csdn.net/luojinbai/article/details/44217551转载 2017-11-30 15:22:24 · 1761 阅读 · 0 评论 -
zabbix 从3.0.1 升级到3.2.1
[root@server0 ~]# service zabbix_server stop Shutting down zabbix_server: [确定] [root@server0 ~]# service zabbix_agentd stop Shutting down zabbix_agentd:原创 2017-10-22 08:14:43 · 973 阅读 · 0 评论 -
Prometheus 监控Rabbitmq
系统:CentOS6.6 安装go [root@server0 ~]# tar zxvf go1.8.1.linux-amd64.tar.gz -C /usr/local [root@server0 ~]# mkdir /Golang [root@server0 ~]# vim /etc/profile export GOROOT=/usr/local/go export GOBIN=原创 2017-05-28 08:26:25 · 4411 阅读 · 0 评论 -
源码安装LNMP+zabbix3时的编译
所缺的包都通过yum安装 [root@iZwz9f17um10wphrf38ni8Z ~]#./configure –prefix=/usr/local/php –with-mysql=/usr/local/mysql/ –enable-fpm –with-zlib –enable-mbstring –with-openssl –with-gd –enable-sockets –enable原创 2016-11-20 08:32:05 · 1091 阅读 · 0 评论 -
命令行安装kvm虚拟机
创建大小为30TB的硬盘qemu-img create -f raw /sdc1/CentOS-7u2.raw 30000G安装虚拟机virt-install --connect qemu:///system -n CentOS7u2 -r 65536 --vcpus=4 --disk path=/sdc1/CentOS-7u2.raw -c /tmp/CentOS-7.2-x86_64-...原创 2018-10-09 14:50:56 · 1760 阅读 · 0 评论 -
K8s 教程
https://idig8.com/转载 2018-12-04 10:43:47 · 1930 阅读 · 3 评论 -
8.0.13 MySQL Community Server远程连接故障处理
远程连接 MySQL Community Server 8.0.13时可能报错Authentication plugin ‘caching_sha2_password’ cannot be loaded,解决方法是在运行mysql的机器中进入mysql命令行,执行ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password...原创 2019-01-15 11:14:34 · 226 阅读 · 0 评论 -
在CentOS7.6搭建ossec server2.8.3
环境:CentOS7.6 ossec 2.8.31、安装所需要的包[root@warship src]# yum install iptables-services tcpdump lrzsz gcc gcc-c++ vim wget lrzsz ntpdate sysstat dstat wget unzip httpd php php-mysql mariadb mariadb-...原创 2019-04-02 09:27:52 · 1295 阅读 · 0 评论 -
在CentOS7.6搭建ossec server3.2
环境 CentOS7.6 ossec 3.6大部分操作与ossec2.8.3类似区别1、安装方法:[root@warship src]# make TARGET=server DATABASE=mysql install2、配置文件:[root@warship ~]# vim /var/ossec/etc/ossec.confremote项目 <remote> &...原创 2019-04-02 10:23:47 · 913 阅读 · 2 评论 -
Redis 持久化之RDB和AOF
https://segmentfault.com/a/1190000012185846转载 2019-06-14 17:04:37 · 179 阅读 · 0 评论 -
filebeats配置
https://blog.csdn.net/weixin_43723658/article/details/84327445转载 2019-06-11 14:59:34 · 2021 阅读 · 0 评论 -
安装使用elasticsearch-7.1.1-linux可能出现的问题的处理
运行es7.1.1 报错ERROR: [6] bootstrap checks failed[1]: max file descriptors [1024] for elasticsearch process is too low, increase to at least [65535][2]: memory locking requested for elasticsearch proc...原创 2019-06-11 17:04:54 · 8114 阅读 · 0 评论 -
VMware搭建docker mastodon
环境 VMwareCentOS 7.6[root@warship ~]# docker versionClient:Version: 18.09.0API version: 1.39Go version: go1.10.4Git commit: 4d60db4Built: Wed Nov 7 00...原创 2019-09-02 14:36:37 · 1906 阅读 · 0 评论 -
ELK 5版本
http://www.2cto.com/kf/201702/599109.html http://blog.csdn.net/mergerly/article/details/53412417 http://blog.csdn.net/liangzhao_jay/article/details/56840941转载 2017-08-05 16:02:17 · 515 阅读 · 0 评论 -
dubbo admin安装
1、安装jdk1.7 (亲测1.8不能用) [root@localhost~]mkdir /usr/java [root@localhost~]tar -zxvf jdk-7u45-linux-x64.tar.gz -C /usr/java [root@localhost~]ln -s /usr/java/jdk1.7.0_45/ /usr/jdk [root@localhost~]vim原创 2017-03-13 17:46:54 · 361 阅读 · 0 评论 -
单机版Kubernetes
[root@localhost ~]# uname -a Linux localhost 3.10.0-327.36.2.el7.x86_64 #1 SMP Mon Oct 10 23:08:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux [root@localhost ~]# cd /etc/yum.repos.d/ [root@localhost yu原创 2017-02-25 16:18:19 · 840 阅读 · 0 评论 -
如何创建你自己的Git服务器
尽管我是一个快乐的(同时也是付费的)GitHub用户,但是我多次想要在我自己的服务器上搭建私人仓库(github会提供给付费用户私人仓库—-译注)。如果你连不上公共网络,或者你受够了呆板的管理,亦或是你只是单纯的想要不同与Github(以及其他类似的网站)所提供的服务,那么搭建你自己的Git服务器将会很有帮助。在Unix(Linux、Mac OSX、 *BSD、 Solaris、AIX)的机器转载 2014-03-06 11:52:14 · 3949 阅读 · 0 评论 -
Linux服务器性能评估
一、影响Linux服务器性能的因素1. 操作系统级CPU内存磁盘I/O带宽网络I/O带宽2. 程序应用级二、系统性能评估标准影响性能因素影响性能因素评判标准好坏糟糕CPUuser% + sys%user% + sys%= 85%user% + sys% >=9转载 2014-02-12 14:50:23 · 796 阅读 · 0 评论 -
在Ubuntu 13.10 下安装支持SSL的Apache
通过这个简短的教程,让我来指导你如何安装支持SSL的Apache。以下是我的试验机的详细说明:系统信息root@ubuntu-unixmen:~# ifconfigeth0 Link encap:Ethernet HWaddr 08:00:27:b8:b4:87inet addr:10.1.1.110 Bcast:10.1.1.255 Mask:255.255.255.0inet转载 2013-11-03 13:00:43 · 1095 阅读 · 0 评论 -
ubuntu下搭建nfs服务器
<span lang="EN-US" style="font-size:12.0pt;line-height:177%;mso-fareast-font-family:Arial;mso-bidi-font-family:Arial">1.1 <span style="font-family:黑体;mso-ascii-font-family:Arial;mso-hansi转载 2013-10-29 14:37:09 · 1041 阅读 · 0 评论 -
ubuntu下简单体验telnet服务器
在ubuntu下搭建telnet服务器,然后用telnet客户端(可以是linux也可以是windows)远程登录到服务器上,在客户端上对服务器进行远程控制。1,在ubuntu下安装相应的软件。sudo apt-get install xinetdsudo apt-get install telnetd2,对 该服务进行简单的配置。在/etc/xinet.d/目录下创建一个文件telnet.文件的转载 2013-10-29 14:37:00 · 1177 阅读 · 0 评论 -
ubuntu下简单体验DNS服务器
在ubuntu下简单地搭建一个DNS服务器,主要是想了解DNS的工作过程。1,安装相应的服务器软件。apt-get install bind9 安装bind9 2,设置主服务器域和域解析文件vim /etc/bind/named.conf.local然后设置域zone和域解析文件filezone "linux31.com"{ type master;file "db.linux31转载 2013-10-29 14:36:58 · 1790 阅读 · 0 评论 -
ubuntu下搭建tftp服务器
<span lang="EN-US" style="font-size:12.0pt;line-height:177%;mso-fareast-font-family:Arial;mso-bidi-font-family:Arial">1.1 <span style="font-family:黑体;mso-ascii-font-family:Arial;mso-hansi转载 2013-10-29 14:37:07 · 1529 阅读 · 0 评论 -
NFS安装配置及常见问题、/etc/exports配置文件、showmount命令
1,服务器端软件:安装nfs-utils和portmap(rpcbind) nfs-utils: 提供rpc.nfsd 及 rpc.mountd这两个NFS DAEMONS的套件 portmap: NFS其实可以被看作是一个RPC SERVER PROGRAM,而要启动一个RPC SERVER PROGRAM,都要做好PORT的对应工作,而且这样的任务就是由PORTMAP来完成的。通俗的说转载 2014-01-02 14:27:02 · 11767 阅读 · 0 评论 -
硬盘的存储原理和内部架构
本来想写个文件系统的专题,结果发现对硬盘的内部架构和存储原理还是比较模糊,因为不了解“一点”硬盘的存储原理对文件系统的认识老是感觉镜花水月,不踏实。经过搜集整理资料就由了本文的问世。借用Bean_lee兄一句话:成果和荣耀归于前辈。首先,让我们看一下硬盘的发展史:1956年9月13日,IBM的IBM 350RAMAC(Random Access Method of Accounting and转载 2013-10-29 14:37:02 · 1217 阅读 · 0 评论 -
Ubuntu下安装和配置Apache2
在ubuntu13.10下安装apache2服务器,输入命令:sudo apt-get install apache2在网上查询到下面一段:产生的启动和停止文件是:/etc/init.d/apache2 启动:sudo apache2ctl -k start 停止:sudo apache2ctl -k stop 重新启动:sudo apache2ctl -k restar原创 2014-01-03 14:48:23 · 4452 阅读 · 0 评论 -
关于 Apache 的 25 个初中级面试题
Apache 求职面试提问在这一节涵盖了25个有趣的Apache工作面试中会提出的问题,并附带有它们的答案,因此你可以方便的理解也许你之前从来没有见到过的一些有关于Apache的新事物.在你开始阅读这篇文章之前,我们强烈建议你不要去死记硬背,万事首先都要尝试去放在实际场景中理解.1. 什么是Apache web服务器?答案 : Apache web 服务器 HTTP转载 2014-04-04 18:28:19 · 1165 阅读 · 0 评论 -
单机版Rabbitmq集群搭建
软件:rabbit 3.5.3 otp_src_R13B04.tar.gz 系统:CentOS 6.61、安装erlang ./configure –prefix=/usr/local/erlang –with-ssl –enable-threads –enable-smp-support –enable-kernel-poll –enable-hipe –without原创 2017-02-18 08:41:10 · 1149 阅读 · 0 评论 -
Nginx 作反向代理时将客户端ip传递给Tomcat
nginx.conf文件内location / { proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $翻译 2016-10-03 13:25:12 · 4524 阅读 · 0 评论 -
x-forward-for详解
http://www.cnblogs.com/xdjackfeng/p/3514120.htmlx-forward-for转载 2016-10-09 20:04:12 · 14172 阅读 · 2 评论 -
Web.py 的搭建(Nginx+web.py+MySQL)
1、安装mysql,导入数据 2、安装web.py 3、安装Nginx 4、安装uwsgi,将解压出的uwsgi放入/usr/local/bin下 5、编写uwsgi启动文件uwsgi授予执行权限放入/etc/init.d#! /bin/bash# chkconfig: 2345 55 25# Description: Startup script for uwsgi webserver原创 2016-09-17 18:12:05 · 1462 阅读 · 0 评论 -
Nginx+Tomcat的配置
首选搭建两个tomcat网站,一个名叫blog,另一个叫ejforum 然后安装nginx 新建配置文件/usr/local/nginx/conf/proxy.conf# proxy.conf proxy_redirect off;proxy_set_header Host $host;proxy_set_header X-Real-IP $r原创 2016-09-17 17:15:14 · 540 阅读 · 0 评论