编译安装erlang并配置rabbitmq集群
环境介绍
序号
ip
主机名
系统信息
1
172.20.10.1
node10-1
centos6.7 x86_64
2
172.20.10.2
node10-2
centos6.7 x86_64
2
172.20.10.3
node10-3
centos6.7 x86_64
安装基础环境
123yum groupinstall "Development Tools" -yyum install epel-releaseyum install gcc c++ zip unzip man vim telnet wget nethogs htop glances dstat traceroute lrzsz goaccess ntpdate dos2unix openssl-devel xinetd lvm2
配置系统最大文件数123vim /etc/security/limits.conf * soft nofile 655360 * hard nofile 655360
下载安装erlang和rabbitmq12 ...
zabbix数据库表结构
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220 ...
Hello
你好啊
Hello Dear这里是我的个人站点
用于收录技术文档及学习笔记
在网站访问中遇到各种问题
均可通过邮箱联系本人
邮箱地址:13@fushisanlang.cn
也可以通过本人同名公众号:符十三郎 和我联系
公众号中收录了一些没事干写的十九线小说,欢迎关注
ethtool工具.md
ethtools ethtool 是用于查询及设置网卡参数的命令。
-a 查看网卡中 接收模块RX、发送模块TX和Autonegotiate模块的状态:启动on 或 停用off。
-A 修改网卡中 接收模块RX、发送模块TX和Autonegotiate模块的状态:启动on 或 停用off。
-c display the Coalesce information of the specified ethernet card。
-C Change the Coalesce setting of the specified ethernet card。
-g Display the rx/tx ring parameter information of the specified ethernet card。
-G change the rx/tx ring setting of the specified ethernet card。 -i 显示网卡驱动的信息,如驱动的名称、版本等。
-d 显示register dump信息, 部分网卡驱动不支持该选项。
-e 显示EE ...
Centos6.7设置基于GoogleAuthenticator的二次验证ssh登陆
环境介绍
12centos6.7 x86_64 关闭iptables及selinux
安装
12345678910111213141516171819202122yum install wget gcc make pam-devel libpng-devel -ymkdir /soft -pcd /softwget "http://192.168.1.139/soft/libpam-google-authenticator-1.0-source.tar.bz2" "http://192.168.1.139/soft/qrencode-3.4.4.tar.gz" "http://192.168.1.139/soft/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm"rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpmyum install mercurialtar -jxvf libpam-google-authenticator- ...