程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> linux下啟動MYSQL服務器以及配置自啟動命令

linux下啟動MYSQL服務器以及配置自啟動命令

編輯:MySQL綜合教程

linux下啟動MYSQL服務器以及配置自啟動命令   /usr/local/mysql/bin/mysqld_safe --user=mysql&    注意MYSQL安裝目錄    www.2cto.com   配置自啟動    通過vi /etc/rc.local    常見命令    #!/bin/sh  #  # This script will be executed *after* all the other init scripts.  # You can put your own initialization stuff in here if you don't  # want to do the full Sys V style init stuff.    touch /var/lock/subsys/local  /usr/local/apache/bin/apachectl start  /usr/local/mysql/bin/mysqld_safe --user=mysql &  mount -t nfs 192.168.0.85:/var/www/html/cache /var/www/html/cache   

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved