本篇內(nèi)容介紹了“MySQL在Linux平臺(tái)安裝前需要做哪些準(zhǔn)備”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
需要開(kāi)啟slew time。
vi /etc/sysconfig/ntpd OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid" service ntpd restart chkconfig ntpd on
配置NTP服務(wù)
# vi /etc/ntp.conf serveriburst
停止NTP服務(wù),手動(dòng)同步時(shí)間。
service ntpd stop ntpdate -bservice ntpd start
時(shí)鐘寫(xiě)回主板
hwclock --systohc hwclock;date
使用Chrony服務(wù)
vi /etc/chrony.conf serveriburst
重啟時(shí)間同步服務(wù):
systemctl restart chronyd.service systemctl enable chronyd.service
查看時(shí)間同步源:
chronyc sources -v
時(shí)鐘寫(xiě)回主板
hwclock --systohc hwclock;date
#vi /etc/hosts 127.0.0.1 localhost
cat>>/etc/security/limits.conf<>/etc/security/limits.d/90-nproc.conf< 5.禁用防火墻
service iptables stop chkconfig iptables off service ip6tables stop chkconfig ip6tables off6. 系統(tǒng)內(nèi)核參數(shù)
shmmax和shmall的設(shè)置
shmmax指的是單個(gè)內(nèi)存段的大值,單位為bytes
shmall指的是能使用的大內(nèi)存大小,單位為pages,
pages大小可通過(guò) getconf PAGE_SIZE 命令查詢,一般操作系統(tǒng)page大小為4096 bytes
如操作系統(tǒng)內(nèi)存為8G,給80%給Oracle使用,則
kernel.shmmax=(8 * 0.8 * 1024 * 1024 * 1024 )=6871947673
kernel.shmall=kernel.shmmax/4096=1677721如默認(rèn)值比較大 請(qǐng)保持默認(rèn)值
cat>>/etc/sysctl.conf<使其生效
# sysctl -p
7. 加大磁盤(pán)隊(duì)列深度
默認(rèn)128,可以加大至512. 根據(jù)需求可不加
# vi /etc/rc.local echo 512 > /sys/block/sda/queue/nr_requests # chmod +x /etc/rc.local8. 文件系統(tǒng)配置
添加noatime,nodiratime選項(xiàng) 根據(jù)需求可不添加
# vi /etc/fstab /dev/mapper/centos-app /app xfs defaults,noatime,nodiratime 0 0重新掛載后確認(rèn)
# mount|grep noatime /dev/mapper/centos-app on /app type xfs (rw,noatime,nodiratime,attr2,inode64,noquota)9. 重啟系統(tǒng)
reboot
好了 MySQL安裝前的準(zhǔn)備就到這了,下節(jié)為如何安裝
“MySQL在Linux平臺(tái)安裝前需要做哪些準(zhǔn)備”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
當(dāng)前題目:MySQL在Linux平臺(tái)安裝前需要做哪些準(zhǔn)備-創(chuàng)新互聯(lián)
本文來(lái)源:http://weahome.cn/article/pdhod.html