生活的美妙在于,不知道一下秒是惊艳还是伤神,时光流转,珍惜现在的拥有的时光
全部博文(276)
发布时间:2017-07-24 13:53:39
默认sudo的过期时间过短,经常要输入密码.htf@linux-rzt3:~> sudo visudoDefaults env_reset,timestamp_timeout=20在后面添加timestamp_timeout参数,数值是分钟.......【阅读全文】
发布时间:2017-07-22 11:39:23
git log 默认使用less 显示结果,有时觉得不是很方便可以使用直接打印到屏幕的方式,使用cat代替......【阅读全文】
发布时间:2017-07-21 15:58:32
Django的密码发信人是'webmaster@localhost', 参见官方文档settings.pyDEFAULT_FROM_EMAIL?Default: 'webmaster@localhost'Default email address to use for various automated correspondence from thesite manager(s). This doesn’t include error messages sent to ADMINS and MANAGERS; for that, see S.........【阅读全文】
发布时间:2017-07-03 20:37:55
zabbix自带了‘DejaVuSans.ttf’字体文件,但无法显示中文,如图:可以在linux系统中安装中文字体[root@localhost etc]# yum install google-noto-sans-cjk-fonts.noarch本以为zabbix是读取系统字体列表,没想到只是读取zabbix站点目录下的字体文件名我的字体位于/usr/local/zabbix3.2.6/web/zabbix/fonts于是只好直.........【阅读全文】
发布时间:2017-06-12 01:24:01
filebeat
kafka
logstash
elasticsearch
日志收集
中文时区问题
自己创建type类index......【阅读全文】
发布时间:2017-04-18 15:23:36
Django项目打包这是目前开发完成的project目录树。我们要打包其中的polls app。(v_python3.6) thinkt@linux-pw37:~/PycharmProjects/mysite> tree.├── db.sqlite3├── mysite│ ├── __init__.py│ ├── __pycache__│ │ ├── __init__.cpython-36.py.........【阅读全文】
发布时间:2017-04-07 14:12:43
首先系统中需要安装vlc或mplayer使用cvlc,不需要界面,另外配置播放后立即退出。-q表示quiet。直接赶写mplayer也可以。......【阅读全文】
发布时间:2017-04-01 18:52:17
Django开发环境搭建thinkt@linux-pw37:~/.virtualenvs/v_python3.6/bin> ./pip install djangothinkt@linux-pw37:~/.virtualenvs/v_python3.6/bin> ./python -m django version1.10.6thinkt@linux-pw37:~/.virtualenvs/v_python3.6/bin> ./django-admin startproject mysitethinkt@linux-pw37:~/PycharmProjects/mysit.........【阅读全文】
发布时间:2017-03-28 16:21:28
In [15]: a = [1,2,3,4,5,5,6,7,7]In [16]: a.index(5)Out[16]: 4In [17]: a.index(6)Out[17]: 6In [18]: b = collect_common.unique_list(a)In [19]: a.index(5)Out[19]: 4In [20]: a.index(6)Out[20]: 5可见list去重后index相应的也进行了变化。......【阅读全文】
发布时间:2017-03-22 11:38:20
# yum search --showduplicates salt...salt-2015.5.10-2.el6.noarch : A parallel remote execution systemsalt-2015.5.10-2.el6.noarch : A parallel remote execution systemsalt-2016.11.3-1.el6.noarch : A parallel remote execution system...# yum downgrade salt降级指定版本后面写查询到的软件包全名。.........【阅读全文】
发布时间:2017-03-21 20:14:57
pytho 2.6 salt state模块pip报AttributeError: 'Requirement' object has no attribute 'project_name'pip install --upgrade pipDEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6回退到0.7版本解决。.........【阅读全文】