码迷,mamicode.com
首页 >  
搜索关键字:lease    ( 2829个结果
Memcached和Redis在Linux下的安装
Memcached安装与配置 准备 从http://memcached.org/下载最新版的memcached(memcached-1.4.15.tar.gz)wget http://memcached.googlecode.com/files/memcached-1.4.13.tar.gz 从ht ...
分类:系统相关   时间:2020-07-15 01:16:38    阅读次数:77
github网络错误处理
github网络错误处理 [root@node10 kodoe]# git pull origin:dev ssh: Could not resolve hostname origin: Name or service not known fatal: Could not read from rem ...
分类:其他好文   时间:2020-07-14 13:37:21    阅读次数:72
0434. Number of Segments in a String (E)
Number of Segments in a String (E) 题目 Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space ch ...
分类:其他好文   时间:2020-07-14 09:24:30    阅读次数:84
centos8 设置 redis 开机自启动
编写脚本文件 #!/bin/bash #chkconfig: 22345 10 90 #description: Start and Stop redis REDISPORT=6379 EXEC=/usr/local/soft/redis5/bin/redis-server CLIEXEC=/usr ...
分类:其他好文   时间:2020-07-14 00:34:31    阅读次数:331
CentOS7下的Zabbix4.4安装配置
1、Zabbix 介绍 Zabbix 是一个基于 WEB 界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。能监视各种网络参数,保证服务器系统的安全运营;并提供柔软的通知机制以让系统管理员快速定位/解决存在的各种问题。 zabbix特点: 数据采集:支持SNMP,Agent,ICMP, ...
分类:其他好文   时间:2020-07-12 22:24:27    阅读次数:80
使用PXE批量安装Linux RHEL系统
给客户装服务器一装就是几十台,又不允许接U盘,只能使用光驱装系统,就开始琢磨PXE安装了,毕竟网线都接好了不用白不用在网上有很多PXE安装的教程,但总是少那么一点东西,反复翻阅了四五篇教程,总结了一下大体流程测试系统:CentOS7.4、中标麒麟7.5、RHEL7.2IP:192.168.242.2,安装了图形化界面(11步需要在图形化界面操作,否则只能手动编写配置文件或进引导后手动安装)以roo
分类:系统相关   时间:2020-07-10 09:24:48    阅读次数:64
写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度
写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度。 解题思路: 字符串以\0作为结尾,则从第一个字符开始向后移动遇到\0认为字符串结束。 答案: #include <stdio.h> int mystrlen(char *str) { int len = 0; char *pt ...
分类:其他好文   时间:2020-07-09 19:20:11    阅读次数:89
maven setting 文件配置
<!--声明语句--> <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins ...
分类:其他好文   时间:2020-07-07 11:39:34    阅读次数:52
Python 多进程和多线程
Python中的多进程 Process 逐个创建进程 使用multiprocessing 中的Process,其中start()代表启动进程,join()代表等待进程结束再执行后面代码程序。 from multiprocessing import Process from time import t ...
分类:编程语言   时间:2020-07-06 12:48:12    阅读次数:78
完善README——MarkDown模板[EN]
Title ####I am logo!I don't care other that not relate logo~ Introduction Oh,Everyone~ It is warnning now,START! I write the blog for spare mould that ...
分类:其他好文   时间:2020-07-05 21:02:34    阅读次数:79
2829条   上一页 1 ... 12 13 14 15 16 ... 283 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!