上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

centos7 yum安装高版本php、mysql、Apache

摘要: 1、yum install httpd 2、yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm 3、yum install mysql-community-server -y 4 阅读全文
posted @ 2019-07-12 17:48 狄成 阅读(1281) 评论(0) 推荐(0)

zabbix执行远程命令

摘要: 1、更改agentd配置文件 EnableRemoteCommands=1 #允许执行命令 2、更改sudo配置文件,使zabbix用户sudo不需要输入密码 zabbix ALL=(ALL) NOPASSWD:ALL 3、 阅读全文
posted @ 2019-06-28 20:17 狄成 阅读(638) 评论(0) 推荐(0)

zabbix监控主从同步

摘要: 1、编写脚本检查主从同步状态 2、编辑zabbix_agentd.conf,增加行 UserParameter=mysql.replication,sh /data/sh/mysql_db_check.sh 3、添加监控项 4、添加触发器 5、关闭主从同步测试 阅读全文
posted @ 2019-06-28 17:45 狄成 阅读(704) 评论(0) 推荐(0)

s3fs+minio模拟挂载S3服务器到本地服务器

摘要: 1、minio: https://github.com/minio/minio,按照文档选择系统安装 2、安装s3fs客户端:https://github.com/s3fs-fuse/s3fs-fuse 3、启动mino,获取AccessKey和SecretKey并创建桶名 4、在客户端上echo 阅读全文
posted @ 2019-06-28 16:31 狄成 阅读(2940) 评论(0) 推荐(1)

PHP编译报错

摘要: //usr/lib64/liblber-2.4.so.2: error adding symbols: DSO missing from command line 阅读全文
posted @ 2019-03-28 12:47 狄成 阅读(613) 评论(0) 推荐(0)

ldd可执行程序时返回not a dynamic executable

摘要: 原因:32位程序放在64位机器上或64位程序放在32位程序上了 解决方法:如果是32位程序放在64位系统上则安装yum -y install libstdc++.i686,64位则是yum -y install libstdc++.x86_64 阅读全文
posted @ 2019-03-05 16:26 狄成 阅读(5009) 评论(0) 推荐(0)

Windows nessus安装

摘要: 1、官网下载nessus,下载速度很慢,要有耐心 2、安装,安装完成后访问https://localhost:8834,最好使用chrome浏览器 3、页面注册,更新plugins等 4、如果页面无法更新plugins,则在https://plugins.nessus.org/v2/offline. 阅读全文
posted @ 2019-02-26 16:32 狄成 阅读(1092) 评论(0) 推荐(1)

Django数据库,在原有表中添加新字段

摘要: 1、在你要添加新字段的app的 models.py 文件中添加需要新增的字段(这里新增的是dress字段): from django.db import models # Create your models here.class Test(models.Model): name=models.Ch 阅读全文
posted @ 2019-02-19 11:07 狄成 阅读(5231) 评论(0) 推荐(1)

Django创建项目基本步骤

摘要: 1、新建项目 2、启动服务python manage.py runserver 0.0.0.0:8000(表示服务监听在8000端口,允许所有地址访问)编辑cmdb/settings.py文件,允许访问改为所有 3、创建应用(APP),python manage.py startapp login( 阅读全文
posted @ 2019-01-24 16:19 狄成 阅读(256) 评论(0) 推荐(0)

Django集成Bootstrap美化后台

摘要: 1、pip install bootstrap-admin 2、编辑项目下的settings.py,增加下面行,放在最前面 3、编辑项目下的settings.py,增加下面行 阅读全文
posted @ 2019-01-18 11:00 狄成 阅读(843) 评论(1) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页