码迷,mamicode.com
首页 >  
搜索关键字:zabbix 监控 邮件报警 user group    ( 72559个结果
Ubuntu下TFTP、NFS和SSH服务搭建
tftp和nfs用于在开发板上通过网络系统来访问ubuntu系统下的文件。ssh服务用于支持在Windows下使用终端软件SecureCRT,MobaXterm登陆Ubuntu。 1 搭建NFS服务 sudo apt-get install nfs-kernel-server rpcbind #安装 ...
分类:系统相关   时间:2021-01-01 12:59:58    阅读次数:0
SpringBoot-配置文件
前言注解 总结一下注解方式的属性注入,顺便引入一下SpringBoot的注解@ConfigurationProperties 在Spring-IOC注解编程一章中了解的@PropertySource+@Value注解 user.username=jack user.password=root use ...
分类:编程语言   时间:2021-01-01 12:58:54    阅读次数:0
python + BeautifulSoup + selenium 实现爬取中医智库的古籍分类的数据
爬取内容为 该图片下的七个分类, 然后对应的每个种类的书本信息(摘要和目录) 效果为 代码如下 import requests from bs4 import BeautifulSoup import re import time from selenium import webdriver fro ...
分类:编程语言   时间:2021-01-01 12:57:34    阅读次数:0
mysql8.0下'this is incompatible with sql_mode=only_full_group_by'问题解决办法
今天执行sql语句时出现了高版本mysql愈发不兼容问题 'this is incompatible with sql_mode=only_full_group_by' 所以改一下mysql配置 在mysql.ini或者my.cnf下增加 [mysqld] sql_mode ='STRICT_TRA ...
分类:数据库   时间:2021-01-01 12:50:15    阅读次数:0
Java对象赋值与引用
当需要创建多个相同类型的对象且有某些字段的值是相同的,如果直接get,set的话,属性多的时候代码会很长,于是乎,以下代码产生了(java基础差没搞清楚赋值与引用) 1 User uuu = new User(); 2 uuu.setId("888"); 3 User u2 = new User() ...
分类:编程语言   时间:2021-01-01 12:22:56    阅读次数:0
runlevel
runlevels被targets所取代,即CentOS7采用加载target的方式来替代之前的启动级别。 其中有两个重要的target:multi-user.target与graphical.target。它们分别表示运行级别中的3与5级别。 获得默认启动的target #systemctl ge ...
分类:其他好文   时间:2021-01-01 12:12:50    阅读次数:0
设计模式 - 12)抽象工厂
class User { int _id; public int Id { get { return _id; } set { _id = value; } } string _name; public string Name { get { return _name; } set { _name ...
分类:其他好文   时间:2021-01-01 12:10:52    阅读次数:0
BootstrapTable表格点击字段排序
<table id="group-table" data-toggle="table" class="table table-striped table-hover" style="border: 1px solid #e4eaec; margin-top: 10px;"></table> //获取 ...
分类:编程语言   时间:2021-01-01 12:09:27    阅读次数:0
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-1' at line 1
SELECT * FROM `user` LIMIT 4,-1; 使用limit分页的时候,出现一个错误,官方说的是将这个bug修复了,这个以前是可以使用的 ...
分类:数据库   时间:2021-01-01 12:00:42    阅读次数:0
ES基础(四十一)对象及Nested对象
课程demos DELETE blog # 设置blog的 Mapping PUT /blog { "mappings": { "properties": { "content": { "type": "text" }, "time": { "type": "date" }, "user": { " ...
分类:其他好文   时间:2021-01-01 11:51:56    阅读次数:0
72559条   上一页 1 ... 94 95 96 97 98 ... 7256 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!