自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(28)
  • 收藏
  • 关注

转载 Linux Docker Introduction

Setup on Ubuntu.前提条件:Docker需要两个重要的安装要求:它仅适用于64位Linux安装,注意:是64位的Linux系统。它需要Linux内核版本3.10或更高版本。要查看当前的内核版本,请打开终端并键入uname -r命令以查看内核版本:查看内核版本命令如下:yiibai@ubuntu:~$ uname -r4.4.0-3...

2019-06-21 16:19:00 179

转载 ASP.NET MVC 访问静态文件

When use asp.net MVC, we can add a special route to access the image files. the code like below:1. in RouteConfig.cs file, add the code marked in yellow.using System;using System.Collection...

2019-04-23 09:49:00 1218

转载 ASP.NET MVC WebAPI Put和Delete请求出现405(Method not allowed)错误

解决办法:在站点根目录下的web.config设置如下(主要参考添加项): <system.webServer> <modules> <remove name="FormsAuthentication" /> <remove name="ApplicationInsightsWebTracking" /> ...

2019-04-18 14:46:00 765

转载 Matplotlib.pyplot 把画图保存为图片

在plt.show()之前执行plt.savefig()函数即可。简单例子:import matplotlib.pyplot as pltx=[1,2,3,4,5]y=[10,5,15,10,20]plt.plot(x,y,'ro-',color='blue')plt.savefig('testblueline.jpg')plt.show()转载于:...

2019-04-08 10:35:00 20452

转载 调用list(itertools.combinations(keys,3))出现MemoryError的解决办法

在python3.6中,如下例子:keys = list(newKeywords.keys())resultkeys = list(itertools.combinations(keys,3))当上面中的Keys太长时会发生MemoryError错误,解决办法:keys = list(newKeywords.keys())resultkeys = itertools....

2019-02-28 17:31:00 836

转载 Apache 配置多个端口多站点(Linux)

 for apache2 configuration:by default, apache is configured 80 port for the default web site.follow is a step for configing the second website with 8000 port:1 in folder /etc/apache2/site...

2019-01-09 10:45:00 440

转载 Django project troubleshootings

1. 当django project文件夹放到cgi-bin目录下面时会出现下面的错误:[Wed Jan 09 01:52:52.611690 2019] [core:notice] [pid 15229:tid 140466120317888] AH00094: Command line: '/usr/sbin/apache2'[Wed Jan 09 01:52:58.777013...

2019-01-09 10:25:00 103

转载 Django 的命令及简单例子

第一步:下载mysql驱动cmd进入创建好的django项目目录:然后使用下面的命令创建一个项目testdj。sudo /usr/lib/python3/dist-packages/django/bin/django-admin.py startproject testdj然后创建一个应用testapp:sudo /usr/lib/python3/dist-packa...

2019-01-08 10:53:00 120

转载 mysql 插入中文字段报错 "Incorrect string value: '\\xE6\\xB5\\x8B\\xE8\\xAF\\x95...' for column 'title' at ro...

1. 查看一个 database 或一个 table 的编码show create database mytestdb;show create table testapp_article;mysql> show create table testapp_article;+-----------------+------------------------------------...

2019-01-07 17:36:00 3458

转载 Django troubleshootings

当在云服务器上部署Django服务时:1. 首先要在云上的主机上添加相应的端口访问权限。2. 在project下面的urls.py里面设置如下:ALLOWED_HOSTS = ['www.abyee.com'] 也可以写成ALLOWED_HOSTS = ['*'] ...

2019-01-07 16:38:00 96

转载 修改vim的颜色主题 及显示行号

1.打开vim窗口,输入命令:color 或者colorscheme后回车查看当前颜色主题。2. 输入:colorscheme <主题> 即可设置当前vim的颜色主题。sample: :colorscheme elflord3. 输入命令:echo $VIMRUNTIME ,然后回车查看运行目录(环境变量是大小写敏感的,注意大小写)4. 查看第...

2018-12-27 15:13:00 780

转载 MySQL安装指南(转)

MySQL安装指南安装MySQLsudo apt-get install mysql-server这个应该很简单了,而且我觉得大家在安装方面也没什么太大问题,所以也就不多说了,下面我们来讲讲配置。配置MySQL注意,在Ubuntu下MySQL缺省是只允许本地访问的,如果你要其他机器也能够访问的话,那么需要改变/etc/mysql/my.cnf配置文件了!...

2018-12-26 18:09:00 109

转载 Query the tables and index which will caus rebuild index fail

On MSSQL server database, while rebuild index failed, we can use the follow sql statement to see if there are some tables' index setting block the operation.if there are some index of users' ta...

2018-12-17 15:17:00 114

转载 The Guideline of Setting Up Samba Server on linux(Ubuntu)

The Guideline of Setting Up Samba Server on linux(Ubuntu)From terminate command window, install the samba package with follow command:Sudo apt-get install samba2. Edit the samba conf...

2018-12-13 18:34:00 110

转载 远程连接报错“This could be due to CredSSP encryption oracle remediation.”

description:当远程服务器上没有“Encryption Oracle Remediation" setting in local group policy. 尝试远程连接会出现上面的错误。resolution:从客户机打开localgroup policy, 从命令行运行 gpedit.msc, 然后选择 “Computer Configuration”-&g...

2018-10-11 11:57:00 474

转载 Fix Python 3 on Windows error Microsoft Visual C++ 14.0 is required

Fix Python 3 on Windows error Microsoft Visual C++ 14.0 is requiredFix the error for Python 3.6 and 3.7 on Windows:error Microsoft Visual C++ 14.0 is requiredas follows. It requires abo...

2018-09-13 10:20:00 121

转载 在多机器上远程执行JMeter

安装完jmeter之后直接执行%InstallDir%\apache-jmeter-3.2\bin\JMeter.bat可以启动UI界面,可以编辑或者执行TestPlan等,默认情况下,用例是在本机执行,而且执行的线程有限,对应的,对服务器的压力也有限。如果我们想要对目标服务器或服务器组增加足够的压力,就需要足够的线程去完成,相对应的,仅仅是一台机器说能执行的线程不足以承担这样的工作量,...

2018-09-06 15:10:00 127

转载 MSSQL DB Replication Error

Command attempted:if @@trancount > 0 rollback tran(Transaction sequence number: 0x000283BE000071F0002900000000, Command ID: 22)Error messages:The row was not found at the Subscriber...

2018-08-29 17:22:00 162

转载 MSSQL 数据库 buildindex 出错

错误1:Executing the query "ALTER INDEX [IX_liveConfigState_Service_ServiceId_..." failed with the following error: "The index "IX_liveConfigState_Service_ServiceId_GroupRightsVersion" on table "l...

2018-08-29 17:14:00 99

转载 Using keytool to import keystore

open command line and locate to the location of keytool.exe.import cert to keystore command:keytool -importkeystore -srckeystore %certfileName% -srcstoretype PKCS12 -srcstorepass %CertFilePa...

2018-05-10 14:05:00 118

转载 JMeter 生成CSV文件中文变乱码的问题

在通过BeanShell 生成CSV文件时,写入的中文字符默认情况会变成乱码。//默认情况生成的文件是asii编码。fileName = “c:\test.csv";fos = new FileOutputStream(fileName, false); ps = new PrintStream(fos);// Open File(s) fileName = vars....

2018-05-10 13:52:00 1318

转载 JMeter 生成精度度为分钟的时间戳文件名

import java.util.Calendar;import java.util.Date;import java.util.TimeZone;import java.text.SimpleDateFormat;props.put("fileNameSign","");String fmt = "yyyyMMddHHmm";SimpleDateFormat f...

2018-05-10 10:59:00 268

转载 JMeter中关于动态切换不同CSV文件解决方案

最近写case,需要当前播放节目的数据作为输入数据,所以每个时刻所用的数据只能是当前时刻附件的数据,尝试用CSV Data Set Config动态加载不同的文件,没有成功,好像CSV Data Set Config里面的 文件名是在case运行之前就加载了,后期没法改(反正我自己没找到方法)。后来发现__CSVRead()函数可以在运行时读取,但是网上有人说csv文件不能太大。从我目前...

2018-05-10 10:40:00 252

转载 Windows has encountered a critical problem and will restart automatically in one minute. Please save...

Windows has encountered a critical problem and will restart automatically in one minute. Please save your work now'当错误对话框“Windows has encountered a critical problem and will restart automatical...

2014-07-21 17:25:00 2323

转载 windows 7 系统下,用户每次登录都是以临时配置文件的形式存在于users文件夹下...

windows 7 系统下,用户每次登录都是以临时配置文件的形式存在于users文件夹下当用户登录系统后,在users文件夹下创建的是一个临时文件夹,如果当前用户log off,那么当前用户的所有设置和个人文件将会被删除(包括users文件夹下该用户的整个文件夹都会被删除),下次再登录的时候,跟第一次登录的状态一样。什么都没有了。 正常情况下应该是如果一个用户登录一次了,系统就会为该...

2014-07-21 17:08:00 566

转载 取消特定文件的默认打开设置

最近遇到一个不小心把*.asp文件的打开方式设置成默认为以记事本的方式打开了,然后导致一系列问题。查到了很多办法,最后发现指发现这个最简单最好使。还原办法:1 打开注册表HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\删除对应文件的扩展名的节点(如.asp)。 2...

2010-12-02 14:56:00 346

转载 TFS常见的几个命令行工具

最近用到一些对TFS相关的几个命令行工具,感觉还是比较有用,在此介绍给大家,希望对大家有用.1 TfsConfig TfsConfig.exe的默认位置是%Program files%\Microsoft Team Foundation Server 2010\Tools\下面,而且它是在TFS服务器上.在高版本的系统中我们必须用管理员的权限运行该命令(包括下面提到的其他命令...

2010-05-19 22:50:00 130

转载 Lab Management的安装与配置之Team Foundation生成服务(Build Service)

http://blog.csdn.net/lijavasy/archive/2010/05/19/5606178.aspx转载于:https://www.cnblogs.com/lijavasy/archive/2010/05/19/1738813.html

2010-05-19 05:38:00 121

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除