主頁 > 知識(shí)庫 > centos 7 安裝percona Server 服務(wù)器方法

centos 7 安裝percona Server 服務(wù)器方法

熱門標(biāo)簽:河北機(jī)器人電銷 bs外呼系統(tǒng) ai人工電話機(jī)器人 小藍(lán)鴿電話機(jī)器人 上海營銷外呼系統(tǒng)定制 長沙人工外呼系統(tǒng)公司 京東外呼系統(tǒng)怎么操作 常州云呼叫外呼系統(tǒng) 阿克蘇市地圖標(biāo)注app

如何在 CentOS 7 上安裝 Percona服務(wù)器?其實(shí)也是非常簡單的,Percona Server提升了在高負(fù)載情況下的 InnoDB 的性能,為 DBA 提供了一些非常有用的性能診斷工具,另外有更多的參數(shù)和命令來控制服務(wù)器行為。

Percona Server簡介

Percona Server是MySQL的改進(jìn)版本,使用 XtraDB 存儲(chǔ)引擎,在功能和性能上較 MySQL 有著很顯著的提升,如提升了在高負(fù)載情況下的 InnoDB 的性能,為 DBA 提供了一些非常有用的性能診斷工具,另外有更多的參數(shù)和命令來控制服務(wù)器行為。

Percona Server安裝

平臺(tái)說明:

centos 7 ,Percona Server 5.6

執(zhí)行用戶 root , 安裝使用用戶 centralight

1.更新yum

yum install http://www.percona.com/downloads/percona-release/redhat/0.1-3/percona-release-0.1-3.noarch.rpm

2.安裝

yum install Percona-Server-client-56 Percona-Server-server-56

安裝如果有沖突,之前已經(jīng)安裝過mysql,則需要卸載

 

rpm -qa | grep mysql
rpm -qa | grep mariadb
rpm -e [軟件標(biāo)識(shí)]

3.非多實(shí)例配置及啟動(dòng)

默認(rèn)配置文件路徑 /etc/my.cnf

初始化 

mysql_install_db --user=centralight --datadir=/cl/data/mysql/percona3311 

啟動(dòng) 

mysqld_safe --user=centralight --datadir=/cl/data/mysql --defaults-file=/cl/dist/conf/mysql/my.cnf 

4.多實(shí)例配置及啟動(dòng)

chown -R centralight /cl/data/mysql/percona3311 

mysql_install_db --datadir=/cl/data/mysql/percona3311 --user=centralight 

所有配置文件目錄

默認(rèn)配置文件路徑 /etc/my.cnf,修改成如下

[client] 

user = root 

password = 123 

# Here follows entries for some specific programs 

[mysqld_multi] 

mysqld = /usr/bin/mysqld_safe 

mysqladmin = /usr/bin/mysqladmin 

[mysqld3311] 

socket = /var/lib/mysql/mysql3311.sock 

port = 3311 

datadir = /cl/data/mysql/percona3311 

pid-file = /var/lib/mysql/hostname.pid3311 

user = centralight 

skip-external-locking 

key_buffer_size = 16M 

max_allowed_packet = 1M 

table_open_cache = 64 

sort_buffer_size = 512K 

啟動(dòng)

mysqld_multi --defaults-file=/etc/my.cnf --log=/cl/log/mysql/mysql.log start 3311

報(bào)告狀態(tài)

mysqld_multi --defaults-file=/etc/my.cnf report 3311

5.登陸數(shù)據(jù)庫修改用戶及權(quán)限,并能遠(yuǎn)程連接

mysql -uroot -p -h127.0.0.1 -P3311 

mysql> use mysql; 

mysql> update user set host='%’ where host = ‘localhost’ and user=‘root’ 

mysql> flush privileges; 

設(shè)置密碼

mysql> UPDATE user SET Password=password("123") WHERE user='root' and host='%’; 

mysql> flush privileges; 

如果不能遠(yuǎn)程連接,請(qǐng)關(guān)閉防火墻嘗試

CentOS 7.0默認(rèn)使用的是firewall作為防火墻

systemctl stop firewalld.service 

systemctl disable firewalld.service

標(biāo)簽:邢臺(tái) 忻州 來賓 銅仁 周口 泉州 甘孜 甘南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《centos 7 安裝percona Server 服務(wù)器方法》,本文關(guān)鍵詞  centos,安裝,percona,Server,服務(wù)器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《centos 7 安裝percona Server 服務(wù)器方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于centos 7 安裝percona Server 服務(wù)器方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章