真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

不安裝mysql怎么使用 免安裝mysql如何安裝

如何在沒有安裝mysql的情況下遠(yuǎn)程連接mysql

1、 停止mysql的服務(wù)。

創(chuàng)新互聯(lián)專注于永年企業(yè)網(wǎng)站建設(shè),自適應(yīng)網(wǎng)站建設(shè),商城網(wǎng)站建設(shè)。永年網(wǎng)站建設(shè)公司,為永年等地區(qū)提供建站服務(wù)。全流程按需制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

2、 進(jìn)入命令窗口,然后進(jìn)入MySQL的安裝目錄,比如安裝目錄是c:\mysql,進(jìn)入c:\mysql\bin。

3、 進(jìn)入mysql數(shù)據(jù)庫(kù)服務(wù)器。

c:\mysql\binmysql –u root –p hkgt123。

4、 選中數(shù)據(jù)庫(kù)mysql :use mysql。

5、 查詢mysql數(shù)據(jù)庫(kù)中的用戶:Select host,user,password from mysql。

6、 授權(quán)給root用戶可以從任何主機(jī)使用密碼為’hkgt123’登錄MYSQL數(shù)據(jù)庫(kù):

GRANT ALL PRIVILEGES ON *.* TO root@’%’ IDENTIFIED BY ‘hkgt123’ WITH GRANT OPTION。

7、 提交:commit。

8、 刷新權(quán)限:flush privileges。

在本地不安裝mysql數(shù)據(jù)庫(kù)能連接嗎?

本地不安裝mysql 服務(wù)器是可以的,但是至少要安裝客戶端,?也要安裝一個(gè) ?ODBC 的驅(qū)動(dòng)。

下面這種情況, 是 連接本機(jī)的 MySQL

前提是 本機(jī)安裝了 ?MySQL , 并開啟了 MySQL 的服務(wù)。

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

下面這種情況, 是 本機(jī)只有客戶端, 沒有運(yùn)行服務(wù)程序。

連接的是 另外一臺(tái)機(jī)器上面的 ?MYSQL 數(shù)據(jù)庫(kù), ?本機(jī)是沒有數(shù)據(jù)庫(kù)的。

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

mysql免安裝版如何使用?

解壓MySQL(F:\Program Files\MySQL\)MySQL安裝目錄 二 新建my.ini \x0d\x0a在F:\Program Files\MySQL\下建立my.ini文件,內(nèi)容為 my.ini \x0d\x0a[mysqld] \x0d\x0a# 設(shè)置mysql的安裝目錄 \x0d\x0abasedir=F:\\Program Files\\MySQL \x0d\x0a# 設(shè)置mysql數(shù)據(jù)庫(kù)的數(shù)據(jù)的存放目錄,必須是data,或者是\\xxx-data datadir=F:\\Program Files\\MySQL\\data # 設(shè)置mysql服務(wù)器的字符集,默認(rèn)編碼 default-character-set=latin1 \x0d\x0a \x0d\x0a[client] \x0d\x0a# 設(shè)置mysql客戶端的字符集 default-character-set=latin1 \x0d\x0a \x0d\x0a[WinMySQLAdmin] \x0d\x0a\x0d\x0a# 指定mysql服務(wù)啟動(dòng)啟動(dòng)的文件 \x0d\x0aServer=F:\\Program Files\\MySQL\\bin\\mysqld.exe \x0d\x0a \x0d\x0a三 注冊(cè)MySQL服務(wù),使MySQL可以在服務(wù)項(xiàng)目中啟動(dòng)或關(guān)閉 \x0d\x0a 1)進(jìn)入安裝目錄\bin,執(zhí)行: \x0d\x0a F:\Program Files\MySQL\binmysqld -install \x0d\x0a 顯示:Service successfully installed. 則注冊(cè)服務(wù)成功。 \x0d\x0a如果要?jiǎng)h除服務(wù): \x0d\x0aF:\Program Files\MySQL\binmysqld -remove 2)修改注冊(cè)表: \x0d\x0aHKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MySQL\ImagePath 修改為: \x0d\x0a"F:\Program Files\MySQL\bin\mysqld" --defaults-file= "F:\Program Files\MySQL\my.ini" MySQL \x0d\x0a這樣配置就可以使用net start mysql命令正常啟動(dòng)MySQL。 \x0d\x0a四 修改root密碼 \x0d\x0aMySQL配置好后,啟動(dòng)成功,默認(rèn)密碼是空,但是為了安全,設(shè)置密碼(一般用戶名為root,密碼為root)。 \x0d\x0a1)登錄MySQL root用戶: \x0d\x0a 進(jìn)入MySQL安裝目錄\bin,執(zhí)行: \x0d\x0a F:\Program Files\MySQL\MySQL-6.0.7\binmysql -u root; 2)修改root密碼: \x0d\x0a mysql update mysql.user set password=PASSWORD(''新密碼'') where User=''root''; \x0d\x0a mysql flush privileges;


網(wǎng)頁(yè)名稱:不安裝mysql怎么使用 免安裝mysql如何安裝
網(wǎng)站鏈接:http://weahome.cn/article/dogcsgc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部