Wordpress

WordPress 설치 – Ubuntu Linux

FavoriteLoadingAdd to favorites

Ubuntu Linux + WordPress 설치 팁입니다

단계 1

1. Linux 18.04 서버를 설치한다

SSH 서비스를 설치한다

(Openssh-Server 를 설치 후 SSH Port를 보안을 위해 변경한다)

2. 방화벽프로그램을 설치한다 (UFW 또는 Firewalld을 설치 및 설정한다)

3. 최신 버전으로 Ubuntu Linux 으로 업데이트 한다.

(apt-get update -y && apt-get upgrade -y)


단계 2

1. 웹서버를 설치한다 (Apache 또는 Nginx)

apt-get install apache2

apt-get install nginx

2. 재부팅 시 자동으로 실행될 수 있도록 설정한다

systemctl enable apache2

3. 실행상태를 확인한다

systemctl status apache2


단계 3

1. PHP 를 설치한다

apt install php php-curl php-gd php-mbstring php-xml php-xmlrpc php-soap php-intl php-zip

2. PHP 버전을 확인한다

php -v


단계 4

1. MySQL Database server를 설치한다

$ apt install mysql-server

2. MySQL 서버 기본설정을 한다

mysql_secure_installation

3. WordPress 에서 사용한 DB를 생성한다

Create a Database for WordPress

mysql -u root -p

CREATE DATABASE wordpress ;

GRANT ALL PRIVILEGES ON wordpress.* TO ‘admin_user’@’localhost’ IDENTIFIED BY ‘test’;
FLUSH PRIVILEGES;
exit;


단계 5

1. WordPress 를 다운받는다

cd /var/www/html
wget -c http://wordpress.org/latest.zip

2. 다운받은 파일의 압축을 해제한다

unzip latest.zip

3. 압축이 풀린 폴더/파일에 권한을 변경한다

chown -R www-data:www-data wordpress

3. WordPress 환경을 설정한다

cd /var/www/html/wordpress

mv wp-config-sample.php wp-config.php

vim wp-config.php

// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘wordpress’);

/** MySQL database username */
define(‘DB_USER’, ‘admin_user’);

/** MySQL database password */
define(‘DB_PASSWORD’, ‘StrongPassword’);

/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);

/** Database Charset to use in creating database tables. */
define(‘DB_CHARSET’, ‘utf8’);

/** The Database Collate type. Don’t change this if in doubt. */
define(‘DB_COLLATE’, ”);

Save and exit the file.


단계 6

1. 웹서버(apache/nginx 의 기본환경 파일을 설정한다

vim /etc/apache2/sites-available/domain.com.conf

ServerAdmin admin@your_domain.com
ServerName your_domain.com
ServerAlias www.your_domain.com
DocumentRoot /var/www/html/wordpress

ln -s /etc/apache2/sites-available/test.com.conf /etc/apache2/sites-enabled/test.com.conf


단계 7

1. WordPress 를 설정한다

2. 웹페이지에 접속한다 http://test.com/

3. 기본적인 정보를 입력 후 설치를 진핸한다

[출처] www.rosehosting.com  상세그림 포함 내용은 아래 정보를 참고하세요 연결 Click

How to Install WordPress with LAMP Stack on Ubuntu 18.04

error: Content is protected !!