- 2024/11/21
- Category :
[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ステップアップしていくブログです。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
/** * Render the given HttpException. * * @param \Symfony\Component\HttpKernel\Exception\HttpException $e * @return \Symfony\Component\HttpFoundation\Response */ protected function renderHttpException(HttpException $e) { if (!App::environment('production')) { return $this->convertExceptionToResponse($e); } return parent::renderHttpException($e); }
$ chkconfig --list
$ systemctl list-units --type=service
# service httpd status # service httpd start # service httpd stop # service httpd restart
# systemctl status httpd.service # systemctl start httpd.service # systemctl stop httpd.service # systemctl restart httpd.service
# iptables -nvL # iptables -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT
# firewall-cmd --list-services --zone=public --permanent # firewall-cmd --add-service=https --zone=public --permanent
mysql> SET PROFILING = 1; Query OK, 0 rows affected (0.00 sec) mysql> SELECT ... ... ... 117 rows in set (6 min 54.15 sec) mysql> SHOW PROFILE; +------------------------------+------------+ | Status | Duration | +------------------------------+------------+ | starting | 0.000246 | | checking permissions | 0.000004 | | checking permissions | 0.000003 | | checking permissions | 0.000002 | | checking permissions | 0.000002 | | checking permissions | 0.000002 | | checking permissions | 0.000002 | | checking permissions | 0.000002 | | checking permissions | 0.000002 | | checking permissions | 0.000005 | | Opening tables | 0.000030 | | System lock | 0.000005 | | Table lock | 0.000094 | | optimizing | 0.000032 | | statistics | 0.000051 | | preparing | 0.000033 | | Creating tmp table | 0.000026 | | executing | 0.000003 | | Copying to tmp table | 0.161709 | | Sorting result | 0.000767 | | Sending data | 0.002630 | | removing tmp table | 0.000008 | | Sending data | 0.000007 | | init | 0.000112 | | optimizing | 0.000022 | | statistics | 0.000041 | | preparing | 0.000030 | | Creating tmp table | 0.000066 | | executing | 0.000003 | | Copying to tmp table | 0.050874 | | converting HEAP to MyISAM | 0.033028 | | Copying to tmp table on disk | 103.846074 | | Sorting result | 158.297312 | | Sending data | 151.018799 | | end | 0.000026 | | removing tmp table | 0.807298 | | end | 0.000016 | | query end | 0.000004 | | freeing items | 0.000045 | | removing tmp table | 0.000009 | | freeing items | 0.000010 | | removing tmp table | 0.000004 | | freeing items | 0.000005 | | removing tmp table | 0.000006 | | freeing items | 0.000033 | | removing tmp table | 0.000007 | | closing tables | 0.000011 | | logging slow query | 0.000002 | | logging slow query | 0.000006 | | cleaning up | 0.000007 | +------------------------------+------------+ 50 rows in set (0.00 sec)