## 寶塔
#### 安裝
```
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
```
#### Linux面板7.1.0升級命令:
```
curl http://download.bt.cn/install/update6.sh|bash
```
### 訪問
```
端口默認為8888
```
### 寶塔配置mysql
安裝完,發現無法遠程連接,操作如下
* 如果用的是阿里云之類的,去打開相關端口配置
* 然后放行寶塔端口
* 進入mysql中,輸入如下即可
```
grant all on *.* to root@'%' identified by '這是你mysql密碼' with grant option;
flush privileges;
```