mysql 1037 解決 mySQL的報錯解決

2021-10-17 17:27:30 字數 1182 閱讀 3323

匿名使用者

1級2016-05-07 回答

1.mysql服務無法啟動,報1067錯誤

解決方案:

1).把mysql服務端解壓目錄新加乙個my.ini檔案,內容如下?12345678910111213141516171819 [mysqld] # set basedir to installation path, e.g., c:/mysql # 設定為mysql的安裝目錄 basedir=c:/tool/mysql5617win32 # set datadir to location of data directory, # e.g., c:/mysql/data or d:/mydata/data # 設定為mysql的資料目錄 datadir=c:/tool/mysql5617win32/data character_set_server = utf8 character_set_client = utf8 [winmysqladmin] server=c:/tool/mysql5617win32/bin/mysqld.exe user=root #這裡感覺沒有用 password=123456 #這裡感覺沒有用 #以上是設定winmysqladmin的配置 [client] user=root #這裡感覺沒有用 password=123456 #這裡感覺沒有用2).dos下面輸入:sc delete mysql

3).重啟電腦

5).net start mysql

6).提示啟動成功

2.修改root密碼提示10061

1).10061一般是mysql服務沒有啟動造成的,去服務裡面看下是否已啟動2).如果啟動了還是報這個錯誤那就去關閉防火牆(遠端伺服器才需要)3).這時應該不會出現10061了

3.修改root密碼提示10045

1).cmd進入mysql解壓目錄的bin下,類似:cd c:/tool/mysql5617win32/bin2).輸入:mysql -u root -p

3).出現了enter password: 不用管直接回車(因為剛開始是沒有密碼的)4).use mysql; 大概會出現:changed table success;5).update user set password=password("123465") where user='root'; 大概會出現changed 3;updated 36).flush privileges;

7)然後開啟客戶端輸入你上面的123456就可以連線成功了

解決sqoop連線mysq錯誤

一 問題描述 1.由於當前集群沒有配置zookeeper hcatalog accumlo,因此應該在sqoop的配置檔案中注釋掉判斷zookeeper hcatalog accumlo路徑是否正確的 二 解決辦法 vim usr local sqoop bin configure sqoop 將如...

Mysq篇 了解Mysql(一)

in關鍵字和exists關鍵字select from a where a.idin select id from b 對外表a使用索引效率高,建議a為大表。select from a whereexists select from b where a.id b.id 對內表b使用索引效率高,建議b為...

mysq 死鎖問題解決

1 查詢是否存在死鎖 show open tables where in use 0 2 查詢死鎖itrx mysql thread id select from information schema.innodb trx 命令是用來檢視當前執行的所以事務 select from informati...