본문 바로가기

클라우드/클라우드(Public Cloud)

클라우드 Azure 워드프레스 만들기

더보기

[azureuser@test ~]$ sudo su - root
[root@test ~]# yum install -y mysql

[root@test ~]# mysql -h dahye.mysql.database.azure.com -u dahye@dahye -p

MySQL [(none)]>

CREATE USER 'wpuser'@'%' IDENTIFIED BY 'wppass';

CREATE DATABASE IF NOT EXISTS wordpress;

GRANT ALL PRIVILEGES ON wordpress.* TO 'wpuser'@'%';

quit


더보기

워드프레스 설치

$ sudo yum install -y httpd php php-mysql php-gd php-mbstring wget unzip

$ sudo wget https://ko.wordpress.org/wordpress-4.8.2-ko_KR.zip

$ cd /var/www/html $ sudo unzip /root/wordpress-4.8.2-ko_KR.zip

$ sudo chown -R apache:apache wordpress $ sudo systemctl restart httpd

$ sudo systemctl enable httpd