Ubuntu에서 개인 블로그용 워드프레스 설치하기
오늘은 ubuntu에 워드프레스를 한번 설치해보겠습니다.
일반적으로 LEMP를 설치한다고 하는데요.
LEMP란?
- 리눅스 플랫폼에
- 웹 서버로는 Nginx(엔진엑스)
- PHP
- DB는 MariaDB를 사용할 것입니다.
이것을 줄여서 LEMP 서버(Linux + (E)Nginx + MariaDB + PHP)라고 부릅니다.
Nginx를 ‘엔진엑스’라고 읽어서 E가 들어간다고 합니다..
리눅스설치는 AWS 등에서 간단히 설치가 가능하니 해당 방법은 제외하겠습니다.
MariaDB 설치하기
먼저 MariaDB를 설치해보고자 합니다.
sudo apt install mariadb-server mariadb-client
이 후 status를 통해서 버전과 함께 잘 설치되었는지 확인합니다.
systemctl status mariadb
이후 보안설정을 해야 하는데요.
sudo mysql_secure_installation
명령어를 통해 보안 설치를 진행합니다.
처음에 루트 패스워드는 없으니 엔터를 치시고
비멀번호를 설정하고, 사실 기본적으로 Y누르시면서 진행하셔도 무방합니다.
그리고 간단히 포트 등을 설정하셔야 하는데요.
/etc/mysql/mariadb.conf.d/50-server.cnf 또는 /etc/mysql/my.cnf 에서 설정하시면 되고
port를 살려주시고, 설정은 완료합니다.
그리고 외부에서 접속하려면 bind-address의 주석을 제거해주셔야 합니다.
이후 mariaDB를 재기동합니다.
sudo service mysql restart
이제 mariadb에서 워드프로세스용 계정을 만들어야 하는데요.
루트계정으로 mariaDB접속한 후 설정을 합니다.
sudo mysql -u root
wordpress db 생성 후 remake라는 계정을 만들고 모든 권한을 준상황입니다.
create database wordpress;
create user 'remake'@'%' identified by '비밀번호';
grant all privileges on wordpress.* to 'remake'@'%';
PHP 설치하기
이후 php를 설치하면 되는데요.
아래 명령어를 통해 리포를 등록하고 php 8.0을설치합니다.
add-apt-repository ppa:ondrej/php
apt-get update && apt-get upgrade
apt install php8.0-{bcmath,bz2,cgi,cli,common,curl,dba,dev,enchant,fpm,gd,gmp,imap,interbase,intl,ldap,mbstring,mysql,odbc,opcache,pgsql,phpdbg,pspell,readline,snmp,soap,sqlite3,sybase,tidy,xml,xmlrpc,zip,xsl}
이후 php의 기본 설정을 변경하는데요.
vi /etc/php/8.0/fpm/php.ini
변경하면 좋은 값들은 아래의 값들을 변경하면 좋습니다.
vi 사용하시면 /를통해서 검색후 엔터하면 해당 위치로 키가 고정되고
i누르면 편집모드로 편집 후에 !wq누르면 저장됩니다
short_open_tag = On
max_execution_time = 3600
max_input_time = 3600
memory_limit = 256M
post_max_size = 100M
cgi.fix_pathinfo = 0
upload_max_filesize = 100M
allow_url_fopen = Off
date.timezone = Asia/Seoul
수정 후에 다시 재실행하셔야 합니다.
systemctl enable php8.0-fpm
systemctl start php8.0-fpm
php --version을 통해서 버전을 확인하실수 있습니다.
Nginx 설치하기
Nginx(엔진 x라 읽는다)는 웹 서버 소프트웨어로, 가벼움과 높은 성능을 목표로 한다.
웹 서버, 리버스 프록시 및 메일 프록시 기능을 가진다.
apt 명령어를 통해서 간단히 설치가 가능합니다
apt-get install nginx
설치 후 nginx 기본설정이 필요합니다.
nano /etc/nginx/sites-enabled/default
해당 파일중 try_files $uri $uri/ /index.php?$args;를 통해서 index.php 파일을 불러 오는것과
php-handler를 통해서 PHP를 읽어오도록 만들어주면 됩니다.
# Default server configuration
#
upstream php-handler {
server 127.0.0.1:9000;
}
server {
client_max_body_size 128M;
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;
#root /var/www/html;
root /home/test/www;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
access_log /var/log/nginx/web.access.log;
error_log /var/log/nginx/web.error.log;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php?$args;
}
error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
fastcgi_pass php-handler;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_read_timeout 300;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
또한 이를 하기 위해서는 php-fpm설정역시 변경해야 합니다.
sudo vi /etc/php/8.0/fpm/pool.d/www.conf를 통해 설정을 일부 변경해야합니다.
변경 완료시 sudo systemctl restart php8.0-fpm.service로 서비스를 재실행합니다.
워드프레스 설치
최신버전 워드프레스 다운을 합니다.
wget https://wordpress.org/latest.zip
한글판은 아래 주소에서 받습니다.
wget https://ko.wordpress.org/latest-ko_KR.tar.gz
wget https://ko.wordpress.org/latest-ko_KR.tar.gz
unzip 설치
wordpress 압축 해제
unzip latest.zip
tar -xvzf latest-ko_KR.tar.gz
cp wordpress/ /var/www/html 또는
sudo mv wordpress /var/www/wordpress
이후 해당 폴더에 권한을 줘야지 업데이트가 가능합니다. 권한을 주지 않으면 아래처럼 수동으로 설정해야 합니다.
아래 명령어를 써줍니다.
sudo chown -R www-data:www-data /var/www/wordpress/
sudo chmod -R 755 /var/www/wordpress/
여기까지 와서 설치ip/wordpress누르면 아래처럼 wordpress 설치 화면이 나옵니다.
방화벽 이슈로 접근이 안된다면 아래와 같이 방화벽을 풀어줄 필요가 있습니다.
sudo iptables -F && sudo iptables -X && sudo netfilter-persistent save && sudo netfilter-persistent reload
이제 모두 완료되었습니다.