• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






会飞の鱼

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

随笔分类 -  linux

上一页 1 2 3 4 5 6 下一页

linux remember
 
jenkins 添加节点问题
摘要:没有 Launch agent via Java Web Start 选项 Manage Jenkins > Configure Global Security > TCP port for JNLP agents 选random 阅读全文
posted @ 2019-01-17 11:15 会飞の鱼 阅读(344) 评论(0) 推荐(0)
windows 启动ssh server
摘要:bitvise ssh server 阅读全文
posted @ 2019-01-15 18:14 会飞の鱼 阅读(1772) 评论(0) 推荐(0)
kibana test
摘要:https://www.cnblogs.com/yiwangzhibujian/p/7137546.html 阅读全文
posted @ 2019-01-12 17:11 会飞の鱼 阅读(131) 评论(0) 推荐(0)
elasticsearch 问题
摘要:elasticsearch 的端口默认绑定到 127.0.0.1 上,对外开放 http 端口就配置 http.host,对外开放 tcp 端口就配置 network.host [1]: max file descriptors [65535] for elasticsearch process i 阅读全文
posted @ 2019-01-12 10:40 会飞の鱼 阅读(157) 评论(0) 推荐(0)
elasticsearch 测试
摘要:https://www.yiibai.com/elasticsearch/elasticsearch-getting-start.html # curl -XPUT "http://localhost:9200/movies/movie/1" -d'> {> "title": "The Godfat 阅读全文
posted @ 2019-01-11 20:06 会飞の鱼 阅读(469) 评论(0) 推荐(0)
centos7升级内核
摘要:载入elrepo源,搜索内核更新资源,并进行更新操作。 具体实验步骤:# 载入公钥rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org# 安装ELReporpm -Uvh http://www.elrepo.org/elrepo-rel 阅读全文
posted @ 2019-01-10 13:58 会飞の鱼 阅读(420) 评论(0) 推荐(0)
nginx编译安装
摘要:centos7 nginx-1.13.7 yum install gcc gcc-c++ automake pcre pcre-devel zlip zlib-devel openssl openssl-devel ./configure make make install configure 时: 阅读全文
posted @ 2018-12-04 11:13 会飞の鱼 阅读(1318) 评论(0) 推荐(0)
nginx 相关
摘要:查看默认配置路径以及检验配置 # ./sbin/nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/ 阅读全文
posted @ 2018-12-04 10:24 会飞の鱼 阅读(91) 评论(0) 推荐(0)
centos7 安装redis
摘要:第一步:下载redis安装包 wget http://download.redis.io/releases/redis-4.0.6.tar.gz 第二步:解压压缩包 tar -zxvf redis-4.0.6.tar.gz 第三步:yum安装gcc依赖 yum install gcc -y 第四步: 阅读全文
posted @ 2018-12-03 12:16 会飞の鱼 阅读(117) 评论(0) 推荐(0)
re 上传jar包
摘要:rz -be 阅读全文
posted @ 2018-11-29 19:14 会飞の鱼 阅读(167) 评论(0) 推荐(0)
基于docker的wekan部署
摘要:镜像地址: https://hub.docker.com/r/wekanteam/wekan/ wiki: https://github.com/wekan/wekan/wiki#Development github: https://github.com/wekan/wekan 版本: v1.75 阅读全文
posted @ 2018-11-24 14:35 会飞の鱼 阅读(4043) 评论(0) 推荐(0)
解压.bz2失败
摘要:报错: # tar -jxf geos-3.6.2.tar.bz2 tar (child): bzip2:无法 exec: 没有那个文件或目录tar (child): Error is not recoverable: exiting nowtar: Child returned status 2t 阅读全文
posted @ 2018-11-20 15:15 会飞の鱼 阅读(295) 评论(0) 推荐(0)
supervisord 进程管家
摘要:s supervisor supervisor管理进程,是通过fork/exec的方式将这些被管理的进程当作supervisor的子进程来启动,所以我们只需要将要管理进程的可执行文件的路径添加到supervisor的配置文件中就好了。此时被管理进程被视为supervisor的子进程,若该子进程异常中 阅读全文
posted @ 2018-11-09 10:14 会飞の鱼 阅读(223) 评论(0) 推荐(0)
graphviz
摘要:https://graphviz.gitlab.io/_pages/Download/Download_windows.html apt-get install graphviz python shell.py get_graph_dot create_sg --show_args |dot -Tp 阅读全文
posted @ 2018-11-02 10:22 会飞の鱼 阅读(168) 评论(0) 推荐(0)
辅助测试工具xip.io
摘要:http://xip.io/ https://github.com/basecamp/xip-pdns 阅读全文
posted @ 2018-09-17 17:00 会飞の鱼 阅读(290) 评论(0) 推荐(0)
elastastic search
摘要:curl -X PUT "10.97.184.40:9200/logstash-2015.05.18" -H 'Content-Type: application/json' -d'{ "mappings": { "log": { "properties": { "geo": { "properti 阅读全文
posted @ 2018-09-05 13:13 会飞の鱼 阅读(214) 评论(0) 推荐(0)
jenkins 1
摘要:https://jenkins.io/doc/pipeline/tour/getting-started/ 下载jenkins 保证本地时间与网络同步 ntpdate cn.pool.ntp.org 启动jenkins java -jar jenkins.war 阅读全文
posted @ 2018-08-26 00:05 会飞の鱼 阅读(112) 评论(0) 推荐(0)
Alpine Linux 使用简介
摘要:https://blog.csdn.net/csdn_duomaomao/article/details/76152416 阅读全文
posted @ 2018-08-19 13:35 会飞の鱼 阅读(293) 评论(0) 推荐(0)
nvm 安装
摘要:curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash nvm install 8.9.0 nvm use 8.9.0 wget https://dl.yarnpkg.com/rpm/ya 阅读全文
posted @ 2018-07-27 20:48 会飞の鱼 阅读(220) 评论(0) 推荐(0)
web访问命令行
摘要:https://github.com/yudai/gotty go get github.com/yudai/gotty gotty -p 8000 -w kubectl exec -it mysql-5fc8fb5766-vsw9s bash 阅读全文
posted @ 2018-07-25 16:13 会飞の鱼 阅读(642) 评论(0) 推荐(0)
 

上一页 1 2 3 4 5 6 下一页