2017年1月30日

摘要: XML的语法 文档声明: 写法 <?xml version="1.0" ?> 文档声明必须出现在xml文件的第一行和第一列的位置 属性: version="1.0" XML的版本 encoding="UTF-8" 编码集 standalone="yes或者no" 代码xml的文件是否是独立的(如果不 阅读全文

posted @ 2017-01-30 23:50 NooBkey 阅读(130) 评论(0) 推荐(0) 编辑


2016年8月22日

摘要: ipcs -s | awk '/nrpe/ {print "ipcrm -s ",$2} ' | sh /etc/init.d/dataeng stop /etc/init.d/dsm_sa_ipmi stop /etc/init.d/dsm_sa_ipmi start /etc/init.d/da 阅读全文

posted @ 2016-08-22 08:48 NooBkey 阅读(188) 评论(0) 推荐(0) 编辑


2016年8月18日

摘要: (Study_env) ➜ DAL python -c "import cx_Oracle"Traceback (most recent call last): File "<string>", line 1, in <module>ImportError: dlopen(/Code_Depot/S 阅读全文

posted @ 2016-08-18 08:30 NooBkey 阅读(469) 评论(0) 推荐(0) 编辑


2016年8月2日

摘要: 设置NLS_LANG环境变量 import os os.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8' 阅读全文

posted @ 2016-08-02 15:42 NooBkey 阅读(558) 评论(0) 推荐(0) 编辑

摘要: This is enabled via the PAE (Physical Address Extension) extension of the PentiumPro processors. PAE addresses the 4 GB physical memory limitation and 阅读全文

posted @ 2016-08-02 15:30 NooBkey 阅读(136) 评论(0) 推荐(0) 编辑


2016年7月27日

摘要: #!/usr/bin/env python #coding:utf-8 ''' Created on 2015年12月8日 @author: DL @Description: 使用二分法查找mobile文件中区号归属地 ''' import os import sys class SearchAreacode(object): def __init__(self,file... 阅读全文

posted @ 2016-07-27 14:41 NooBkey 阅读(180) 评论(0) 推荐(0) 编辑

摘要: SELECT order_id,product_name,qty FROM ordersINTO OUTFILE '/tmp/orders.csv'FIELDS TERMINATED BY ','ENCLOSED BY '"'LINES TERMINATED BY '\n' 阅读全文

posted @ 2016-07-27 12:48 NooBkey 阅读(116) 评论(0) 推荐(0) 编辑

摘要: <script>function getNameList(){ $.getJSON('/Namelist',function(res){ var content='' $.each(res,function(k,v){ content += '<tr>' content += '<td>'+v[0] 阅读全文

posted @ 2016-07-27 11:27 NooBkey 阅读(123) 评论(0) 推荐(0) 编辑


2016年7月14日

摘要: #vsftpd.conf ###############pam_service_name=vsftpduserlist_enable=YEStcp_wrappers=YESlocal_root=/data/Vh_Rec #指定用户配置文件目录,每个用户一个文件,文件名为用户名user_config_ 阅读全文

posted @ 2016-07-14 11:47 NooBkey 阅读(150) 评论(0) 推荐(0) 编辑


2016年7月13日

摘要: libcurl 和libcurl-devel都已经安装 且大于7.13.1 但还是报错,这时需要在configure 指定curl路径即可 ./configure --prefix=/usr/local/zabbix --enable-server --enable-proxy --enable-a 阅读全文

posted @ 2016-07-13 15:31 NooBkey 阅读(4433) 评论(0) 推荐(0) 编辑


Copyright © 2024 NooBkey
Powered by .NET 8.0 on Kubernetes