yangzailu

导航

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 71 下一页

2019年6月18日 #

linux查看redis安装目录

摘要: 1.在redis下查看安装目录 如果命令 which 和whereis 都找不到安装目录,可使用以下办法 得到了进程号 xxxx 然后 ls -l /proc/xxxx/cwd 阅读全文

posted @ 2019-06-18 14:13 飞离地平线 阅读(72507) 评论(1) 推荐(5) 编辑

2019年6月17日 #

svn 没有killall命令的解决方法 -bash: killall: command not found

摘要: debian、ubuntu系统下: apt-get install psmisc centos 下: yum install psmisc debian、ubuntu系统下: apt-get install psmisc centos 下: yum install psmisc 阅读全文

posted @ 2019-06-17 11:07 飞离地平线 阅读(781) 评论(0) 推荐(0) 编辑

2019年6月12日 #

mysql where 1

摘要: where后跟各种查询条件,当条件为真时即可查询出记录。在这里where 1,1为真,也就是where后的条件为真,查询表中所有内容。 阅读全文

posted @ 2019-06-12 11:13 飞离地平线 阅读(672) 评论(0) 推荐(0) 编辑

PHP开启慢日志查询

摘要: 1.找到php-fpm.conf文件 2.去掉request_slowlog_timeout前面的分号,并设置时间。如:request_slowlog_timeout=5表示超过5秒的 慢日志文件位置默认在php的安装目录下的log文件夹中,可以通过修改slowlog = log/$pool.log 阅读全文

posted @ 2019-06-12 10:33 飞离地平线 阅读(5078) 评论(0) 推荐(0) 编辑

2019年5月29日 #

linux系统中如何查看最后一封mail

摘要: 1. mail命令查看邮件列表 2.file 命令查看一共多少封邮件 3.直接键入278 查看最后一封邮件内容 4. 输入q 从邮件阅读模式退出 阅读全文

posted @ 2019-05-29 11:25 飞离地平线 阅读(3471) 评论(0) 推荐(0) 编辑

2019年5月28日 #

linux系统查看系统内存和硬盘大小

摘要: 1. 查看系统运行内存 free -m free -g(Gb查看) cat /proc/meminfo 2. 查看硬盘大小 df -hl 阅读全文

posted @ 2019-05-28 17:49 飞离地平线 阅读(14323) 评论(0) 推荐(0) 编辑

用SQL命令查看Mysql数据库大小

摘要: 要想知道每个数据库的大小的话,步骤如下: 1、进入information_schema 数据库(存放了其他的数据库的信息) use information_schema; 2、查询所有数据的大小: select concat(round(sum(data_length/1024/1024),2),' 阅读全文

posted @ 2019-05-28 17:47 飞离地平线 阅读(1233) 评论(0) 推荐(0) 编辑

2019年5月21日 #

重启php-fpm

摘要: 1. 查找php-fpm位置: ps aux|grep php-fpm 2.重启命令 加了服务 root用户 # service php-fpm start # service php-fpm stop # service php-fpm restart # service php-fpm relo 阅读全文

posted @ 2019-05-21 15:46 飞离地平线 阅读(2447) 评论(0) 推荐(0) 编辑

查找正在运行的nginx目录

摘要: linux系统因为备份、不同版本等问题,导致ECS Linux上存放有多个Nginx目录,可以通过如下方法定位当前正在运行的Nginx的配置文件: 1. 查看nginx的PID,以常用的80端口为例: 2. 通过相应的进程ID(比如:4562)查询当前运行的nginx路径: 3. 获取到nginx的 阅读全文

posted @ 2019-05-21 10:19 飞离地平线 阅读(6656) 评论(0) 推荐(0) 编辑

2019年5月15日 #

jquery获取元素的display属性是不是none?

摘要: 1.代码: 阅读全文

posted @ 2019-05-15 09:56 飞离地平线 阅读(14544) 评论(2) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 71 下一页