黑马王子就是我! 技术认证:系统分析师,网络规划设计师,网络工程师,信息系统监理师,系统集成项目管理师,初级程序员,MCSE,MCDBA,CCNA 目前主攻虚拟化技术,VPN,系统架构,集群和高可用性等。
全部博文(516)
2024年(1)
2023年(11)
2022年(17)
2021年(19)
2020年(28)
2019年(42)
2018年(53)
2017年(41)
2016年(33)
2015年(43)
2014年(25)
2013年(13)
2011年(6)
2010年(28)
2009年(47)
2008年(55)
2007年(26)
2006年(28)
发布时间:2020-08-22 14:08:14
NodeJS官网1.下载node.jsV8.x: #curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -V7.x:#curl --silent --location https://rpm.nodesource.com/setup_7.x | bash -V6.x:#curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -V5.x:#curl --.........【阅读全文】
发布时间:2020-08-22 09:14:45
#!/bin/bash#author junxi by #this script is only for CentOS 7.x#check the OSplatform=`uname -i`if [ $platform != "x86_64" ];then echo "this script is only for 64bit Operating System !"exit 1fiecho "the platform is ok"cat << EOF+---------------------------------------+| .........【阅读全文】
发布时间:2020-08-13 15:32:36
注意密码是字符串形式!127.0.0.1:6379> auth "yourpassword"可以进入......【阅读全文】
发布时间:2020-08-04 16:16:18
今天有个朋友很着急地打电话给我,他用delete语句误删除了SQL Server 2008数据库中两个表中的所有记录,而这个数据库之前没有任何备份。让我帮他解决一下,不然他要赔偿客户很多钱。SQL Server中误删除数据的恢复本来不是件难事,从事务日志恢复即可。但是,这个恢复需要有两个前提条.........【阅读全文】
chinaunix网友2009-05-13 20:32
http://blog.csdn.net/paulluo0739/archive/2008/08/23/2816835.aspx