본문 바로가기

digitalocean

(4)
[Digitalocean] 4. 워드프레스 설치하기 1. putty접속 2. wordpress 를 내려받을 임의의 directory 생성sudo권한으로 test라는 directory를 생성한다. $ sudo mkdir test 3. directory안에 wordpress 다운로드하기 1) wordpress 홈페이지(https://ko.wordpress.org/download/) 에서 다운로드 링크 복사 2) wordpress를 내려받을 directory로 이동한 후 다운로드 $ cd test $ sudo wget https://ko.wordpress.org/latest-ko_KR.zip 3) $ ll 명령으로 워드프레스가 정상적으로 다운로드 되었는지 확인 4) -rw-r--r-- 1 root root 11987361 Jan 10 10:00 latest-k..
[Digitalocean] 3. How To Install WordPress with LAMP on Ubuntu 18.04 Introduction WordPress is the most popular CMS (content management system) on the internet. It allows you to easily set up flexible blogs and websites on top of a MySQL backend with PHP processing. WordPress has seen incredible adoption and is a great choice for getting a website up and running quickly. After setup, almost all administration can be done through the web frontend. In this guide, w..
[Digitalocean] 2. To Install LAMP stack on Ubuntu 18.04 Step 1 — Installing Apache The Apache web server is among the most popular web servers in the world. It's well-documented and has been in wide use for much of the history of the web, which makes it a great default choice for hosting a website. Install Apache using Ubuntu's package manager, apt: # sudo apt update # sudo apt install apache2 Since this is a sudo command, these operations are execut..
[Digitalocean] 1. Initial Server Setup with Ubuntu 18.04 Digital Ocean 가입 후 개인 신용카드 정보 등록, droplets에서 서버만들기 가상 서버 호스팅(VPS) : 물리적인 서버를 가상화하여 각각의 가상 서버를 사용자에게 제공하는 방식으로, 물리 서버 한 대에 여러 개의 가상 서버를 입주가능 (ex.Digital Ocean (월 5$)) Step 1 — Logging in as Root root로 로그인 후 메일로 받은 임시 비밀번호로 계정 비밀번호 변경 Step 2 — Creating a New User Once you are logged in as root, we're prepared to add the new user account that we will use to log in from now on. This example creates ..