上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 35 下一页
摘要: ``` 阿里云申请免费ssl证书 cd conf mkdir cert 上传pem key vim nginx.conf # 以下属性中以ssl开头的属性代表与证书配置有关,其他属性请根据自己的需要进行配置。 server { listen 443 ssl; #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。 server_name localhost; #将loc 阅读全文
posted @ 2020-02-04 20:03 kylingx 阅读(240) 评论(0) 推荐(0) 编辑
摘要: ```1.安装依赖yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel2.安装pcrecd /usr/local/src/tar -zxvf pcre-8.35.tar.gzcd pcre-8.35./configuremake && make installpcre-config --version3... 阅读全文
posted @ 2020-02-04 17:30 kylingx 阅读(256) 评论(0) 推荐(0) 编辑
摘要: ``` vim /etc/default/grub GRUB_CMDLINE_LINUX添加"ipv6.disable=1" grub2-mkconfig -o /boot/grub2/grub.cfg reboot lsmod | grep ipv6 netstat -lutnp ``` 阅读全文
posted @ 2020-02-02 23:30 kylingx 阅读(559) 评论(0) 推荐(0) 编辑
摘要: ``` 1.安装依赖 yum install gcc libxml2-devel net-snmp net-snmp-devel curl curl-devel php php-bcmath php-mbstring mariadb mariadb-devel –y 2.PHP vim /etc/php.ini date.timezone = PRC 3.wget安装包 rpm -Uvh http 阅读全文
posted @ 2020-02-02 21:20 kylingx 阅读(155) 评论(0) 推荐(0) 编辑
摘要: ``` 检查docker日志情况 容器日志一般存放在/var/lib/docker/containers/container_id/下面,以json.log结尾的文件(业务日志)很大,查看各个日志文件大小的脚本docker_log_size.sh,内容如下: ``` ``` #!/bin/sh echo " start clean docker containers logs " logs=$(f 阅读全文
posted @ 2020-01-30 11:06 kylingx 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: ``` 直连路由 int vlan 18 ip ad 10.66.18.254/24 同时存在静态路由配置next hop ip route 10.66.18.0 255.255.255.240 172.28.1.1 permanent - 地址段 ip route 10.66.18.2 255.255.255.255 172.28.1.1 permanent - host ip route 10 阅读全文
posted @ 2020-01-28 17:48 kylingx 阅读(96) 评论(0) 推荐(0) 编辑
摘要: ```snmpconfig --set snmpv1snmptraps --send -ip_address 10.0.1.83``` 阅读全文
posted @ 2020-01-23 18:46 kylingx 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-01-23 17:11 kylingx 阅读(495) 评论(0) 推荐(0) 编辑
摘要: ``` C盘存在大量cbs.log文件,磁盘挤爆 Stop the Windows Modules Installer (TrustedInstaller) service Delete or move the large Cbspersist_XX.log file out of \Windows\Logs\CBS. Start the Windows Modules Installer (Tr 阅读全文
posted @ 2020-01-23 16:50 kylingx 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: ``` 环境依赖 yum -y install gcc zlib-devel openssl-devel readline-devel ncurses-devel tar -xzvf *.tar.gz cd vpnserver make ./vpnserver start ./vpncmd 设置密码 ServerPasswordSet 自启动 vim /etc/rc.d/rc.local /dat 阅读全文
posted @ 2020-01-22 15:47 kylingx 阅读(1972) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 35 下一页