더보기
[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
'클라우드 > 클라우드(Public Cloud)' 카테고리의 다른 글
클라우드 GCP Cloud DNS (0) | 2021.06.25 |
---|---|
클라우드 GCP 프로젝트, GCE 가상머신 만들기 ,SSH연결 (0) | 2021.06.25 |
클라우드 Azure 이미지 서비스, 이미지로 가상머신 생성 (0) | 2021.06.25 |
클라우드 Azure 파일 스토리지 (0) | 2021.06.25 |
클라우드 Azure Centos7 생성 (0) | 2021.06.25 |