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.

LXCのCentOS7でLAMP環境を作る

Last updated at Posted at 2014-10-17

パッケージのインストール

yum install httpd php php-mysqlnd mariadb-server

httpd, php

mkdir -p /var/log/httpd/
mkdir -p /var/www/html/
echo "<?php echo 'hoge'; ?>" > /var/www/html/index.php

apachectl -S
systemctl start httpd
systemctl enable httpd

mariadb

/etc/my.cnf.d/server.cnf
  [mysqld]
+ character-set-server = utf8
systemctl start mariadb
systemctl enable mariadb
mysql -uroot
MariaDB [(none)]> status
...
Server characterset:	utf8
Db     characterset:	utf8
Client characterset:	utf8
Conn.  characterset:	utf8
...
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?