2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHP7とMySQLの環境構築

Posted at

自分用メモ
-PHPのインストール
-MYSQLのインストール

##PHPのインストール
remiリポジトリの追加

//rpms.famillecollet.com/enterprise/remi-release-7.rpm

PHP7をインストール

PHPinfoを確認

<?php
 phpinfo();

##MySQLのインストール
mariaDB、既存mysqlを削除

yum remove mariadb-libs
yum remove mysql*

インストール

yum install http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
yum -y install mysql-community-server

バージョンチェック

mysqld --version

起動、自動起動設定

systemctl start mysqld.service
systemctl enable mysqld.service

初期パスワード確認

cat /var/log/mysqld.log | grep 'password is generated'

初期設定

$ mysql_secure_installation

Enter password for user root: //ログに出力されていた初期パスワードを入力
Set root password? //ルートのパスワードを変更しますか? Yでパスワード設定
Remove anonymous users? //誰でもログイン可能になっているが消しますか? Yで消しとく
Disallow root login remotely? //リモートからrootログインを許可しませんか? Yでしない
Remove test database and access to it? //テストデータベース消していいですか? Yで消す
Reload privilege tables now? //設定をすぐに反映しますか? Yで反映
All done!
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?