]# sudo apt-get install php
]# sudo apt-get install apache2
]# sudo apt-get install mariadb-server
]# sudo apt-get install libapache2-mod-php7.0
]# sudo mysql
> SET PASSWORD FOR root@localhost = PASSWORD('원하는 패스워드 입력');
> quit;
]# sudo /usr/bin/mysql_secure_installation
/* 이미 암호는 앞에서 지정했기 때문에 첫 번째 패스워드를 변경하겠냐는 질문에는 n을 나머지는 (이 설정에 대해서 잘 모르는 분이라면) 엔터키를 끝날 때까지 눌러 주세요. */
]# sudo mysql
> USE mysql;
> UPDATE user SET plugin='' WHERE user='root';
> FLUSH privileges;
> quit;
]# sudo apt-get install php-mysql
INSERT INTO mysql.user (host,user,password) VALUES ('%','root',password('CAFE8848'));
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
FLUSH PRIVILEGES;
]# sudo vi /etc/php/7.0/apache2/php.ini
]# sudo vi /etc/php/7.0/cli/php.ini
/***
default_charset="UTF-8"
data.timezone=”Asia/Seoul”
mbstring.language = Korean
mbstring.internal_encoding = UTF-8
mbstring.http_input = UTF-8
mbstring.http_output = pass
mbstring.encoding_translation = On
mbstring.detected_order = UTF-8
mbstring.substitute_charcter = none;