Deepin 20 удивляет, Fedora 33, Pop OS 20.10, Ubuntu Budgie, Studio 20.10 и другие дистрибутивы Linux
차례:
WordPress는 전 세계 웹 사이트의 4 분의 1 이상을 지원하는 가장 인기있는 오픈 소스 블로그 및 CMS 플랫폼입니다. PHP 및 MySQL을 기반으로하며 무료 및 프리미엄 플러그인 및 테마로 확장 할 수있는 많은 기능을 제공합니다. WordPress를 사용하면 전자 상거래 상점, 웹 사이트, 포트폴리오 또는 블로그를 쉽게 구축 할 수 있습니다.
이 튜토리얼에서는 Ubuntu 18.04 시스템에 WordPress를 설치하는 방법을 보여줍니다. 완료하는 데 10 분 미만이 걸리는 매우 간단한 프로세스입니다. 이 기사를 쓸 당시 최신 버전의 WordPress는 버전 5.0.2입니다.
우리는 Apache를 웹 서버, SSL 인증서, 최신 PHP 7.2 및 MySQL / MariaDB를 데이터베이스 서버로 사용하여 LAMP 스택을 사용할 것입니다.
전제 조건
이 학습을 계속하기 전에 다음 전제 조건이 충족되는지 확인하십시오.
- 도메인 이름이 서버 퍼블릭 IP를 가리 키도록하십시오.
example.com
사용합니다. sudo 권한이있는 사용자로 로그인합니다. 다음 지침에 따라 Apache를 설치합니다. 도메인에 SSL 인증서가 설치되어 있습니다. 다음 지침에 따라 무료 Let 's Encrypt SSL 인증서를 설치할 수 있습니다.
패키지 목록을 업데이트하고 설치된 패키지를 최신 버전으로 업그레이드하십시오.
sudo apt update
sudo apt upgrade
MySQL 데이터베이스 생성
WordPress는 MySQL 데이터베이스를 사용하여 게시물, 페이지, 사용자, 플러그인 및 테마 설정과 같은 모든 데이터를 저장합니다. 먼저 MySQL 데이터베이스, MySQL 사용자 계정을 생성하고 데이터베이스에 대한 액세스 권한을 부여합니다.
Ubuntu 서버에 MySQL 또는 MariaDB가 설치되어 있지 않은 경우 아래 가이드 중 하나를 수행하면됩니다.
다음 명령을 입력하여 MySQL 쉘에 로그인하십시오.
sudo mysql
MySQL 셸 내에서 다음 SQL 문을 실행하여 데이터베이스를 만듭니다.
CREATE DATABASE wordpress CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
다음으로 MySQL 사용자 계정을 생성하고 데이터베이스에 대한 액세스 권한을 부여하십시오.
GRANT ALL ON wordpress.* TO 'wordpressuser'@'localhost' IDENTIFIED BY 'change-with-strong-password';
마지막으로 다음을 입력하여 mysql 콘솔을 종료하십시오.
PHP 설치
Ubuntu 18.04의 기본 PHP 버전 인 PHP 7.2는 완전히 지원되며 WordPress에 권장됩니다.
PHP와 필요한 모든 PHP 확장을 설치하려면 다음 명령을 실행하십시오.
sudo apt install php7.2 php7.2-cli php7.2-mysql php7.2-json php7.2-opcache php7.2-mbstring php7.2-xml php7.2-gd php7.2-curl
새로 설치된 PHP 확장이로드되도록 아파치를 다시 시작하십시오.
sudo systemctl restart apache2
Wordpress 다운로드
워드 프레스 아카이브를 다운로드하기 전에 먼저 워드 프레스 파일을 저장할 디렉토리를 만드십시오:
sudo mkdir -p /var/www/example.com
다음 단계는 다음 wget 명령을 사용하여 WordPress 다운로드 페이지에서 최신 버전의 WordPress를 다운로드하는 것입니다.
cd /tmp
wget
다운로드가 완료되면 아카이브를 추출하고 추출 된 파일을 도메인의 문서 루트 디렉토리로 이동하십시오.
tar xf latest.tar.gz
sudo mv /tmp/wordpress/* /var/www/example.com/
다음 chown 명령을 사용하여 웹 서버가 사이트 파일 및 디렉토리에 완전히 액세스 할 수 있도록 올바른 권한을 설정하십시오.
sudo chown -R www-data: /var/www/example.com
아파치 설정
지금까지이 학습서의 전제 조건을 확인하지 않으면 시스템에 SSL 인증서가있는 Apache가 이미 설치되어 있어야합니다.
다음 단계는 WordPress 도메인의 Apache 가상 호스트 구성을 편집하는 것입니다.
sudo nano /etc/apache2/sites-available/example.com.conf
다음 Apache 구성은
http
를
https
,
www
를
www
가
non-www
도메인으로 리디렉션하고 HTTP2를 활성화합니다.
example.com
을 Wordpress 도메인으로 바꾸고 SSL 인증서 파일의 올바른 경로를 설정하는 것을 잊지 마십시오.
ServerName example.com ServerAlias www.example.com Redirect permanent / https://example.com/ ServerName example.com ServerAlias www.example.com Protocols h2 http:/1.1 Redirect permanent / https://example.com/ DirectoryIndex index.html index.php DocumentRoot /var/www/example.com ErrorLog ${APACHE_LOG_DIR}/example.com-error.log CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined SSLEngine On SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem Options FollowSymLinks AllowOverride All Require all granted
ServerName example.com ServerAlias www.example.com Redirect permanent / https://example.com/ ServerName example.com ServerAlias www.example.com Protocols h2 http:/1.1 Redirect permanent / https://example.com/ DirectoryIndex index.html index.php DocumentRoot /var/www/example.com ErrorLog ${APACHE_LOG_DIR}/example.com-error.log CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined SSLEngine On SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem Options FollowSymLinks AllowOverride All Require all granted
ServerName example.com ServerAlias www.example.com Redirect permanent / https://example.com/ ServerName example.com ServerAlias www.example.com Protocols h2 http:/1.1 Redirect permanent / https://example.com/ DirectoryIndex index.html index.php DocumentRoot /var/www/example.com ErrorLog ${APACHE_LOG_DIR}/example.com-error.log CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined SSLEngine On SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem Options FollowSymLinks AllowOverride All Require all granted
ServerName example.com ServerAlias www.example.com Redirect permanent / https://example.com/ ServerName example.com ServerAlias www.example.com Protocols h2 http:/1.1 Redirect permanent / https://example.com/ DirectoryIndex index.html index.php DocumentRoot /var/www/example.com ErrorLog ${APACHE_LOG_DIR}/example.com-error.log CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined SSLEngine On SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem Options FollowSymLinks AllowOverride All Require all granted
ServerName example.com ServerAlias www.example.com Redirect permanent / https://example.com/ ServerName example.com ServerAlias www.example.com Protocols h2 http:/1.1 Redirect permanent / https://example.com/ DirectoryIndex index.html index.php DocumentRoot /var/www/example.com ErrorLog ${APACHE_LOG_DIR}/example.com-error.log CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined SSLEngine On SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem Options FollowSymLinks AllowOverride All Require all granted
도메인에 가상 호스트를 활성화하십시오. 아래 명령은 사용
sites-available
sites-enabled
에서
sites-enabled
디렉토리로의 심볼릭 링크를 만듭니다.
sudo a2ensite example.com
새 구성을 적용하려면 다음을 입력하여 Apache 서비스를 다시 시작하십시오.
sudo systemctl restart apache2
워드 프레스 설치 완료
이제 Wordpress가 다운로드되고 서버 구성이 완료되었으므로 웹 인터페이스를 통해 WordPress 설치를 마무리해야합니다.
브라우저를 열고 도메인을 입력하면 다음과 유사한 화면이 나타납니다.
여기에서 새로운 테마 및 플러그인을 설치하여 WordPress 설치 사용자 정의를 시작할 수 있습니다.
결론
축하합니다. Ubuntu 18.04 서버에 Apache와 함께 WordPress를 성공적으로 설치했습니다. WordPress의 첫 단계는 WordPress를 시작하는 방법에 대한 자세한 정보를 제공하는 좋은 출발점입니다.
우분투 워드 프레스 mysql mariadb cms 아파치Ubuntu 18.04에서 Apache와 함께 Joomla를 설치하는 방법
Joomla는 수십만 개의 웹 사이트를 지원하는 가장 인기있는 오픈 소스 컨텐츠 관리 시스템 중 하나입니다. 이 튜토리얼에서는 우분투 18.04에 Joomla를 설치하는 방법을 설명합니다.
우분투 18.04에서 nginx와 함께 phpmyadmin을 설치하는 방법
phpMyAdmin은 웹 기반 인터페이스를 통해 MySQL 및 MariaDB 서버를 관리하기위한 오픈 소스 PHP 기반 도구입니다. 이 튜토리얼은 Ubuntu 18.04에서 Nginx와 함께 phpMyAdmin을 설치하는 방법을 설명합니다.
우분투 18.04에서 nginx로 wordpress를 설치하는 방법
이 튜토리얼에서는 Ubuntu 18.04 시스템에 WordPress를 설치하는 방법을 보여줍니다. 워드 프레스는 전 세계적으로 가장 인기있는 오픈 소스 블로그 및 CMS 플랫폼입니다.