這篇文章主要介紹了如何配置CentOS7+apache+php7+mysql5.7環(huán)境,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)建站于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)、做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元黃陂做網(wǎng)站,已為上家服務(wù),為黃陂各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575yum upgrade yum install net-tools
安裝apache
關(guān)閉SELinux
編輯器打開 etc/selinux/config 文件,找到 SELINUX=enforcing 字段,將其改成 SELINUX=disabled ,并重啟設(shè)備。
yum -y install httpd mod_ssl
配置防火墻
firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent --add-port=443/tcp firewall-cmd --reload
開機(jī)啟動(dòng)
systemctl start httpd systemctl enable httpd
終端輸入如下指令檢查httpd的運(yùn)行狀態(tài)
sudo systemctl status httpd
安裝PHP7
添加源
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
安裝
yum install php70w
安裝mysql5.7
1.安裝wget
yum -y install wget
2.安裝源
wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm rpm -ivh mysql57-community-release-el7-8.noarch.rpm
3.安裝mysql
yum install mysql-server
4.啟動(dòng)mysql服務(wù)
systemctl start mysqld
5.查看MySQL的啟動(dòng)狀態(tài)
systemctl status mysqld
6.開機(jī)啟動(dòng)
systemctl enable mysqld systemctl daemon-reload
7.修改root本地登錄密碼
查找mysql生成的隨機(jī)密碼
grep 'temporary password' /var/log/mysqld.log mysql -uroot -p
修改密碼,注意:mysql5.7默認(rèn)安裝了密碼安全檢查插件(validate_password),默認(rèn)密碼檢查策略要求密碼必須包含:大小寫字母、數(shù)字和特殊符號(hào),并且長度不能少于8位。否則會(huì)提示ERROR 1819 (HY000): Your password does not satisfy the current policy requirements錯(cuò)誤
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';
8.配置默認(rèn)編碼為utf8
修改/etc/my.cnf配置文件,在[mysqld]下添加編碼配置
[mysqld] character_set_server=utf8 init_connect='SET NAMES utf8'
9.配置mysql遠(yuǎn)程連接
mysql -uroot -p use mysql; Grant all on *.* to 'root'@'%' identified by 'root用戶的密碼' with grant option; flush privileges;
然后用以下命令查看哪些用戶和host可以訪問,%代表任意ip地址
select user,host from user;
防火墻添加3306端口
firewall-cmd --zone=public --add-port=3306/tcp --permanent firewall-cmd --reload
10.mysql忘記密碼
1.修改MySQL的配置文件(默認(rèn)為/etc/my.cnf),在[mysqld]下添加一行skip-grant-tables
2.service mysqld restart后,即可直接用mysql進(jìn)入
3.
mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost'; mysql> flush privileges; mysql> quit;
將/etc/my.cnf文件還原,重新啟動(dòng)mysql:service mysql restart,這個(gè)時(shí)候可以使用mysql -u root -p'123qwe'進(jìn)入了
mysql>SET PASSWORD = PASSWORD('newpasswd'); 設(shè)置新密碼
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何配置CentOS7+apache+php7+mysql5.7環(huán)境”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!
當(dāng)前名稱:如何配置CentOS7+apache+php7+mysql5.7環(huán)境-創(chuàng)新互聯(lián)
標(biāo)題URL:http://muchs.cn/article26/cdcpjg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、云服務(wù)器、移動(dòng)網(wǎng)站建設(shè)、面包屑導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容