리자

클라우드 서버에 그누보드5 빠르게 설치하기. GNUBOARD5 PHP VERSION

 

웹호스팅에서는 서비스 신청후 바로 서비스를 이용하지 못하는 경우가 있는데 클라우드 서비스를 이용하면 서버를 바로 만들고 웹사이트를 바로 이용할 수 있습니다.


이번에는 그누보드5 PHP 버전을 MYSQL, NGINX, PHP-FPM 조합으로 사용하는 방법에 대해 알아보고자 합니다.

 

설치 순서

 

1. 클라우드 서버 생성
    AWS Lightsail 서비스에서 ubuntu 22.04 인스턴스 생성

 

2. 서버 접속
    ssh -i pem파일 ubuntu@서버IP

 

3. 그누보드5 복제
    git clone https://github.com/gnuboard/gnuboard5.git

 

4. DB 서버 설치
    sudo apt update
    sudo apt install mysql-server
    sudo systemctl status mysql

 

5. mysql db, user 생성
    sudo mysql -uroot

 

    # mydatabase, myuser, mypassword는 상황에 맞게 수정하세요
    CREATE DATABASE mydatabase;
    CREATE USER 'myuser'@'localhost' IDENTIFIED BY 'mypassword';
    GRANT ALL PRIVILEGES ON mydatabase.* TO 'myuser'@'localhost';


    FLUSH PRIVILEGES;

 

6. 웹서버 설치
    sudo apt install nginx
    sudo systemctl status nginx

 

7. PHP 설치
    sudo apt install php8.1-fpm
    sudo systemctl status php8.1-fpm

 

8. 웹서버 설정
    sudo vi /etc/nginx/sites-enabled/default
    
    server {
        listen 80 default_server;
        listen [::]:80 default_server;
        root /home/ubuntu/gnuboard5;
        index index.html index.htm index.nginx-debian.html index.php;
        server_name _;
        location / {
                try_files $uri $uri/ =404;
        }
        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/run/php/php8.1-fpm.sock;
        }
    }

 

    sudo systemctl restart nginx


9. 퍼미션 설정, 디렉토리 생성

    sudo chmod 701 /home/ubuntu

    mkdir /home/ubuntu/gnuboard5/data
    chmod 707 /home/ubuntu/gnuboard5/data

 

10. php 필수 모듈 설치
    sudo apt install php-gd php-mysql
    sudo systemctl restart nginx

 

11. 그누보드5 설치 
    http://서버IP

 

=끝=

 

그누보드 커뮤니티
https://sir.kr

|

댓글 1개

감사합니다 ^^

댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
1년 전 조회 1,387
1년 전 조회 1,384
2년 전 조회 2,027
2년 전 조회 1,547
2년 전 조회 1,543
2년 전 조회 3,483
2년 전 조회 2,573
2년 전 조회 1,935
2년 전 조회 2,022
2년 전 조회 1,668
2년 전 조회 2,311
2년 전 조회 1,283
2년 전 조회 1,640
2년 전 조회 1,136
2년 전 조회 3,634
2년 전 조회 1,803
2년 전 조회 1,964
2년 전 조회 1,319
2년 전 조회 1,852
2년 전 조회 1,769
2년 전 조회 2,361
2년 전 조회 1,778
2년 전 조회 1,218
2년 전 조회 2,081
2년 전 조회 1,535
2년 전 조회 1,423
2년 전 조회 2,356
2년 전 조회 1,834
2년 전 조회 2,332
2년 전 조회 1,459