上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页
摘要: ![](https://img2020.cnblogs.com/blog/1441611/202101/1441611-20210119095127358-426039425.png) 阅读全文
posted @ 2021-01-19 09:52 HaimaBlog 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 背景 当有多个git账号时,比如: 两个gitee,一个账号是用于公司内部的工作开发,一个账号是自己学习的个人账号; 一个github,用于自己进行一些开发活动; 操作: 生成不同的key ssh-keygen -t rsa -C "whm2416@qq.com" -f ~/.ssh/gitee_h 阅读全文
posted @ 2021-01-16 01:01 HaimaBlog 阅读(395) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/nyist-xsk/p/11496143.html 阅读全文
posted @ 2021-01-13 12:29 HaimaBlog 阅读(187) 评论(0) 推荐(0) 编辑
摘要: gem添加分页的依赖 #列表分页 gem 'will_paginate', '~> 3.0.pre2' bundle 安装依赖 用户列表控制器 before_filter :auth_user,only: [:index] #只有inidex 方法才验证用户登陆 #用户列表页面 def index 阅读全文
posted @ 2021-01-11 07:31 HaimaBlog 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 创建控制器 如果创始的数据模型是对应一张表,那么要使用复数的形式 例如给users表创建一个控制器 rails g controller users 路由 config/routes.rb里添加 resources :users Rails.application.routes.draw do ge 阅读全文
posted @ 2021-01-10 23:02 HaimaBlog 阅读(113) 评论(0) 推荐(0) 编辑
摘要: rails帮助命令 rails -h 创建user模型 命令行 haima@haima-PC:/media/haima/34E401CC64DD0E28/site/go/src/ruby/circles$ rails g model user Running via Spring preloader 阅读全文
posted @ 2021-01-10 21:41 HaimaBlog 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 修改Gamefile Gamefile 里添加 gem 'mysql2' 执行命令行 bundle 可以看到下图片上已经安装好依赖了 修改配置文件 修改config/database.yml文件 # SQLite. Versions 3.8.0 and up are supported. # gem 阅读全文
posted @ 2021-01-10 20:36 HaimaBlog 阅读(113) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/ced2793bfde4?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation gem list --help #查看帮助 ge 阅读全文
posted @ 2021-01-10 19:37 HaimaBlog 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 学习视频 https://www.bilibili.com/video/BV1RJ411W7N3?t=49&p=7 一. 启动rails 启动 cd circles/ #到circles的项目根目录里 以下项目名称为 circles rails s -p 3001 #如果不写端口,默认是3000 r 阅读全文
posted @ 2021-01-10 11:50 HaimaBlog 阅读(163) 评论(0) 推荐(0) 编辑
摘要: rails安装 ruby 1.8.6 对应的rails是2.3.2 Ruby 1.8.7 或 1.9.2 对应的rails 2.3.x ruby1.9.3,对应的rails是3.2.12, ruby2.0.0,对应的rails版本是4.0 | Rails 4.2.5 ruby 2.3.8p459,对 阅读全文
posted @ 2021-01-08 09:24 HaimaBlog 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 一、定时器的创建 golang中定时器有三种实现方式,分别是time.sleep、time.after、time.Timer 其中time.after和time.Timer需要对通道进行释放才能达到定时的效果 package main import ( "fmt" "time" ) func mai 阅读全文
posted @ 2021-01-07 17:40 HaimaBlog 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: [root@HmEduCentos01 ~]# yum install ibus -y [root@HmEduCentos01 ~]# ibus restart [root@HmEduCentos01 ~]# ibus-setup 》》》应用程序》》系统工具》》设置》》区域和语言》》再点左下角的那个 阅读全文
posted @ 2021-01-07 10:33 HaimaBlog 阅读(368) 评论(0) 推荐(0) 编辑
摘要: Ruby入门学习: 视频教程 https://www.bilibili.com/video/BV1QW411F7rh?t=401&p=1 笔记 https://github.com/haimait/RubyStudy https://gitee.com/komavideo/LearnRuby Rub 阅读全文
posted @ 2021-01-06 09:30 HaimaBlog 阅读(97) 评论(0) 推荐(0) 编辑
摘要: Rest风格说明 Rest风格说明 | method | url地址 | 描述 | | | | | | PUT | localhost:9200/索引名称/类型名称/文档id | 创建文档(指定文档id) | | POST | localhost:9200/索引名称/类型名称 | 创建文档(随机文档 阅读全文
posted @ 2021-01-03 23:37 HaimaBlog 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1. 什么是IK分词器 2. 下载IK分词器 下载地址,版本要和ES的版本对应上 https://github.com/medcl/elasticsearch-analysis-ik/releases/tag/v7.3.1 注意下载zip版本 下载完毕后,放入到我们的elasticsearch/pl 阅读全文
posted @ 2021-01-03 21:42 HaimaBlog 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 一. 前序 sh Elasticsearch是一个基于Apache Lucene(TM)的开源搜索引擎。无论在开源还是专有领域,Lucene 可以被认为是迄今为止最先进、性能最好的、功能最全的搜索引擎库。 但是,Lucene只是一个库。想要 使用它,你必须使用Java来作为开发语言并将其直接集成到你 阅读全文
posted @ 2021-01-03 16:27 HaimaBlog 阅读(175) 评论(0) 推荐(0) 编辑
摘要: docker-compose安装EFK git clone https://github.com/haimait/docker_compose_efk docker-compose up -d Fluentd # 日志收集 Elasticsearch # 数据库 Kibana # 图形管理系统 ## 阅读全文
posted @ 2021-01-03 15:11 HaimaBlog 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 参考 docker_compose_efk elasticsearch、kibana、filebeat https://github.com/haimait/docker_compose_efk docker-compose 一键部署elasticsearch、kibana、filebeat htt 阅读全文
posted @ 2020-12-29 19:25 HaimaBlog 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 分区类型: 分区方法一 分区方法二 文件系统类型 EXT2 EXT3 EXT4 阅读全文
posted @ 2020-12-27 22:13 HaimaBlog 阅读(62) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/softjc/29947.html 阅读全文
posted @ 2020-12-25 18:29 HaimaBlog 阅读(301) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/alex_yangchuansheng/article/details/103343697 https://blog.csdn.net/liumiaocn/article/details/109385231 阅读全文
posted @ 2020-12-25 10:59 HaimaBlog 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/qq_35641923/article/details/86493822 https://www.runoob.com/ruby/ruby-installation-unix.html https://www.jianshu.com/p/1fbbc 阅读全文
posted @ 2020-12-24 15:24 HaimaBlog 阅读(1142) 评论(0) 推荐(0) 编辑
摘要: 有关用户登录的信息记录在 utmp(/var/run/utmp)、wtmp(/var/log/wtmp)、btmp(/var/log/btmp) 和 lastlog(/var/log/lastlog) 等文件中。 who、w 和 users 等命令通过 utmp(/var/run/utmp) 文件查 阅读全文
posted @ 2020-12-23 09:35 HaimaBlog 阅读(407) 评论(0) 推荐(0) 编辑
摘要: BIOS开启虚拟化 如果没有就参考下面的连接地址设置 http://robotrs.lenovo.com.cn/ZmptY2NtYW5hZ2Vy/p4data/Rdata/Rfiles/726.html 下载软件 下载地址: 其它下载地址: windows版 https://www.nocmd.co 阅读全文
posted @ 2020-12-13 11:32 HaimaBlog 阅读(878) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_41282397/article/details/85292685 阅读全文
posted @ 2020-12-10 15:01 HaimaBlog 阅读(566) 评论(0) 推荐(0) 编辑
摘要: 安装DNMP https://github.com/yeszao/dnmp.git https://blog.csdn.net/weixin_34038293/article/details/94275716?utm_medium=distribute.pc_relevant.none-task-b 阅读全文
posted @ 2020-12-09 07:07 HaimaBlog 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 哈喽哇,今天在访问远程服务器的时候,出现了一个小问题。 原因:之前ssh联系过服务器,重置服务器后,再次连接服务器,就会出这个问题。 一、发现问题 问题如下图代码: $ ssh root@108.61.163.242 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 阅读全文
posted @ 2020-12-08 21:30 HaimaBlog 阅读(6783) 评论(0) 推荐(0) 编辑
摘要: 参考: (最新2020)Golang 使用Dockerfile 打包部署到 docker https://blog.csdn.net/weixin_44042863/article/details/105872006 Docker手工部署GO环境 https://blog.csdn.net/zhon 阅读全文
posted @ 2020-12-07 09:54 HaimaBlog 阅读(111) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1441611/202012/1441611-20201206152818435-662060215.png) 阅读全文
posted @ 2020-12-06 15:29 HaimaBlog 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 在基于 Ubuntu 的 Linux 发行版上安装 Wireshark https://linux.cn/article-11987-1.html sudo add-apt-repository universe sudo apt install wireshark abhishek@nuc:~$ 阅读全文
posted @ 2020-12-02 19:38 HaimaBlog 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 一、 docker 拉去最新版本的redis `docker pull redis:6.0.6` #后面可以带上tag号, 默认拉取最新版本 二、 docker安装redis 执行命令: mkdir -p /usr/local/docker/redis/conf chmod -R 777 /usr/ 阅读全文
posted @ 2020-11-22 20:51 HaimaBlog 阅读(2056) 评论(0) 推荐(0) 编辑
摘要: 编写单元测试,运行时报下面的错误 haima@haima-PC:/media/haima/34E401CC64DD0E28/site/go/src/haimait/learn/base/cheshi01$ go test go: cannot find main module, but found 阅读全文
posted @ 2020-11-22 18:19 HaimaBlog 阅读(4796) 评论(0) 推荐(1) 编辑
摘要: package common import ( "bufio" "fmt" "os" "time" ) /*自定义日志文件*/ func DebugLog(args ...interface{}) error { var floderLog = "logs" logName := floderLog 阅读全文
posted @ 2020-11-19 11:58 HaimaBlog 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 相关文章 https://www.cnblogs.com/huim/p/12116004.html https://4hou.win/wordpress/?cat=3080 Nmap vs Masscan https://blog.csdn.net/nex1less/article/details/ 阅读全文
posted @ 2020-11-17 17:14 HaimaBlog 阅读(2099) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/0c61bdfb9589 也可以看这篇,本文是这篇的简捷版,均原创 首先,把系统更到最新,并复制下面的代码 sudo apt update 更新软件包 sudo apt upgrade 安装相关依赖,复制代码即可 sudo apt install 阅读全文
posted @ 2020-11-14 11:15 HaimaBlog 阅读(1210) 评论(0) 推荐(0) 编辑
摘要: [TOC] 环境: - centos8的服务器 - 安装好docker和docker-compose 首先需要开放对外的ip端口,如阿里云的 ![](https://img2020.cnblogs.com/blog/1441611/202011/1441611-20201115122855486-2 阅读全文
posted @ 2020-11-10 12:23 HaimaBlog 阅读(1124) 评论(0) 推荐(1) 编辑
摘要: linux视频学习教程 https://www.bilibili.com/video/BV1Sv411r7vd?p=6 随机密码生成: https://suijimimashengcheng.51240.com/ linux安装过程 选择红赗 选择安装位置 选择分配磁盘大小,这里给100G(后期可以 阅读全文
posted @ 2020-11-10 09:53 HaimaBlog 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: http://www.yadexp.com/yadexp/209/d.htm 阅读全文
posted @ 2020-11-09 18:55 HaimaBlog 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 项目背景:前端是uniapp开发的h5,后端是tp5,其他语言我觉得应该大同小异,主要是思路,本文就以这俩为例吧 1、首先在tp5的入口文件:public/index.php 在里面添加三行: // [ 应用入口文件 ] header("Access-Control-Allow-Origin:*") 阅读全文
posted @ 2020-11-03 10:18 HaimaBlog 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: 学习地址: https://www.bilibili.com/video/BV1hV411U74y?p=4 https://www.bilibili.com/video/BV1S7411R7kF?p=19 https://www.bilibili.com/video/BV1z4411G7CY?p=3 阅读全文
posted @ 2020-11-02 08:42 HaimaBlog 阅读(554) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页