https://github.com/sissbruecker/linkding
github 저장소에 북마크 오픈소스 받아오기
<세팅>
OS: Centos
node.js 12
php 7.3
docker
<필수 설치 패키지>
yum update yum install mysql* git autoconf perl wget unzip gettext gd gd-devel automake glibc curl gcc gcc-c++ make sshd openssl-devel
yum install epel-release yum group install "development tools"
<node.js 12 설치>
<Centos 7> curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash - sudo yum clean all && sudo yum makecache fast sudo yum install -y nodejs
<Centos 8> dnf module enable nodejs:12 dnf install nodejs
<php 7.3 설치>
<Centos 7> yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum -y yum-utils yum-config-manager --disable remi-php54 yum-config-manager --enable remi-php73 yum -y install php php-cli php-fpm php-mysqlnd php-zip php-devel php-gd php-mcrypt php-mbstring php-curl php-xml php-pear php-bcmath php-json
<Centos 8> dnf module reset php dnf module enable php:7.3 -y dnf module -y update php:7.3 dnf install nginx php php-cli php-fpm php-json php-intl php-mbstring php-pdo php-xml php-gd php-mysqlnd php-zip php-pear php-gmp
<서비스 설정>
//웹 활성화 systemctl restart httpd systemctl enable httpd //방화벽 종료 systemctl disable firewalld systemctl stop firewalld
<docker 설치>
<Centos 7> yum install yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install docker-ce systemctl start docker systemctl enable docker
<Centos 8> yum install yum-utils yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum-config-manager --enable docker-ce-nightly yum-config-manager --enable docker-ce-test yum install docker-ce docker-ce-cli containerd.io --allowerasing systemctl start docker systemctl enable docker
<linkding 구성하기>
docker run --name linkding -p 9090:9090 -d sissbruecker/linkding:latest
http://localhost:9090 접속
<docker 프로세서 확인>
docker ps -a
'OS > Linux' 카테고리의 다른 글
Redmine 재시작 (0) | 2021.10.18 |
---|---|
[Nagios core] NCPA 플러그인 설치 (0) | 2021.08.24 |
[Centos 8] Nagios Core - Windows 설정 (0) | 2021.06.02 |
[Centos] Bookmark manager 구축 하기 (0) | 2021.06.02 |
[Centos 8] Nagios Core - 슬랙 연동 (0) | 2021.04.20 |