码迷,mamicode.com
首页 >  
搜索关键字:ansible install smokeping    ( 42845个结果
mvn dependency:copy-dependencies下载本地仓库jar报错找不到
背景:idea 界面maven >install成功 cmd mvn dependency:copy-dependencies 本地仓库jar报错找不到 直接使用mvn使用的 是C:\Users\Administrator\.m2\settings.xml idea使用的是指定的settings.x ...
分类:编程语言   时间:2020-11-27 11:51:12    阅读次数:20
Docker CentOS / Ubuntu容器开启 SSH 服务
在CentOS容器内执行 yum install passwd openssl openssh-server -y # Ubuntu把yum改成apt-get ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N '' ssh-ke ...
分类:系统相关   时间:2020-11-27 11:39:01    阅读次数:15
NO.A.0001——Git服务器部署常见问题及解决方案
问题一:问题现象:[root@localhostgit-2.5.0]#autoconf无法执行:解决方案:[root@localhostgit-2.5.0]#yuminstall-yautoconf问题二:问题现象:[root@localhostgit-2.5.0]#make/usr/bin/perlMakefile.PLPREFIX=‘/usr/local/git‘INSTALL_BASE=‘‘
分类:其他好文   时间:2020-11-27 11:25:03    阅读次数:7
深入解析Python模块引入机制
讲完了函数的一些概念,我们来说Python的模块引入,python里面有大量的现成的模块可以使用,不用我们自己造轮子。1.模块的好处:a).打个比方我们要造一个自行车,我们并不需要去制造橡胶,钢筋,轮胎,我们只需要买一些现成的轮子,龙头,把手,组装一下就可以了。Python也是这样,我们有的时候代码需要一些功能,而这些功能在标准库里面或者第三方库里面早就写好我的,我们要做的就是引入而已.b).当你
分类:编程语言   时间:2020-11-27 11:19:02    阅读次数:8
linux 定时执行shell
第一步:安装 crontab ,命令 yum -y install vixie-cron 扩展:service crond start //启动服务 service crond stop //关闭服务 service crond restart //重启服务 service crond reload ...
分类:系统相关   时间:2020-11-27 11:08:43    阅读次数:11
How to install sqli-labs into localhost
I use phpstudy to set a php+Mysql+Apache environment for the sqli-labs. The first step is to download the sqli-labs-master.zip from the official websi ...
分类:数据库   时间:2020-11-26 15:15:20    阅读次数:14
NPM配置淘宝镜像
临时使用 npm install --registry https://registry.npm.taobao.org 全局使用 npm config set registry https://registry.npm.taobao.org 查看全局配置 npm config get registr ...
分类:其他好文   时间:2020-11-26 15:14:40    阅读次数:6
[Python]PIP提速!!!
背景 学习 Python 的话,仅掌握标准库是远不够的,有很多好用的第三方库我们也需要用到的,比如,由鼎鼎大名的 K 神开发的爬虫必不可少的 requests 库,一般都是必装的库吧。安装第三方库当然还是用 pip 命令安装最方便了。 但是,大家发现 pip install + 包名 的方式 安装第 ...
分类:编程语言   时间:2020-11-26 15:12:40    阅读次数:8
Flask Restful api
Flask是一个基于Python开发的微型web框架 使用Flask实现简单的restful api 安装 pip install flask eg: from flask import Flask app = Flask(__name__) @app.route('/') def hello(): ...
分类:Windows程序   时间:2020-11-26 15:03:17    阅读次数:11
Ubuntu18下使用supervisor守护golang进程
golang编译后可以使用 nohup ./test & 进行后台启动,但却没有守护进程的功能 当然了,写shell脚本肯定是可以实现后台守护的功能的,奈何本人不会写啊 此时就想到了supervisor 首先安装 apt install supervisor 创建配置文件 vim /etc/supe ...
分类:系统相关   时间:2020-11-26 15:01:15    阅读次数:10
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!