ELK6.2搭建部署
ELK是三个软件产品的首字母缩写,Elasticsearch,Logstash和Kibana。这三款软件都是开源的,现在归于Elastic.co公司。 在这套系统中,Elasticsearch主要充当一个全文检索和分析引擎,Logstash是一款分布式日志收集 … 阅读全文
ELK是三个软件产品的首字母缩写,Elasticsearch,Logstash和Kibana。这三款软件都是开源的,现在归于Elastic.co公司。 在这套系统中,Elasticsearch主要充当一个全文检索和分析引擎,Logstash是一款分布式日志收集 … 阅读全文
以下报错及解决办法在Centos6.9、Centos7.4系统,php5.6.35版本测试通过,其他系统及版本请自测 报错一: configure: error: no acceptable C compiler found in $PATH See `con … 阅读全文
当我们编译php的时候可能用到了很多的参数,但是时间一长,自己也不记得当时使用了哪些参数,此时可以通过下面这一行命令,就可以直接在服务器上看到,当前php编译时用到了哪些参数。
1 |
php -r "phpinfo();" | grep configure |
[crayon- … 阅读全文
注意:这是centos7.4安装配置酸酸(ss)客户端教程 请注意,这是linux“客户端”连接酸酸的教程,不是”服务器“教程,小白不要再给我留言了。 服务器教程在这里:https://blog.whsir.com/post-4884.html 1、配置epe … 阅读全文
报错内容如下: Traceback (most recent call last): File "/usr/bin/slowloris", line 9, in <module> load_entry_point('Slowloris==0.1.4 … 阅读全文
当前使用redis-4.0.9版本来创建集群,我这里演示的是3主3从模式,我就不开6台主机了,6个节点全部在一台机器上模拟集群了,所使用系统Centos7.4 1、下载redis-4.0.9
1 2 |
cd /usr/local/src wget https://download.redis.io/releases/redis-4.0.9.tar.gz |
2 … 阅读全文
1 2 3 |
Fetching: redis-4.0.1.gem (100%) ERROR: Error installing redis: redis requires Ruby version >= 2.2.2 |
报错原因:安装redis的话,ruby版本最低是2.2.2,而当前版本是2.0.0,所以无法安装 解决办法:升级ruby版本 注:网上大多数版本都是安装RVM,查看rvm中的低版本来安装,我这里 … 阅读全文
报错内容:
1 2 3 4 5 6 |
make[1]: Leaving directory `/root/software/redis-4.0.9/src' make[1]: Entering directory `/root/software/redis-4.0.9/src' You need tcl 8.5 or newer in order to run the Redis test make[1]: *** [test] Error 1 make[1]: Leaving directory `/root/software/redis-4.0.9/src' make: *** [test] Error 2 |
解决办法:上面已经给了提示,需要安装tcl8.5或更高的版本才能运行测试
1 |
yum install tcl -y |
~微信打赏~ 赏
之前写过一篇mailx的文章,采用的是默认25端口发送邮件,但是在一些云服务器中为了防止邮件滥发,往往都对25端口做了限制,所以此时就使用到加密的465端口了,本篇文章以qq邮箱为例来配置mailx,通过465端口发送邮件。 1、关闭其它的邮件工具 [cray … 阅读全文
centos安装酸酸乳报错如下
1 2 3 4 5 |
File "/root/shadowsocksr/db_transfer.py", line 237, in thread_db rows = db_instance.pull_db_all_user() File "/root/shadowsocksr/db_transfer.py", line 351, in pull_db_all_user import cymysql ImportError: No module named cymysql |
解决办法:
1 |
yum install -y python-setuptools && easy_install pip && pip install cymysql |
~微信打赏~ 赏