Pre-Built Package를 이용하여 설치하는 경우

01. Install the prerequisites
sudo yum install yum-utils

02. Repository 생성
vi /etc/yum.repos.d/nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
03. Default로는 stable 버전으로 설정되어 있으나 mainline을 사용하고자 할 경우
sudo yum-config-manager --enable nginx-mainline

04. nginx 설치
sudo yum install nginx

소스코드로부터 설치하는 경우

01. Nginx 다운로드
wget https://nginx.org/download/nginx-1.14.2.tar.gz
02. 압축풀기
tar -xvf nginx-1.14.2.tar.gz
03. 의존성 라이브러리 설치
sudo yum -y install gcc gcc-c++ make zlib-devel pcre-devel openssl-devel

04. nginx 폴더 생성
mkdir nginx
mkdir log run sbin
05. Configuration Option 설정

./configure \
--user=nginx                          \
--group=nginx                         \
--prefix=$HOME/nginx                   \
--sbin-path=$HOME/nginx/sbin           \
--conf-path=$HOME/nginx/nginx.conf     \
--pid-path=$HOME/nginx/run/nginx.pid         \
--lock-path=$HOME/nginx/run/nginx.lock       \
--error-log-path=$HOME/nginx/log/error.log \
--http-log-path=$HOME/nginx/log/access.log \
--with-http_gzip_static_module        \
--with-http_stub_status_module        \
--with-http_ssl_module                \
--with-pcre                           \
--with-file-aio                       \
--with-http_realip_module             \
--without-http_scgi_module            \
--without-http_uwsgi_module           \
--without-http_fastcgi_module

06. Compile the nginx source

make
make install
07. nginx configuration 변경
기본적으로 80 포트는 root 계정으로 실행해야 하므로 nginx.conf 파일에서 listen 8080으로 변경.
vi nginx.conf
08. nginx oepration shell script 생성
[nginx 시작]
vi start.sh
#!/bin/bash
./sbin/nginx
[nginx 종료]
vi stop.sh
#!/bin/bash
./sbin/nginx -s stop

[nginx 재시작]
vi restart.sh
#!/bin/bash
./sbin/nginx -s reload

[nginx 설정 파일 확인]
vi check.sh
#!/bin/bash
./sbin/nginx -t

09. 확인
시작 : sh start.sh &
브라우저에서 localhost:8080 호출하여 [Welcome to nginx!] 내용 확인
종료 : sh stop.sh

받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/833

kong API Gateway 설치

Articles 2019/03/04 14:40 용비

<CentOS 7에 PostgreSQL 설치 (10버전)>

https://www.postgresql.org/download/linux/redhat/ 참고

1. RPM Repository 설치

yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm

2. 설치 가능한 패키지 검색

yum list postgres*

3. packages 설치

yum install postgresql10-server postgresql10

4. Database 초기화

/usr/pgsql-10/bin/postgresql-10-setup initdb

5. 부팅 시 자동 시작 등록

systemctl enable postgresql-10

6. Database 서버 시작

systemctl start postgresql-10

7. 설정 파일 수정

vi /var/lib/pgsql/10/data/postgresql.conf

listen_addresses = '*'          # what IP address(es) to listen on;

vi /var/lib/pgsql/10/data/pg_hba.conf

# IPv4 local connections:

 host    all             all             127.0.0.1/32            trust

8. Database 서버 재시작

systemctl restart postgresql-10

<설치한 PostgresSQL 10 Database에 kong 계정 설정>

1. PostgreSQL 로그인

su - postgres

2. SQL Client 실행

bash-4.2 $ psql

3. User 생성 SQL 입력

CREATE USER kong;

4. Database 생성 SQL 입력

CREATE DATABASE kong owner kong;

5. 권한 부여

grant all privileges on database kong to kong;

6. SQL Client - psql 종료

\q

7. PostgreSQL 로그아웃

exit

8. PostgreSQL 버전 확인

/usr/pgsql-10/bin/postgres --version

<kong Gateway 설치>

1. Package 다운로드 및 파일 이름 변경

wget https://bintray.com/kong/kong-community-edition-rpm/download_file?file_path=centos/7/kong-community-edition-1.0.3.el7.noarch.rpm

mv download_file\?file_path\=centos%2F7%2Fkong-community-edition-1.0.3.el7.noarch.rpm kong-community-edition-1.0.3.el7.noarch.rpm

2. CentOS Repository 다운로드 및 이동

wget https://bintray.com/kong/kong-community-edition-rpm/rpm -O bintray-kong-kong-community-edition-rpm.repo

mv bintray-kong-kong-community-edition-rpm.repo /etc/yum.repos.d/

3. Repository 파일 수정

vi /etc/yum.repos.d/bintray-kong-kong-community-edition-rpm.repo

baseurl을 다음과 같이 수정

baseurl=https://kong.bintray.com/kong-community-edition-rpm

-> baseurl=https://kong.bintray.com/kong-community-edition-rpm/centos/7

4. Package 설치

yum install epel-release

yum install kong-community-edition-1.0.3.*.noarch.rpm --nogpgcheck

5. 설치된 kong 버전 확인

kong version

6. kong 설정 파일 복사

cp /etc/kong/kong.conf.default /etc/kong/kong.conf

7. Database Migration

kong migrations bootstrap

8. kong 시작

kong start

9. kong 확인

curl -i http://localhost:8001/

받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/832

CentOS 7.6.1810을 Desktop으로 설치했을 경우,
게스트 확장 이미지를 설치하기 위해서는 추가로 다음 패키지들을 설치해 주어야 한다.

sudo yum install kernel kernel-devel kernel-headers gcc make -y

이후 커널을 반영하기 위해서 재부팅하고 게스트 확장 이미지를 설치하고 다시 재부팅한다.
TAG
받은 트랙백이 없고, 댓글이 없습니다.

댓글+트랙백 RSS :: http://www.yongbi.net/rss/response/830