vim /etc/systemd/system/node_exporter.service [Unit] Description=node_exporter Documentation=https://prometheus.io/ After=network.target [Service] Typ ...
分类:
系统相关 时间:
2020-06-22 17:16:37
阅读次数:
107
配置一个简单的dns服务 先下载一个需要用到的软件 bind `yum -y install bind` 编辑配置文件 named.conf `vim /etc/named.conf 在配置文件里面修改两个部分,就是图中的 any 位置(之前不是any给修改成any的) `` options { # ...
分类:
其他好文 时间:
2020-06-22 15:06:28
阅读次数:
80
上一篇随笔中已经说了简单的Jar是如何封装的,但是我的需求是根据TIPTOP的查询条件产生XML文件并上传到FTP主机中,那么就要涉及到XML生成的方法和FTP上传的方法 所以在Eclipse写的时候引用了第三方的价包:jdbc, org.dom4j , org.apache.commons 把这几 ...
分类:
数据库 时间:
2020-06-22 11:04:05
阅读次数:
72
将/etc/profile文件拷贝到/tmp下,并用vim打开/tmp/profile在命令模式下删除行首的空白字符[root@centos7~]#cp/etc/profile/tmp/profile[root@centos7~]#cat/tmp/profile#/etc/profile#Systemwideenvironmentandstartupprograms,forloginsetup#F
分类:
系统相关 时间:
2020-06-22 09:18:53
阅读次数:
95
前言 使用其他方式如宝塔面板小伙伴可以自行百度,本博客只讲如何使用命令备份网站到github 一、 申请github仓库,最好设置私有 二、本地git配置 注:本文默认已经配置好git的默认配置,如ssh公钥 cd /www/wwwroot/网站目录 # 初始化仓库 git init # 关联到远程 ...
分类:
Web程序 时间:
2020-06-22 01:15:05
阅读次数:
90
1.编写txt里面放入ip [root@localhost ~]# vim ip.txt 192.168.177.1 192.168.177.2 192.168.177.3 192.168.177.4 192.168.177.5 192.168.177.6172.168.177.8127.0.0.1 ...
分类:
系统相关 时间:
2020-06-21 20:22:48
阅读次数:
68
Shell学习 第一节 基本语法 变量 表达式 判断语句 If表达式 一、先来看一个简单的shell程序: mkdir test cd test/ vim example01.sh example.sh #!/bin/bash等于#!/bin/sh (#!跟shell命令的完全路径。 作用: 显示后 ...
分类:
系统相关 时间:
2020-06-21 20:05:24
阅读次数:
71
编写脚本: [root@localhost ~]# vim /shell/lnmp.sh #!/bin/bash yum -y install epel-release &> /dev/null yum -y clean all &> /dev/null yum -y install nginx p ...
分类:
系统相关 时间:
2020-06-21 20:02:38
阅读次数:
57
一、原生开发(Native App开发) 原生开发,是在Android、IOS等移动平台上利用官方提供的开发语言、开发类库、开发工具进行App开发。比如Android是利用Java、Eclipse、Android Studio;IOS是利用Objective-C和Xcode进行开发。 通俗点来讲,原 ...
分类:
移动开发 时间:
2020-06-21 19:57:10
阅读次数:
92
debug PostgreSQL 9.6.18 using Eclipse IDE on CentOS7 1.概览 这个文档指导如何在Centos7下,使用Eclipse IDE 调试PostgreSQL Linux: CentOS7 Postgres: postgresql-9.6.18.tar. ...
分类:
数据库 时间:
2020-06-21 19:35:23
阅读次数:
59