上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 55 下一页
摘要: 1 install.sh 内容: 2 #!/bin/bash 3 #Author:liuzheng 4 #Company:Drastically 5 #Version:2.0 6 7 . /etc/init.d/functions 8 9 #显示界面 10 function menu() { 11 阅读全文
posted @ 2020-08-07 18:11 ascertain 阅读(601) 评论(0) 推荐(0)
摘要: centos6以前版本 service --status-all 在centos7也可使用,但是只能看到由其管理的服务 centos6 centos7 pstree systemctl systemctl |grep running systemctl list-units -t service s 阅读全文
posted @ 2020-08-07 15:34 ascertain 阅读(2154) 评论(0) 推荐(0)
摘要: 获取全套开发手册和源程序,发站内信联系 OCR识别服务开发手册 文件版本:4.0.0 修改时间:2019-11-12 第一章 接口说明 1.1. OCR识别接口说明 服务器 API基于http协议开发,任何程序都可以通过 HTTP 的调用方式来调用接口。 使用识别服务前请确认服务器IP地址及端口号( 阅读全文
posted @ 2020-08-05 17:19 ascertain 阅读(1105) 评论(0) 推荐(0)
摘要: Plugins: Email Extension Template Pipeline email 配置段 先利用Declarative Directive Generator生成 Post stage代码段 post { always { // One or more steps need to b 阅读全文
posted @ 2020-08-05 16:47 ascertain 阅读(473) 评论(0) 推荐(0)
摘要: 建立空连接 net use \\IP\ipc$ "" /user:"" 建立非空连接 net use \\IP\ipc$ "PASSWORD" /USER:"USERNAME" 映射为盘符 net use z: \\IP\c$ "PASSWORD" /user:"USERNAME" 删除连接 net 阅读全文
posted @ 2020-08-04 21:21 ascertain 阅读(568) 评论(0) 推荐(0)
摘要: 前提条件:1: 创建与RDS实例同地域的OSS Bucket2: 数据库恢复模式为FULL3: RDS实例拥有足够的存储空间4: RDS实例中没有同名的目标数据库5: RDS实例已创建高权限账号上云阶段全量阶段 Step1. 00:00之前 完成准备工作,包括: 完成DBCC CheckDB检查。 阅读全文
posted @ 2020-08-04 18:28 ascertain 阅读(258) 评论(0) 推荐(0)
摘要: SELECT * FROM sys.all_objects 查询系统表的内容 USE cjml_basecenter; GO SELECT o.name, SUM(p.reserved_page_count) * 8 table_size_kb, SUM(p.reserved_page_count) 阅读全文
posted @ 2020-08-03 21:15 ascertain 阅读(557) 评论(0) 推荐(0)
摘要: 直接在web中删除,要求输入手机验证码;采用以下方式可以直接删除数据库 EXEC sp_rds_drop_database 'cjml-auto' 直接利用rds的存储过程删除数据库,因为是高可用,后面有一个mirror,删除比较麻烦 阅读全文
posted @ 2020-08-03 21:11 ascertain 阅读(260) 评论(0) 推荐(0)
摘要: 统计单个库所有表记录数(包含sys) SELECT SCHEMA_NAME(t.schema_id) AS [schema] ,t.name AS tableName ,i.rows AS [rowCount] FROM sys.tables AS t , sysindexes AS i WHERE 阅读全文
posted @ 2020-08-03 11:54 ascertain 阅读(679) 评论(0) 推荐(0)
摘要: 查询每个库的数据文件大小和日志文件大小 with fs as ( select database_id, type, size -- * 8.0 / 1024 size from sys.master_files ) select name, --(select cast(round(sum(siz 阅读全文
posted @ 2020-08-03 10:49 ascertain 阅读(915) 评论(0) 推荐(0)
摘要: Please wait while Jenkins is getting ready to work ... 初始Jenkins一直卡在这个界面 需要你进入jenkins的工作目录,打开 hudson.model.UpdateCenter.xml将 url 中的 https://updates.je 阅读全文
posted @ 2020-08-01 22:30 ascertain 阅读(542) 评论(0) 推荐(0)
摘要: 备份还原时,发现SQL server一个库一直处于还原状态,无法脱机,操作,解决办法 restore database DB_NAME with recovery 阅读全文
posted @ 2020-08-01 08:14 ascertain 阅读(356) 评论(0) 推荐(0)
摘要: Windows Server 2019 和 Windows 10 1809 以上版本内置支持OpenSSH,除此以外只能手动安装 https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_instal 阅读全文
posted @ 2020-07-31 21:17 ascertain 阅读(2113) 评论(0) 推荐(0)
摘要: --全量备份 exec master.dbo.fullbackup 'D:\DBBak\Bod\','Bod','bak' go exec master.dbo.fullbackup 'D:\DBBak\CJML_APP_IntelliP\','CJML_APP_IntelliP','bak' go 阅读全文
posted @ 2020-07-31 00:02 ascertain 阅读(281) 评论(0) 推荐(0)
摘要: 目 录 1 目的 ............................................................................................................................................. 阅读全文
posted @ 2020-07-30 23:53 ascertain 阅读(2148) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-07-30 23:50 ascertain 阅读(367) 评论(0) 推荐(0)
摘要: 系统允许一个进程创建新进程,新进程即为子进程,子进程还可以创建新的子进程,形成进程树结构模型。整个linux系统的所有进程也是一个树形结构。树根是系统自动构造的,即在内核态下执行的0号进程,它是所有进程的祖先。由0号进程创建1号进程(内核态),1号负责执行内核的部分初始化工作及进行系统配置,并创建若 阅读全文
posted @ 2020-07-22 20:36 ascertain 阅读(710) 评论(0) 推荐(0)
摘要: 清除buffer和cache echo 3 > /proc/sys/vm/drop_cashes 磁盘操作: 逻辑级: 文件系统,块为最小寻址单元(文件块,I/O块)每个块包含一个或多个扇区,直接缓存文件系统数据(有文件系统参与),操作对象为文件 物理级: 磁盘块,扇区为最小寻址单元(设备块) bu 阅读全文
posted @ 2020-07-18 17:13 ascertain 阅读(143) 评论(0) 推荐(0)
摘要: proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_pass http://i 阅读全文
posted @ 2020-07-18 17:05 ascertain 阅读(2489) 评论(0) 推荐(0)
摘要: rhel系的安装过程中将普通用户加入管理组,其本质就是将其加入wheel组中 %wheel ALL=(ALL) NOPASSWD: ALL 阅读全文
posted @ 2020-07-18 16:48 ascertain 阅读(396) 评论(0) 推荐(0)
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 55 下一页