会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博尔特希
博客园
首页
新随笔
联系
管理
上一页
1
2
3
4
5
6
7
下一页
2018年9月7日
Centos7 第三方仓库 yum 方式安装 PHP7.2
摘要: 1.卸载原先安装的PHP 2.更改yum源(linux的yum源不存在php7.x) 3.yum安装php72w和各种拓展
阅读全文
posted @ 2018-09-07 10:25 博尔特希
阅读(2361)
评论(0)
推荐(0)
2018年9月6日
Centos7 超简单将Centos的yum源更换为国内的阿里云源
摘要: 1、备份 2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/ 3、之后运行yum makecache生成缓存
阅读全文
posted @ 2018-09-06 14:17 博尔特希
阅读(654)
评论(0)
推荐(0)
Git第三方仓库安装方式(IUS)
摘要: 1.安装使用里面说的自动化安装脚本 2.然后可以看到 git2u相关内容 3.执行安装,并查看下版本
阅读全文
posted @ 2018-09-06 14:13 博尔特希
阅读(953)
评论(0)
推荐(0)
2018年3月29日
Java 查询数据后进行递归操作
摘要: java的递归方法记录: private List<Map<String, Object>> generateOrgMapToTree(List<Map<String, Object>> orgMaps, Integer pid) { if (null == orgMaps || orgMaps.s
阅读全文
posted @ 2018-03-29 14:36 博尔特希
阅读(7177)
评论(0)
推荐(0)
2018年1月26日
spring-boot restful put方式提交表单
摘要: 使用spring-boot 做接口,如果按restful的路由形式想使用put方式进行表单提交,第一个参数应该为文件参数,代码如下: @PutMapping("/http-put") public IbaseWorkResult httpPut(@RequestParam("file") Multi
阅读全文
posted @ 2018-01-26 09:20 博尔特希
阅读(2391)
评论(0)
推荐(0)
2017年7月4日
阿里云ECS centos7 支持IPv6
摘要: 1.编辑 /etc/sysctl.conf 文件,将其中三条禁用IPv6的设置更改为: net.ipv6.conf.all.disable_ipv6 = 0 net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.lo.disable_ipv6 =
阅读全文
posted @ 2017-07-04 10:32 博尔特希
阅读(2065)
评论(0)
推荐(0)
2017年5月26日
PHP递归
摘要: public static function getNode($node_arr = [], $pid = 0) { $node_arr = empty($node_arr) ? self::getAll() : $node_arr; $node = []; $tem = []; foreach ($node_arr ...
阅读全文
posted @ 2017-05-26 11:21 博尔特希
阅读(133)
评论(0)
推荐(0)
2017年5月23日
PHP判断当前协议是否为HTTPS
摘要: function is_https() { if ( !empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') { return true; } elseif ( isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_...
阅读全文
posted @ 2017-05-23 10:20 博尔特希
阅读(11691)
评论(0)
推荐(0)
2017年3月22日
apache将不带www域名301重定向到带www的域名的配置方法
摘要: #强制重定向到wwwRewriteEngine OnRewriteCond %{HTTP_HOST} ^jb51.net/ [NC]RewriteRule ^(.*)$ http://www.jb51.net/$1 [L,R=301]#强制重定向到不带www的顶级域名RewriteEngine On
阅读全文
posted @ 2017-03-22 20:20 博尔特希
阅读(1842)
评论(0)
推荐(0)
2017年3月16日
Centos 7.2 安装稳定版 nginx
摘要: 1. 创建适用于RHEL/CentOS系统的安装源文件,位置为: /etc/yum.repos.d/nginx.repo , 并写入以下内容: 替换baseurl地址中的内容, “OS” 替换为系统名称 “rhel” 或者 “centos”, “OSRELEASE” 替换为系统版本 “5”,“6”
阅读全文
posted @ 2017-03-16 13:58 博尔特希
阅读(1028)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告