SQL伺服器的搭建

2021-06-26 17:45:42 字數 1316 閱讀 2957

我在ubuntu的嵌入式開發板上, 搭建起mysql5.5的服務端, 然後從windows這邊裝個5.5的客戶端, 想試著從pc這邊連線到板子的服務端,中間遇到的問題紀錄了一下。

a              linux的服務端問題:

mysql

安裝後

資料庫出現連線用不了情況,

error

1045

(28000):

access

denied

foruser

'fan'@'localhost' (using password: yes)

解決方法: 用#mysql -u root -p   用超級使用者登入便可。
b     從pc連線linux端sql問題:
1、

pc端裝好

mysql

後,連線

ubuntu

的資料庫出錯:

error

2003

(hy000):

can't connect to mysql server on '10.0.0.23' (10061)

解決方法:

liunx端作修改,

將ubuntu

服務端的

sql配置檔案修改

/etc

/mysql/my

.cnf

修改內容:

#bind

-address

:127.0.0.1

(注釋掉)

退出後重啟動sql服務即可, 執行# /etc/init.d/mysql restart

2

、報如下錯誤

error

1130

(hy000):

host

'10.0.0.26' is not allowed to connect to this mysql server

解決方法:

服務端執行如下命令

#mysql

mysql

>

grant

allprivileges

on*.*

to'root'@'%' identified by '123456';

mysql

>

flush

privileges

;mysql

>

exit

上述辦法是從服務端允許任意ip以root使用者方式登入, 密碼為123456

伺服器搭建

問題一 com無法訪問到伺服器 問題二 將 com 301重定向到 www.com 解決方案 在httpd.conf檔案中 追加 如下內容 options followsymlinks rewriteengine on rewritecond com rewriterule l,r 301 2 禁止...

搭建伺服器

零基礎搭建伺服器 我用的是ubuntu,所有 sudo apt get install apache2 配置php的時候已經配好了,這裡就不重複配置了 安裝apxs 安裝過php,所以這個也忽略掉 sudo apt get install apache2 dev apxs是乙個為apache超文字傳...

伺服器搭建

1 系統centos yun update 公升級安裝包 2 通過yum install mysql mysql service 安裝mysql 更新 mysql service 安裝方法 wget rpm ivh mysql community release el7 5.noarch.rpm y...