Linux常用系统参数设置
发布时间:2024-03-30 04:27       
Linux常用系统参数设置
syslog命令
syslog是Linux系统默认的日志守护进程。syslog 接受来自系统的各种功能的信息,每个信息都包括重要级。/etc/syslog.conf 文件通知 syslogd 如何根据设备和信息重要级别来报告信息。可以使用logger命令通过syslogd记录日志。
要向syslog文件/var/log/messages中记录日志信息:
logger this is a test log line
输出:
tail -n 1 messagesJan 5 10:07:03 localhost root: this is a test log line
记录特定的标记(tag)可以使用:
logger -t TAG this is a test log line
输出:
tail -n 1 messagesJan 5 10:37:14 localhost TAG: this is a test log line
systemctl命令
systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。
任务 | 旧指令 | 新指令 |
---|---|---|
使某服务自动启动 | chkconfig --level 3 httpd on | systemctl enable httpd.service |
使某服务不自动启动 | chkconfig --level 3 httpd off | systemctl disable httpd.service |
检查服务状态 | service httpd status | systemctl status httpd.service (服务详细信息) systemctl is-active httpd.service (仅显示是否 Active) |
显示所有已启动的服务 | chkconfig --list | systemctl list-units --type=service |
启动某服务 | service httpd start | systemctl start httpd.service |
停止某服务 | service httpd stop | systemctl stop httpd.service |
重启某服务 | service httpd restart | systemctl restart httpd.service |
实例
1.启动nfs服务
systemctl start nfs-server.service
2.设置开机自启动
systemctl enable nfs-server.service
3.停止开机自启动
systemctl disable nfs-server.service
4.查看服务当前状态
systemctl status nfs-server.service
5.重新启动某服务
systemctl restart nfs-server.service
6.查看所有已启动的服务
systemctl list -units --type=service
开启防火墙22端口
iptables -I INPUT -p tcp --dport 22 -j accept
关闭SElinux:
修改\/etc\/selinux\/config文件中的SELINUX=””为disabled,然后重启。
彻底关闭防火墙:
sudo systemctl status firewalld.servicesudo systemctl stop firewalld.servicesudo systemctl disable firewalld.service
crontab命令
crontab命令被用来提交和管理用户的需要周期性执行的任务,当安装完成操作系统后,默认会安装此服务工具,并且会自动启动crond进程,crond进程每分钟会定期检查是否有要执行的任务,如果有要执行的任务,则自动执行。
语法
crontab(选项)(参数)
选项
-e:编辑该用户的计时器设置;
-l:列出该用户的计时器设置;
-r:删除该用户的计时器设置;
-u<用户名称>:指定要设定计时器的用户名称。
参数
crontab文件:指定包含待执行任务的crontab文件。
mount命令
mount命令用于加载文件系统到指定的加载点。此命令的最常用于挂载cdrom,使我们可以访问cdrom中的数据,因为你将光盘插入cdrom中,Linux并不会自动挂载,必须使用Linux mount命令来手动完成挂载。
语法
mount(选项)(参数)
选项
-V:显示程序版本;
-l:显示已加载的文件系统列表;
-h:显示帮助信息并退出;
-v:冗长模式,输出指令执行的详细信息;
-n:加载没有写入文件“/etc/mtab”中的文件系统;
-r:将文件系统加载为只读模式;
-a:加载文件“/etc/fstab”中描述的所有文件系统。
参数
设备文件名:指定要加载的文件系统对应的设备名
加载点:指定加载点目录。
实例
mount -t auto /dev/cdrom /mnt/cdrom
mount: mount point /mnt/cdrom does not exist /mnt/cdrom目录不存在,需要先创建。
cd /mnt
-bash: cd: /mnt: No such file or directory
mkdir -p /mnt/cdrom 创建/mnt/cdrom目录
ls
bin dev home lib media mnt proc sbin srv tmp
var
boot etc initrd lost+found misc opt root selinux sys usr
mount -t auto /dev/cdrom /mnt/cdrom 挂载cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only 挂载成功
ll /mnt/cdrom 查看cdrom里面内容
total 859
dr-xr-xr-x 4 root root 2048 Sep 4 2005 CentOS
-r--r--r-- 2 root root 8859 Mar 19 2005 centosdocs-man.css
-r--r--r-- 9 root root 18009 Mar 1
Copyright © 2008-2025 华逸云 版权所有
基本
文件
流程
错误
SQL
调试
- 请求信息 : 2025-10-10 01:28:51 HTTP/1.1 GET : https://www.huahost.com/helparticle/37.html
- 运行时间 : 0.454036s [ 吞吐率:2.20req/s ] 内存消耗:19,920.28kb 文件加载:151
- 查询信息 : 141 queries 1 writes
- 缓存信息 : 2 reads,0 writes
- 会话信息 : SESSION_ID=dffcov0hfqnqv2h97iikk2tnb2
- /www/wwwroot/huahost.com/public/index.php ( 1.00 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/base.php ( 1.71 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Loader.php ( 12.81 KB )
- /www/wwwroot/huahost.com/vendor/composer/autoload_static.php ( 10.28 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Error.php ( 4.00 KB )
- /www/wwwroot/huahost.com/vendor/psr/log/Psr/Log/LoggerInterface.php ( 3.16 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Container.php ( 15.53 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/App.php ( 30.58 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Env.php ( 2.85 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Config.php ( 9.71 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/convention.php ( 11.74 KB )
- /www/wwwroot/huahost.com/app/common.php ( 572.81 KB )
- /www/wwwroot/huahost.com/app/zjmf.php ( 39.33 KB )
- /www/wwwroot/huahost.com/app/v10.php ( 24.55 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/helper.php ( 20.48 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/app.php ( 5.35 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/database.php ( 0.90 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/template.php ( 2.02 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/paginate.php ( 0.17 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/tags.php ( 1.35 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Hook.php ( 5.64 KB )
- /www/wwwroot/huahost.com/app/app.php ( 37.56 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Lang.php ( 1.75 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Facade.php ( 3.44 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Lang.php ( 7.60 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/Log.php ( 8.96 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/log/driver/File.php ( 8.97 KB )
- /www/wwwroot/huahost.com/app/common/lang/zh-cn.php ( 17.06 KB )
- /www/wwwroot/huahost.com/app/home/controller/HooksController.php ( 21.42 KB )
- /www/wwwroot/huahost.com/app/config/database.php ( 0.55 KB )
- /www/wwwroot/huahost.com/public/language/english.php ( 48.21 KB )
- /www/wwwroot/huahost.com/public/language/chinese_tw.php ( 43.41 KB )
- /www/wwwroot/huahost.com/public/language/chinese.php ( 43.83 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Db.php ( 7.67 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Cookie.php ( 1.58 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Cookie.php ( 7.35 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/db/Connection.php ( 59.37 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/db/connector/Mysql.php ( 6.22 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/db/builder/Mysql.php ( 5.85 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/db/Builder.php ( 36.76 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/db/Query.php ( 105.01 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/db/Expression.php ( 1.11 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Request.php ( 57.65 KB )
- /www/wwwroot/huahost.com/app/middleware.php ( 1.82 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Middleware.php ( 5.33 KB )
- /www/wwwroot/huahost.com/app/http/middleware/AppCheck.php ( 5.13 KB )
- /www/wwwroot/huahost.com/app/config/actionLog.php ( 1.93 KB )
- /www/wwwroot/huahost.com/app/config/cache.php ( 1.93 KB )
- /www/wwwroot/huahost.com/app/config/country.php ( 7.44 KB )
- /www/wwwroot/huahost.com/app/config/crypt.php ( 1.83 KB )
- /www/wwwroot/huahost.com/app/config/language.php ( 1.87 KB )
- /www/wwwroot/huahost.com/app/config/log.php ( 1.89 KB )
- /www/wwwroot/huahost.com/app/config/public.php ( 3.02 KB )
- /www/wwwroot/huahost.com/app/config/queue.php ( 1.89 KB )
- /www/wwwroot/huahost.com/app/config/state.php ( 2.34 KB )
- /www/wwwroot/huahost.com/app/config/template.php ( 1.76 KB )
- /www/wwwroot/huahost.com/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
- /www/wwwroot/huahost.com/vendor/symfony/polyfill-mbstring/bootstrap.php ( 7.20 KB )
- /www/wwwroot/huahost.com/vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php ( 0.10 KB )
- /www/wwwroot/huahost.com/vendor/guzzlehttp/promises/src/functions_include.php ( 0.16 KB )
- /www/wwwroot/huahost.com/vendor/guzzlehttp/promises/src/functions.php ( 9.89 KB )
- /www/wwwroot/huahost.com/vendor/guzzlehttp/psr7/src/functions_include.php ( 0.15 KB )
- /www/wwwroot/huahost.com/vendor/guzzlehttp/psr7/src/functions.php ( 13.08 KB )
- /www/wwwroot/huahost.com/vendor/topthink/think-captcha/src/helper.php ( 2.71 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Route.php ( 3.83 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Route.php ( 25.85 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/Domain.php ( 7.07 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/RuleGroup.php ( 16.45 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/Rule.php ( 28.92 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/RuleItem.php ( 8.84 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/RuleName.php ( 3.92 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Validate.php ( 4.83 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Validate.php ( 44.11 KB )
- /www/wwwroot/huahost.com/vendor/topthink/think-helper/src/helper.php ( 2.88 KB )
- /www/wwwroot/huahost.com/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
- /www/wwwroot/huahost.com/vendor/guzzlehttp/guzzle/src/functions.php ( 5.56 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/common.php ( 66.57 KB )
- /www/wwwroot/huahost.com/vendor/adbario/php-dot-notation/src/helpers.php ( 0.49 KB )
- /www/wwwroot/huahost.com/vendor/danielstjules/stringy/src/Create.php ( 0.55 KB )
- /www/wwwroot/huahost.com/vendor/mtdowling/jmespath.php/src/JmesPath.php ( 0.36 KB )
- /www/wwwroot/huahost.com/vendor/topthink/think-queue/src/common.php ( 1.19 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Console.php ( 23.46 KB )
- /www/wwwroot/huahost.com/vendor/weiwei/api-doc/src/helper.php ( 2.90 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/lang/zh-cn.php ( 12.58 KB )
- /www/wwwroot/huahost.com/data/route/admin.php ( 110.05 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/exception/ErrorException.php ( 1.68 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Exception.php ( 1.61 KB )
- /www/wwwroot/huahost.com/app/common/exception/Http.php ( 10.60 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/exception/Handle.php ( 9.00 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Config.php ( 1.52 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/Resource.php ( 3.97 KB )
- /www/wwwroot/huahost.com/data/route/api.php ( 8.17 KB )
- /www/wwwroot/huahost.com/data/route/apis.php ( 0.19 KB )
- /www/wwwroot/huahost.com/data/route/home.php ( 67.42 KB )
- /www/wwwroot/huahost.com/data/route/openapi.php ( 20.17 KB )
- /www/wwwroot/huahost.com/data/route/route.php ( 1.76 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/behavior/InitHookBehavior.php ( 4.32 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Debug.php ( 7.57 KB )
- /www/wwwroot/huahost.com/public/plugins/addons/dingtalk_ticket/hooks.php ( 0.53 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Hook.php ( 1.46 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Collection.php ( 13.60 KB )
- /www/wwwroot/huahost.com/public/plugins/addons/zdsju/ZdsjuPlugin.php ( 17.81 KB )
- /www/wwwroot/huahost.com/app/admin/lib/Plugin.php ( 14.87 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/route/dispatch/Module.php ( 5.15 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/route/Dispatch.php ( 9.26 KB )
- /www/wwwroot/huahost.com/app/home/tags.php ( 1.87 KB )
- /www/wwwroot/huahost.com/app/home/common.php ( 6.33 KB )
- /www/wwwroot/huahost.com/app/home/config/app.php ( 1.82 KB )
- /www/wwwroot/huahost.com/app/home/config/common.php ( 2.16 KB )
- /www/wwwroot/huahost.com/app/home/config/lang.php ( 9.00 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/View.php ( 5.74 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/view/driver/Think.php ( 9.37 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Template.php ( 57.83 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/template/driver/File.php ( 2.29 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Session.php ( 14.13 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Cache.php ( 3.27 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/cache/driver/File.php ( 7.99 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/cache/Driver.php ( 8.64 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/behavior/LangBehavior.php ( 2.46 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/lang/zh-cn.php ( 3.14 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Env.php ( 1.17 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/admin/lang/zh-cn.php ( 9.31 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/admin/lang/zh-cn/common.php ( 0.60 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf-app/src/user/lang/zh-cn.php ( 4.13 KB )
- /www/wwwroot/huahost.com/app/admin/lang/zh-cn/common.php ( 1.77 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/behavior/InitAppHookBehavior.php ( 2.12 KB )
- /www/wwwroot/huahost.com/app/home/controller/ViewController.php ( 12.64 KB )
- /www/wwwroot/huahost.com/app/home/controller/ViewBaseController.php ( 42.40 KB )
- /www/wwwroot/huahost.com/app/home/controller/CommonController.php ( 9.68 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/controller/HomeBaseController.php ( 8.48 KB )
- /www/wwwroot/huahost.com/vendor/thinkcmf/cmf/src/controller/BaseController.php ( 4.27 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Controller.php ( 7.72 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/traits/controller/Jump.php ( 4.76 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Session.php ( 2.05 KB )
- /www/wwwroot/huahost.com/app/home/model/ViewModel.php ( 58.04 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Model.php ( 27.48 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/model/concern/Attribute.php ( 17.64 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/model/concern/RelationShip.php ( 19.85 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/model/concern/ModelEvent.php ( 6.04 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/model/concern/TimeStamp.php ( 2.58 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/model/concern/Conversion.php ( 7.84 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/facade/Cache.php ( 2.06 KB )
- /www/wwwroot/huahost.com/public/themes/web/ZdsjuM1/language/english.php ( 6.86 KB )
- /www/wwwroot/huahost.com/public/themes/web/ZdsjuM1/language/chinese.php ( 5.59 KB )
- /www/wwwroot/huahost.com/app/common/logic/Menu.php ( 67.25 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/template/taglib/Cx.php ( 23.95 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/template/TagLib.php ( 12.34 KB )
- /www/wwwroot/huahost.com/data/runtime/temp/c1ef829580185f92b25fa78d39acecae.php ( 26.47 KB )
- /www/wwwroot/huahost.com/app/zdsju.php ( 1,651.77 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/Response.php ( 11.22 KB )
- /www/wwwroot/huahost.com/vendor/thinkphp/library/think/debug/Html.php ( 4.02 KB )
- [ LANG ] /www/wwwroot/huahost.com/app/common/lang/zh-cn.php
- [ DB ] INIT mysql
- [ LANG ] /www/wwwroot/huahost.com/vendor/thinkphp/lang/zh-cn.php
- [ DB ] INIT mysql
- [ DB ] CONNECT:[ UseTime:0.001107s ] mysql:host=127.0.0.1;port=3306;dbname=huahost_com;charset=utf8mb4
- [ SQL ] SHOW COLUMNS FROM `shd_plugin` [ RunTime:0.000957s ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'AutoRobot' AND `status` = 1 LIMIT 1 [ RunTime:0.000760s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'Beartools' AND `status` = 1 LIMIT 1 [ RunTime:0.000583s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'DemoStyle' AND `status` = 1 LIMIT 1 [ RunTime:0.000633s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'DingtalkTicket' AND `status` = 1 LIMIT 1 [ RunTime:0.000627s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'ExportExcel' AND `status` = 1 LIMIT 1 [ RunTime:0.000671s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'ProductDivert' AND `status` = 1 LIMIT 1 [ RunTime:0.000642s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'ProductSyn' AND `status` = 1 LIMIT 1 [ RunTime:0.000645s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'SpecifyClientConfigoptions' AND `status` = 1 LIMIT 1 [ RunTime:0.000634s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SELECT * FROM `shd_plugin` WHERE `name` = 'Zdsju' AND `status` = 1 LIMIT 1 [ RunTime:0.000670s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 32, 'filtered' => 3.125, 'extra' => 'Using where', ) ]
- [ SQL ] SHOW COLUMNS FROM `shd_hook_plugin` [ RunTime:0.000684s ]
- [ SQL ] SELECT `hook`,`plugin` FROM `shd_hook_plugin` WHERE `status` = 1 AND `hook` IN ('ticket_add_note','ticket_admin_reply','ticket_close','ticket_delete','ticket_delete_reply','ticket_department_change','ticket_open','ticket_open_admin','ticket_status_change','ticket_title_change','ticket_user_reply','after_cron','before_cron','after_five_minute_cron','after_daily_cron','before_daily_cron','cron_config_save','after_module_change_package','after_module_change_package_failed','after_module_crack_password','after_module_crack_password_failed','after_module_create','after_module_create_failed','after_module_suspend','after_module_suspend_failed','after_module_terminate','after_module_terminate_failed','after_module_unsuspend','after_module_unsuspend_failed','after_module_on','after_module_on_failed','after_module_off','after_module_off_failed','after_module_reboot','after_module_reboot_failed','after_module_hard_off','after_module_hard_off_failed','after_module_hard_reboot','after_module_hard_reboot_failed','after_module_reinstall','after_module_reinstall_failed','after_module_rescue_system','after_module_rescue_system_failed','after_module_sync','after_module_sync_failed','before_module_change_package','before_module_crack_password','before_module_create','before_module_renew','before_module_suspend','before_module_terminate','before_module_unsuspend','before_module_on','before_module_off','before_module_reboot','before_module_hard_off','before_module_hard_reboot','before_module_reinstall','before_module_rescue_system','before_module_sync','after_admin_add_account','after_admin_edit_account','after_admin_delete_account','admin_logout','admin_login','auth_admin_login','add_admin','edit_admin','delete_admin','after_admin_edit_service','transfer_service','service_delete','product_delete','product_create','product_edit','cancellation_request','after_product_upgrade','invoice_paid_before_email','invoice_paid','invoice_mark_unpaid','invoice_mark_cancelled','invoice_delete','invoice_refunded','invoice_notes','renew_invoice_create','flow_packet_invoice_create','invoice_combine','order_pass_check','order_cancel','order_delete','client_add','client_edit','client_close','pre_client_delete','client_delete','custom_captcha_check','client_details_validate','client_login','client_api_login','client_reset_password','client_logout','shopping_cart_modify_num','shopping_cart_settle','shopping_cart_add_product','shopping_cart_remove_product','shopping_cart_clear','server_add','server_delete','server_edit','before_delete_log','log_activity','affiliate_activation','custom_field_save','before_email_send','custom_host_create','after_shop_add_promo','check_divert_invoice','product_divert_upgrade','product_divert_delete','after_sign_contract','client_area_head_output','client_area_footer_output','template_after_servicedetail_suspended','template_after_service_domainstatus_selected','template_custom_clientarea_captcha_html') ORDER BY `list_order` ASC [ RunTime:0.000972s ]
- [ EXPLAIN : array ( 'id' => 1, 'select_type' => 'SIMPLE', 'table' => 'shd_hook_plugin', 'partitions' => NULL, 'type' => 'ALL', 'possible_keys' => NULL, 'key' => NULL, 'key_len' => NULL, 'ref' => NULL, 'rows' => 29, 'filtered' => 5.0, 'extra' => 'Using where; Using filesort', ) ]
0.461709s