重启MySQL的正确方法

如果你是从源码包安装的Mysql,那么系统中是没有红帽常用的servcie这个脚本的,

所以只好手工重启

有人建议Killall mysql。这种野蛮的方法其实是不行的,强制终止的话,可能会造成表损坏,损失是巨大的。

这里推荐安全的重启方法

$mysql_dir/bin/mysqladmin -u root -p shutdown
$mysql_dir/bin/safe_mysqld & 

mysqladmin和mysqld_safe位于Mysql安装目录的bin目录下,很容易找到的。

/usr/bin/mysqladmin -u root -p shutdown

Last modified onSaturday, 05 January 2013 13:03

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0009413856{main}( ).../index.php:0
20.09894718600Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.09894718600Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.314212446696Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.314912471216Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.315612526544Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.315812555368require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.324112990776K2ControllerItem->execute( ).../k2.php:64
90.324112990776K2ControllerItem->display( ).../BaseController.php:710
100.333913715976K2ControllerItem->display( ).../item.php:78
110.333913715976K2ControllerItem->display( ).../controller.php:19
120.338414112344Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.340314132712K2ViewItem->display( ).../ViewController.php:102
140.411917094696K2ViewItem->display( ).../view.html.php:742
150.411917094696K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.415617274896include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
  • Published in MYSQL
  • Read 3308 times

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0009413856{main}( ).../index.php:0
20.09894718600Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.09894718600Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.314212446696Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.314912471216Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.315612526544Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.315812555368require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.324112990776K2ControllerItem->execute( ).../k2.php:64
90.324112990776K2ControllerItem->display( ).../BaseController.php:710
100.333913715976K2ControllerItem->display( ).../item.php:78
110.333913715976K2ControllerItem->display( ).../controller.php:19
120.338414112344Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.340314132712K2ViewItem->display( ).../ViewController.php:102
140.411917094696K2ViewItem->display( ).../view.html.php:742
150.411917094696K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.415617274896include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top