12 2019 档案

摘要:本次部署使用Syncrepl同步模式,你是否还在为到处都是更改slapd.conf配置文件的部署方案苦恼,现在的ldap都是使用只需要写ldif配置文件更改即可。 节点信息 IP hostname role 172.16.0.124 ldap-master OpenLDAP Master 172.1 阅读全文
posted @ 2019-12-23 14:23 不算很酷 阅读(1408) 评论(0) 推荐(1)
摘要:服务端安装NFS服务 1、查看系统是否已安装NFS [root@localhost ~]# rpm -qa | grep nfs texlive-mfnfss-svn19410.0-43.el7.noarch texlive-psnfss-svn23394.9.2a-43.el7.noarch [r 阅读全文
posted @ 2019-12-12 16:08 不算很酷 阅读(486) 评论(0) 推荐(0)
摘要:source <(kubectl completion bash) echo "source <(kubectl completion bash)" >> ~/.bashrc 阅读全文
posted @ 2019-12-10 14:10 不算很酷 阅读(790) 评论(0) 推荐(0)
摘要:由于自动化需要,部署一台ftp服务器 安装vsftpd yum install vsftpd -y 安装完成之后,在/etc/vsftpd目录下会有四个文件 [root@localhost ~]# ll /etc/vsftpd/ 总用量 20 -rw . 1 root root 125 10月 31 阅读全文
posted @ 2019-12-06 10:39 不算很酷 阅读(840) 评论(0) 推荐(1)
摘要:由于项目需要,postgresql需要做读取负载均衡配置,使用nginx反向代理来做负载均衡 在nginx.conf配置文件最下方添加如下字段: stream { server { listen 15432; proxy_pass db; } upstream db { server 192.168 阅读全文
posted @ 2019-12-02 10:52 不算很酷 阅读(1441) 评论(0) 推荐(0)