SQL Server 2012 无人值守安装(加入新实例)
- 方法1,通过指定条个參数安装
setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /PID=<validpid> /FEAT
URES=SQL,AS,RS,IS,Tools
/INSTANCENAME=MSSQLSERVER /SQLSVCACCOUNT="MyDomain\MyAccount"
/SQLSVCPASSWORD="************" /SQLSYSADMINACCOUNTS="MyDomain\MyAccount "
/AGTSVCACCOUNT="MyDomain\MyAccount" /AGTSVCPASSWORD="************"
/ASSVCACCOUNT="MyDomain\MyAccount" /ASSVCPASSWORD="************"
/RSSVCACCOUNT="MyDomain\MyAccount" /RSSVCPASSWORD="************"
/ISSVCAccount="MyDomain\MyAccount" /ISSVCPASSWORD="************"
/ASSYSADMINACCOUNTS="MyDomain\MyAccount"
- 方法2,指定配置文件安装
I:\>Setup.exe /ConfigurationFile="d:\ConfigurationFile.ini"
Microsoft (R) SQL Server 2012 11.00.2100.60
版权全部 (c) Microsoft Corporation。保留全部权利。
用另外一种方法安装。
下面是我的配置文件,为sql server 2012 加入名为I01的实例。;是凝视,像
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
注意
;UIMODE="False"
注意
二选一,不然报错
; 安装程序将不会显示不论什么用户界面。 QUIET="False" ; 安装程序将仅仅显示运行进度,而不须要不论什么用户交互。 QUIETSIMPLE="True"<
注意; 默认值为 Windows 身份验证。使用 "SQL" 表示採用混合模式身份验证。 SECURITYMODE="SQL"
SAPWD="1qaz2WSX"
下面是完整文件,
;SQL Server 2012 Configuration File
[OPTIONS]
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
; 指定安装程序的工作流。如 INSTALL、UNINSTALL 或 UPGRADE。 这是必需的參数。 ACTION="Install" ; 尚没有定义命令行參数 ENU 的具体帮助。 ENU="False" ; 用于控制用户界面行为的參数。 有效值对于完整 UI 为 Normal,对于简化的 UI 为 AutoAdvance,为 EnableUIOnServerCore 则跳过 Server Core 安装程序 GUI 块。 ;UIMODE="False" ; 安装程序将不会显示不论什么用户界面。 QUIET="False" ; 安装程序将仅仅显示运行进度。而不须要不论什么用户交互。 QUIETSIMPLE="True" ; 指定 SQL Server 安装程序是否应发现和包含产品更新。 有效值是 True 和 False 或者 1 和 0。默认情况下,SQL Server 安装程序将包含找到的更新。 UpdateEnabled="False" ; 指定要安装、卸载或升级的功能。顶级功能列表包含 SQL、AS、RS、IS、MDS 和工具。SQL 功能将安装数据库引擎、复制、全文和 Data Quality Services (DQS)server。 工具功能将安装管理工具、联机丛书组件、SQL Server Data Tools 和其它共享组件。 FEATURES=SQLENGINE,REPLICATION,FULLTEXT,DQ ; 指定 SQL Server 安装程序将获取产品更新的位置。有效值为 "MU" (以便搜索产品更新)、有效文件夹路径以及 .\MyUpdates 或 UNC 共享文件夹之类的相对路径。默认情况下,SQL Server 安装程序将通过 Window Server Update Services 搜索 Microsoft Update 或 Windows Update 服务。 UpdateSource="MU" ; 显示命令行參数使用方法 HELP="False" ; 指定应将具体的安装程序日志传送到控制台。 INDICATEPROGRESS="False" ; 指定安装程序应该安装到 WOW64 中。IA64 或 32 位系统不支持此命令行參数。 X86="False" ; 指定共享组件的安装根文件夹。在已安装共享组件后。此文件夹保持不变。 INSTALLSHAREDDIR="C:\Program Files\Microsoft SQL Server" ; 指定 WOW64 共享组件的安装根文件夹。在已安装 WOW64 共享组件后,此文件夹保持不变。 INSTALLSHAREDWOWDIR="C:\Program Files (x86)\Microsoft SQL Server" ; 指定默认实例或命名实例。MSSQLSERVER 是非 Express 版本号的默认实例,SQLExpress 则是 Express 版本号的默认实例。 在安装 SQL Server 数据库引擎(SQL)、Analysis Services (AS)或 Reporting Services (RS)时,此參数是必需的。 INSTANCENAME="I01" ; 为您已指定的 SQL Server 功能指定实例 ID。SQL Server 文件夹结构、注冊表结构和服务名称将包含 SQL Server 实例的实例 ID。 INSTANCEID="I01" ; 指定能够收集 SQL Server 功能使用情况数据。并将数据发送到 Microsoft。 指定 1 或 True 将启用此功能。指定 0 或 False 将禁用此功能。 SQMREPORTING="False" ; 指定是否可将错误报告给 Microsoft 以便改进以后的 SQL Server 版本号。指定 1 或 True 将启用此功能。指定 0 或 False 将禁用此功能。 ERRORREPORTING="False" ; 指定安装文件夹。 INSTANCEDIR="e:\Program Files\Microsoft SQL Server" ; 代理帐户名 AGTSVCACCOUNT="NT Service\SQLAgent$I01" ; 安装后自己主动启动服务。 AGTSVCSTARTUPTYPE="Manual" ; CM 程序块 TCP 通信port COMMFABRICPORT="0" ; 矩阵怎样使用专用网络 COMMFABRICNETWORKLEVEL="0" ; 怎样保护程序块间的通信 COMMFABRICENCRYPTION="0" ; CM 程序块使用的 TCP port MATRIXCMBRICKCOMMPORT="0" ; SQL Server 服务的启动类型。 SQLSVCSTARTUPTYPE="Manual" ; 启用 FILESTREAM 功能的级别(0、1、2 或 3)。 FILESTREAMLEVEL="0" ; 设置为 "1" 可为 SQL Server Express 启用 RANU。 ENABLERANU="False" ; 指定要用于数据库引擎的 Windows 排序规则或 SQL 排序规则。 SQLCOLLATION="Chinese_PRC_CI_AS" ; SQL Server 服务的帐户: 域\用户或系统帐户。 SQLSVCACCOUNT="NT Service\MSSQL$I01" ; 要设置为 SQL Server 系统管理员的 Windows 帐户。 SQLSYSADMINACCOUNTS="ADMINISTRATOR" ; 默认值为 Windows 身份验证。使用 "SQL" 表示採用混合模式身份验证。 SECURITYMODE="SQL"
SAPWD="1qaz2WSX" ; 将当前用户设置为 SQL Server 2012 Express 的数据库引擎系统管理员。 ADDCURRENTUSERASSQLADMIN="False" ; 指定 0 禁用 TCP/IP 协议,指定 1 则启用该协议。 TCPENABLED="1" ; 指定 0 禁用 Named Pipes 协议,指定 1 则启用该协议。 NPENABLED="0" ; Browser 服务的启动类型。 BROWSERSVCSTARTUPTYPE="Manual" ; 加入输入參数 FTSVCACCOUNT 的描写叙述 FTSVCACCOUNT="NT Service\MSSQLFDLauncher$I01"
1 挂载镜像
2进入命令行:
3执行
I:\>Setup.exe /ConfigurationFile="d:\ConfigurationFile.ini"
4安装完毕
怎样快捷编写配置文件,通过改动ui安装过程中的向导,生民第一个配置文件。配置保存在下图的路径中,打开并按例如以下改动它
加入
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
不显示ui
;UIMODE="False"
注意
二选一。不然报错
; 安装程序将不会显示不论什么用户界面。 QUIET="False" ; 安装程序将仅仅显示运行进度。而不须要不论什么用户交互。 QUIETSIMPLE="True"
注意; 默认值为 Windows 身份验证。使用 "SQL" 表示採用混合模式身份验证。 SECURITYMODE="SQL"
SAPWD="1qaz2WSX"
watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvd2FuZ3pocHdhbmc=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">
HELP
Microsoft Windows [版本号 6.1.7601]
版权全部 (c) 2009 Microsoft Corporation。保留全部权利。 C:\Users\Patrick>I: I:\>setup.exe /help
Microsoft (R) SQL Server 2012 11.00.2100.60
版权全部 (c) Microsoft Corporation。 保留全部权利。 使用方法:
setup.exe /[选项]={value} /[选项]={value} ... 选项:
ACTION 指定安装程序的工作流。如 INSTALL、UNINSTALL 或 UPG
RADE。 这是必需的參数。
ADDCURRENTUSERASSQLADMIN Provision current user as a Database Engine
system administrator for SQL Server 2012 Express.
AGTDOMAINGROUP Either domain user name or system account
AGTSVCACCOUNT Either domain user name or system account
AGTSVCPASSWORD Password for domain user name. Not required for
system account
AGTSVCSTARTUPTYPE Startup type for the SQL Server Agent service.
Supported values are Manual, Automatic or
Disabled.
ALLINSTANCES 指定全部实例都将包含在安装操作中。仅仅有在应用修补程
序时才支持此參数。
ALLOWUPGRADEFORSSRSSHAREPOIN
RSInputSettings_AllowUpgradeForSSRSSharePointMode_
Description
ASBACKUPDIR The location for the Analysis Services backup
files.
ASCOLLATION The collation used by Analysis Services.
ASCONFIGDIR The location for the Analysis Services
configuration files.
ASDATADIR The location for the Analysis Services data
files.
ASLOGDIR The location for the Analysis Services log files.
ASPROVIDERMSOLAP Specifies if the MSOLAP provider can run in
process.
ASSERVERMODE Specifies the server mode of the Analysis
Services instance. Valid values are
MULTIDIMENSIONAL and TABULAR. The default value
is MULTIDIMENSIONAL.
ASSVCACCOUNT The account used by the Analysis Services
service.
ASSVCPASSWORD The password for the Analysis Services service
account.
ASSVCSTARTUPTYPE Controls the service startup type setting for the
service.
ASSYSADMINACCOUNTS Specifies the list of administrator accounts to
provision.
ASTEMPDIR The location for the Analysis Services temporary
files.
BROWSERSVCSTARTUPTYPE Startup type for Browser Service.
CLTCTLRNAME The computer name that the client communicates
with for the Distributed Replay Controller
service.
CLTRESULTDIR The result directory for the Distributed Replay
Client service.
CLTSTARTUPTYPE The startup type for the Distributed Replay
Client service.
CLTSVCACCOUNT The account used by the Distributed Replay Client
service.
CLTSVCPASSWORD The password for the Distributed Replay Client
service account.
CLTWORKINGDIR The working directory for the Distributed Replay
Client service.
CLUSTERPASSIVE 指定 SQL Server 安装程序不应管理 SQL Server 服务。 此选项应该仅在非
Microsoft 群集环境中使用。 COMMFABRICENCRYPTION MATRIXCOMMMESSAGEPROTECTION {0,1}
COMMFABRICNETWORKLEVEL MATRIXCOMMNETWORKISOLATION {0,1}
COMMFABRICPORT MATRIXCOMMPORT <port>
CONFIGURATIONFILE 指定将用于安装程序的配置文件。
CONFIRMIPDEPENDENCYCHANGE Indicates that the change in IP address resource
dependency type for the SQL Server multi-subnet
failover cluster is accepted.
CTLRSTARTUPTYPE The startup type for the Distributed Replay
Controller service.
CTLRSVCACCOUNT The account used by the Distributed Replay
Controller service.
CTLRSVCPASSWORD The password for the Distributed Replay
Controller service account.
CTLRUSERS The Windows account(s) used to grant permission
to the Distributed Replay Controller service.
ENABLERANU Set to "1" to enable RANU for SQL Server Express.
ENU 尚没有定义命令行參数 ENU 的具体帮助。 ERRORREPORTING 指定是否可将错误报告给 Microsoft 以便改进以后的 SQ
L Server 版本号。指定 1
或 True 将启用此功能。指定 0 或 False 将禁用此功能
。 FAILOVERCLUSTERDISKS Specifies a cluster shared disk to associate with
the SQL Server failover cluster instance.
FAILOVERCLUSTERGROUP Specifies the name of the cluster group for the
SQL Server failover cluster instance.
FAILOVERCLUSTERIPADDRESSES Specifies an encoded IP address. The encodings
are semicolon-delimited (;), and follow the
format <IP Type>;<address>;<network name>;<subnet
mask>. Supported IP types include DHCP, IPV4, and
IPV6.
FAILOVERCLUSTERNETWORKNAME Specifies the name of the SQ LServer failover
cluster instance. This name is the network name
that is used to connect to SQL Server services.
FAILOVERCLUSTERROLLOWNERSHIP Specifies whether the upgraded nodes should take
ownership of the failover instance group or not.
Use 0 to retain ownership in the legacy nodes, 1
to make the upgraded nodes take ownership, or 2
to let SQL Server Setup decide when to move
ownership.
FEATURES 指定要安装、卸载或升级的功能。顶级功能列表包含 SQL
、AS、RS、IS、MDS 和工具。SQL
功能将安装数据库引擎、复制、全文和 Data Quality Se
rvices
(DQS)服务器。工具功能将安装管理工具、联机丛书组件
、SQL Server Data Tools
和其它共享组件。
FILESTREAMLEVEL Level to enable FILESTREAM feature at (0, 1, 2 or
3).
FILESTREAMSHARENAME Name of Windows share to be created for
FILESTREAM File I/O.
FTSVCACCOUNT User account for Full-text Filter Daemon Host.
FTSVCPASSWORD User password for Full-text Filter Daemon Host
account.
FTUPGRADEOPTION Full-text catalog upgrade option.
HELP 显示命令行參数使用方法
IACCEPTSQLSERVERLICENSETERMS 通过指定此參数并接受 SQL Server 许可条款,您确认已
阅读并理解使用条款的内容。
INDICATEPROGRESS 指定应将具体的安装程序日志传送到控制台。 INSTALLSHAREDDIR 指定共享组件的安装根文件夹。在已安装共享组件后,此目
录保持不变。
INSTALLSHAREDWOWDIR 指定 WOW64 共享组件的安装根文件夹。 在已安装 WOW64 共
享组件后,此文件夹保持不变。
INSTALLSQLDATADIR The Database Engine root data directory.
INSTANCEDIR 指定实例根文件夹。
INSTANCEID 为您已指定的 SQL Server 功能指定实例 ID。SQL Serve
r
文件夹结构、注冊表结构和服务名称将包含 SQL Server 实
例的实例 ID。
INSTANCENAME 指定默认实例或命名实例。MSSQLSERVER 是非 Express
版本号的默认实例,SQLExpress 则是 Express 版本号的默认
实例。 在安装 SQL
Server 数据库引擎(SQL)、Analysis Services (AS)或
Reporting Services (RS)时,此參数是必需的。
ISSVCACCOUNT Either domain user name or system account.
ISSVCPASSWORD Password for domain user.
ISSVCSTARTUPTYPE Automatic, Manual or Disabled.
MATRIXCMBRICKCOMMPORT MATRIXCMBRICKCOMMPORT portNumber
MATRIXCMSERVERNAME MATRIXCMSERVERNAME hostName\instanceName
MATRIXNAME MATRIXNAME=<name>
NPENABLED Specify 0 to disable or 1 to enable the Named
Pipes protocol.
PID 指定 SQL Server 产品密钥以配置您要使用哪个版本号。
QUIET 安装程序将不会显示不论什么用户界面。
QUIETSIMPLE 安装程序将仅仅显示运行进度,而不须要不论什么用户交互。 ROLE 尚没有定义命令行參数 ROLE 的具体帮助。
RSCATALOGSERVERINSTANCENAME The SQL Server server for the report server
catalog database.
RSINSTALLMODE RSInputSettings_RSInstallMode_Description
RSSHPINSTALLMODE RSInputSettings_RSInstallMode_Description
RSSVCACCOUNT Specify the service account of the report server.
This value is required. If you omit this value,
Setup will use the default built-in account for
the current operating system (either
NetworkService or LocalSystem). If you specify a
domain user account, the domain must be under 254
characters and the user name must be under 20
characters. The account name cannot contain the
following characters:
" / \ [ ] : ; | = , + * ? < >
RSSVCPASSWORD Specify a strong password for the account. A
strong password is at least 8 characters and
includes a combination of upper and lower case
alphanumeric characters and at least one symbol
character. Avoid spelling an actual word or name
that might be listed in a dictionary.
RSSVCSTARTUPTYPE Specifies the startup mode for the Report Server
service. Valid values include Manual, Automatic,
and Disabled. The default value for StartupType
is Manual, where the server is started when a
request is received.
RSUPGRADEDATABASEACCOUNT RSInputSettings_RSInstallMode_Description
RSUPGRADEPASSWORD RSInputSettings_RSInstallMode_Description
RULES 指定要执行的规则 ID 或规则组 ID 的列表。 SAPWD Password for SQL Server sa account.
SECURITYMODE The default is Windows Authentication. Use "SQL"
for Mixed Mode Authentication.
SQLBACKUPDIR Default directory for the Database Engine backup
files.
SQLCOLLATION Specifies a Windows collation or an SQL collation
to use for the Database Engine.
SQLSVCACCOUNT Account for SQL Server service: Domain\User or
system account.
SQLSVCPASSWORD A SQL Server service password is required only
for a domain account.
SQLSVCSTARTUPTYPE Startup type for the SQL Server service.
SQLSYSADMINACCOUNTS Windows account(s) to provision as SQL Server
system administrators.
SQLTEMPDBDIR Directory for Database Engine TempDB files.
SQLTEMPDBLOGDIR Directory for the Database Engine TempDB log
files.
SQLUSERDBDIR Default directory for the Database Engine user
databases.
SQLUSERDBLOGDIR Default directory for the Database Engine user
database logs.
SQMREPORTING 指定能够收集 SQL Server 功能使用情况数据,并将数据
发送到 Microsoft。 指定 1
或 True 将启用此功能,指定 0 或 False 将禁用此功能
。 TCPENABLED Specify 0 to disable or 1 to enable the TCP/IP
protocol.
UIMODE 用于控制用户界面行为的參数。 有效值对于完整 UI 为 N
ormal,对于简化的 UI 为
AutoAdvance,为 EnableUIOnServerCore 则跳过 Server Core 安装程序 GUI 块。
UpdateEnabled 指定 SQL Server 安装程序是否应发现和包含产品更新。
有效值是 True 和 False
或者 1 和 0。默认情况下,SQL Server 安装程序将包含
找到的更新。
UpdateSource 指定 SQL Server 安装程序将获取产品更新的位置。有效
值为 "MU"
(以便搜索产品更新)、有效文件夹路径以及 .\MyUpdates
或 UNC
共享文件夹之类的相对路径。 默认情况下,SQL Server 安
装程序将通过 Window
Server Update Services 搜索 Microsoft Update 或
Windows Update 服务。
X86 指定安装程序应该安装到 WOW64 中。IA64 或 32 位系统
不支持此命令行參数。 完整的无人參与安装演示样例,显示全部必需的參数: setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /PID=<validpid> /FEAT
URES=SQL,AS,RS,IS,Tools
/INSTANCENAME=MSSQLSERVER /SQLSVCACCOUNT="MyDomain\MyAccount"
/SQLSVCPASSWORD="************" /SQLSYSADMINACCOUNTS="MyDomain\MyAccount "
/AGTSVCACCOUNT="MyDomain\MyAccount" /AGTSVCPASSWORD="************"
/ASSVCACCOUNT="MyDomain\MyAccount" /ASSVCPASSWORD="************"
/RSSVCACCOUNT="MyDomain\MyAccount" /RSSVCPASSWORD="************"
/ISSVCAccount="MyDomain\MyAccount" /ISSVCPASSWORD="************"
/ASSYSADMINACCOUNTS="MyDomain\MyAccount" 按随意键退出... ^C
I:\>
PowerShell 批量启动关闭实例:
start test instances .bat
@powershell -command "Get-Service |Where-Object {$_.Name -like 'MSSQL$I*'}|Start-Service -ErrorAction SilentlyContinue"
@pause
stop test instances .bat
@powershell -Command " Get-Service |Where-Object {$_.Name -like 'MSSQL$I*'}|Stop-Service -ErrorAction SilentlyContinue" @pause
效果图
SQL Server 2012 无人值守安装(加入新实例)的更多相关文章
- SQL Server 2012 无人值守安装
方法1,通过指定条个參数安装 setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /PID=<validpid> /F ...
- 基于iSCSI的SQL Server 2012群集测试(三)--SQL Server 2012群集安装总结
5.SQL Server 2012群集安装总结 5.1 群集与非群集的安装区别总结 SQL Server虚拟名称: 非群集环境下,本地服务器的名称就是SQL Server服务器名称:但在群集环境下,由 ...
- Microsoft SQL Server 2012 数据库安装图解教程
本文部分引用以下文章: SQL Server 2012 安装图解教程(附sql2012下载地址)_MsSql_脚本之家 http://www.jb51.net/article/36049.htm SQ ...
- (转)SQL Server 2012 手动安装帮助文档+排错
逆天SQL Server 2012装的不要不要的,最后发现...竟然没帮助文档...汗啊!原来它跟vs一样要自己装帮助文档...好吧,官网一下载,妹的...报错...然后就让我们还原这个安装过程以及逆 ...
- Step by step SQL Server 2012的安装
原创地址:http://www.cnblogs.com/jfzhu/p/4006744.html 转载请注明出处 计算机要先设置固定ip,加入域,然后安装账号需要有本地管理员的权限. 演示环境的操作系 ...
- SQL Server 2012 手动安装帮助文档+排错
逆天SQL Server 2012装的不要不要的,最后发现...竟然没帮助文档...汗啊!原来它跟vs一样要自己装帮助文档...好吧,官网一下载,妹的...报错...然后就让我们还原这个安装过程以及逆 ...
- 关于SQL Server 2012 手动安装帮助文档
大家以为安装帮助文档很简单,但是其实不然,这其中还有那么一点点道道.今天我就来给大家演示一下! 首先到microsoft官网上下载Microsoft SQL Server 2012 产品文档,然后将. ...
- SQL SERVER 2012文件表(FILETABLE)新体验之一
SQLSERVER 2012 文件表功能很COOL,让我们体验一下吧. 1,创建数据库 [sql] DREATE DATABASE FileTableTest ON PRIMARY ( NA ...
- Windows SQL Server 2012 R2 安装Intel I217-V/I218-V网卡驱动(转)
1.下载Intel官方驱动: https://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=23071&lang=zh ...
随机推荐
- 【UOJ Round #1】
枚举/DP+排列组合 缩进优化 QAQ我当时一直在想:$min\{ \sum_{i=1}^n (\lfloor\frac{a[i]}{x}\rfloor + a[i] \ mod\ x) \}$ 然而 ...
- SGU536 Berland Chess
棋盘上白子只有一个国王 黑子给出 各子遵从国际象棋的走法 黑子不动,白子不能走进黑子的攻击范围以内 问白字能不能吃掉所有的黑子 直接搜索就好了,各子状态用二进制表示 不过每个子被吃之后攻击范围会改变 ...
- kendoui仪表盘和柱状图 示例
一说到kendeodui我相信大家一定不陌生,这套js在画图方面效果也不错. 现在来看一看 仪表盘和柱状图的效果吧: html和js代码如下: <!DOCTYPE html> <ht ...
- Longest Palindromic Substring leetcode java
题目: Given a string S, find the longest palindromic substring in S. You may assume that the maximum l ...
- win7系统不能用telnet命令的两种解决方法
电脑专业人员对telnet命令都不陌生了,Telnet当成一种通信协议,在日常工作中,经常面对网络问题的人都会用到telnet命令,因为简单有效,可以帮助更快的找出问题.要是在使用过程中碰到win7纯 ...
- Jquery怎么获取select选中项 自定义属性的值
Jquery如何获取select选中项 自定义属性的值?HTML code <select id="ddl" onchange="ddl_change(this)& ...
- Linux服务器安装zabbix监控平台
zabbix是基于web界面的开源分布式监控平台,可以监控各种服务器的配置参数,支持自定义配置和自定义告警,并且可以实现邮件.短信等方式的告警,zabbix基本组件如下: zabbix_server: ...
- Spark:求出分组内的TopN
制作测试数据源: c1 85 c2 77 c3 88 c1 22 c1 66 c3 95 c3 54 c2 91 c2 66 c1 54 c1 65 c2 41 c4 65 spark scala实现 ...
- Linux杀毒软件ClamAV初次体验
1:官网 http://www.clamav.net 2:Ubuntu下安装ClamAV sudo apt-get update--更新系统 sudo apt-get install clamav-- ...
- 不可不知的Python模块: collections
原文:http://www.zlovezl.cn/articles/collections-in-python/ Python作为一个“内置电池”的编程语言,标准库里面拥有非常多好用的模块.比如今天想 ...