你安裝了mysql沒有,沒有就先安裝,安裝好mysql以后,在bin目錄下有個mysqld.exe,運行這個程序就可以添加mysql服務,但是運行這個程序需要使用參數(shù),否則就會以命令行窗口形式啟動MYSQL數(shù)據(jù)庫,命令參數(shù)如下:
創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務領域包括:網(wǎng)站制作、成都網(wǎng)站設計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的洛扎網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!
安裝服務(MySQL)的命令:
mysqld.exe --install
可以指定服務的名字,例如:
mysqld.exe --install MySQL5
以上命令安裝的服務是開機自動運行,如果開機不自動啟動,那么參數(shù)如下:
mysqld.exe --install-manual
這樣就需要使用下面的命令啟動服務:
net start MySQL
刪除服務的命令是:
mysqld.exe --remove
當然可以,只要你允許,建了賬號設了權限,網(wǎng)絡也是通的,對方就可以通過工具訪問,例如
navicat for mysql
本地不安裝mysql 服務器是可以的,但是至少要安裝客戶端,?也要安裝一個 ?ODBC 的驅動。
下面這種情況, 是 連接本機的 MySQL
前提是 本機安裝了 ?MySQL , 并開啟了 MySQL 的服務。
E:\MySQL\MySQL Server 5.1\binmysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. ?Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.1.50-community MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql
下面這種情況, 是 本機只有客戶端, 沒有運行服務程序。
連接的是 另外一臺機器上面的 ?MYSQL 數(shù)據(jù)庫, ?本機是沒有數(shù)據(jù)庫的。
F:\mysql-4.1.10a-win32\binmysql -u test_user -h 192.168.56.101 -p
Enter password: ************
Welcome to the MySQL monitor. ?Commands end with ; or \g.
Your MySQL connection id is 8 to server version: 5.0.96-community-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql