上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页
摘要: 安装phpldapadmin yum安装httpd及PhpLdapAdmin yum install -y epel* yum install httpd phpldapadmin -y 配置phpldapadmin及php 配置/etc/httpd/conf.d/phpldapadmin.conf 阅读全文
posted @ 2021-07-27 14:05 Star-Hitian 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 数据备份 ldap数据备份的方式有两种:一种是通过ldapsearch ,一种是通过slapcat命令。我这里更倾向于使用后者。因为后都使用不涉及到密码输出等问题。直接一条命令搞定 /usr/sbin/slapcat > /opt/ldap/ldapdbak.ldif 数据导入 提到导出就不得不提下 阅读全文
posted @ 2021-07-27 13:43 Star-Hitian 阅读(2045) 评论(0) 推荐(0) 编辑
摘要: Centos7安装OpenLDAP 环境: 系统版本:centos7.4 openldap版本2.4 ### 安装和配置 # 安装并启动服务 # 安装: yum install -y openldap openldap-servers openldap-clients # 拷贝数据库配置文件 cp 阅读全文
posted @ 2021-07-27 13:37 Star-Hitian 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 安装 Let’s Encrypt 客户端 申请ssl证书 certbot --agree-tos --email liulei@leg.tech certonly --webroot -w /opt/gitlab/embedded/service/gitlab-rails/public/ -d gi 阅读全文
posted @ 2021-07-27 11:04 Star-Hitian 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: log_error=/var/logs/mysql/error.log # 配置默认编码为utf8 # 改/etc/my.cnf配置文件,在[mysqld]下添加编码配置,如下所示: [mysqld] character_set_server=utf8 init_connect='SET NAMES 阅读全文
posted @ 2021-07-26 17:01 Star-Hitian 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 直接上命令 # 创建swap分区的文件 # 其中bs是每块的大小,count是块的数量;bs*count,就是swap文件的大小:这里1M*1024=1G。可以根据需要自行调整。 dd if=/dev/zero of=/swapfile bs=1M count=1024 # 格式化交换分区文件 # 阅读全文
posted @ 2021-07-26 16:24 Star-Hitian 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 安装certbot 安装 certbot 为免费证书做准备 yum install certbot python2-certbot-nginx 安装 svn 安装svn yum install svn 创建svn库 # 创建库 svnadmin create /var/svn/data # 授权ap 阅读全文
posted @ 2021-07-26 16:06 Star-Hitian 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 装饰器 from functools import wraps def timer(func): @wraps(func) def inner(request, *args, **kwargs): start = time.time() ret = func(request, *args, **kw 阅读全文
posted @ 2021-07-26 11:25 Star-Hitian 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://www.cnblogs.com/maple-shaw/p/9029086.html 阅读全文
posted @ 2021-07-23 14:52 Star-Hitian 阅读(22) 评论(0) 推荐(0) 编辑
摘要: app01 -- templatetags -- mytags.py from django import template from django.utils.safestring import mark_safe register = template.Library() @register.i 阅读全文
posted @ 2021-07-23 11:07 Star-Hitian 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页