本文主要和大家分享Centos7安裝mysql與php的方法,希望能協助到大家。
官網下載安裝mysql-server
依次使用下面三個命令安裝
wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpmrpm -ivh mysql-community-release-el7-5.noarch.rpmyum install mysql-community-server
安裝過程如
安裝成功後 使用 systemctl start mysql
命令啟動mysql
由可以看出,初始安裝mysql root帳號是沒有密碼的
下面我們來設定 root 賬戶密碼 使用命令 set password for 'root'@'localhost' =password('password');
如 我們把root帳號密碼設定為了 123456 並登入成功
設定mysql遠端連線
把資料庫所以許可權都賦予root帳號
grant all privileges on *.* to root@'%'identified by 'password';
如果是新使用者而不是root 則要先建立使用者
create user 'username'@'%' identified by 'password';
重新整理許可權 flush privileges;
這樣我們的mysql 資料庫就配置好了 還可以遠端連線
下載php7
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64
yum install php70w-fpm php70w-opcache
啟動php-fpm
systemctl start php-fpm
在 nginx 根目錄 建立index.php 內容如下
訪問你的web伺服器 出現 即安裝成功
官網下載安裝mysql-server
依次使用下面三個命令安裝
wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpmrpm -ivh mysql-community-release-el7-5.noarch.rpmyum install mysql-community-server
安裝過程如
安裝成功後 使用 systemctl start mysql
命令啟動mysql
由可以看出,初始安裝mysql root帳號是沒有密碼的
下面我們來設定 root 賬戶密碼 使用命令 set password for 'root'@'localhost' =password('password');
如 我們把root帳號密碼設定為了 123456 並登入成功
設定mysql遠端連線
把資料庫所以許可權都賦予root帳號
grant all privileges on *.* to root@'%'identified by 'password';
如果是新使用者而不是root 則要先建立使用者
create user 'username'@'%' identified by 'password';
重新整理許可權 flush privileges;
這樣我們的mysql 資料庫就配置好了 還可以遠端連線
下載php7
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64
yum install php70w-fpm php70w-opcache
啟動php-fpm
systemctl start php-fpm
在 nginx 根目錄 建立index.php 內容如下
訪問你的web伺服器 出現 即安裝成功