Amazon Linux2에 GiitBucket을 서비스로 등록(Systemd Unit)
11823 단어 GitBucketAmazonLinux2systemd
What's?
표제와 같다.Amazon Linux2에 GiitBucket을 systemd 유닛으로 등록해서 사용하고 싶어서요.
기본적인 단계는 이쪽의 위키를 참조한다.
컨디션
이번 환경은 여기 있습니다.$ cat /etc/os-release
NAME="Amazon Linux"
VERSION="2"
ID="amzn"
ID_LIKE="centos rhel fedora"
VERSION_ID="2"
PRETTY_NAME="Amazon Linux 2"
ANSI_COLOR="0;33"
CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2"
HOME_URL="https://amazonlinux.com/"
$ uname -srvmpio
Linux 4.14.256-197.484.amzn2.x86_64 #1 SMP Tue Nov 30 00:17:50 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Java8 설치
GiitBucket은 Java8에서 실행됩니다.
GitBucket requires Java8. You have to install it, if it is not already installed.
Amazon Linux2 선택 사항이 yum
에 설치될 수 있는지 여부$ yum search java-1.8.0-openjdk
読み込んだプラグイン:langpacks, priorities, update-motd
====================================================================== N/S matched: java-1.8.0-openjdk =======================================================================
java-1.8.0-openjdk.x86_64 : OpenJDK 8 Runtime Environment
java-1.8.0-openjdk-accessibility.x86_64 : OpenJDK accessibility connector
java-1.8.0-openjdk-accessibility-debug.x86_64 : OpenJDK 8 accessibility connector for packages with debugging on and no optimisation
java-1.8.0-openjdk-debug.x86_64 : OpenJDK 8 Runtime Environment unoptimised with full debugging on
java-1.8.0-openjdk-demo.x86_64 : OpenJDK 8 Demos
java-1.8.0-openjdk-demo-debug.x86_64 : OpenJDK 8 Demos unoptimised with full debugging on
java-1.8.0-openjdk-devel.x86_64 : OpenJDK 8 Development Environment
java-1.8.0-openjdk-devel-debug.x86_64 : OpenJDK 8 Development Environment unoptimised with full debugging on
java-1.8.0-openjdk-headless.x86_64 : OpenJDK 8 Headless Runtime Environment
java-1.8.0-openjdk-headless-debug.x86_64 : OpenJDK 8 Runtime Environment unoptimised with full debugging on
java-1.8.0-openjdk-javadoc.noarch : OpenJDK 8 API documentation
java-1.8.0-openjdk-javadoc-debug.noarch : OpenJDK 8 API documentation for packages with debugging on and no optimisation
java-1.8.0-openjdk-javadoc-zip.noarch : OpenJDK 8 API documentation compressed in a single archive
java-1.8.0-openjdk-javadoc-zip-debug.noarch : OpenJDK 8 API documentation compressed in a single archive for packages with debugging on and no optimisation
java-1.8.0-openjdk-src.x86_64 : OpenJDK 8 Source Bundle
java-1.8.0-openjdk-src-debug.x86_64 : OpenJDK 8 Source Bundle for packages with debugging on and no optimisation
Name and summary matches only, use "search all" for everything.
amazon-linux-extras
설치된 Amazon Corretto.$ amazon-linux-extras list | grep corretto -A 2
27 corretto8 available \
[ =1.8.0_192 =1.8.0_202 =1.8.0_212 =1.8.0_222 =1.8.0_232
=1.8.0_242 =stable ]
이번에는 Amazon Corretto를 사용하기로 했습니다.$ sudo amazon-linux-extras install corretto8
버전$ java -version
openjdk version "1.8.0_312"
OpenJDK Runtime Environment Corretto-8.312.07.2 (build 1.8.0_312-b07)
OpenJDK 64-Bit Server VM Corretto-8.312.07.2 (build 25.312-b07, mixed mode)
이상 11 이후 Amazon Correttoyum
를 설치할 수 있습니다.$ yum search corretto
読み込んだプラグイン:langpacks, priorities, update-motd
=========================================================================== N/S matched: corretto ============================================================================
java-11-amazon-corretto.x86_64 : Amazon Corretto development environment
java-11-amazon-corretto-headless.x86_64 : Amazon Corretto headless development environment
java-11-amazon-corretto-javadoc.x86_64 : Amazon Corretto 11 API documentation
java-17-amazon-corretto.x86_64 : Amazon Corretto development environment
java-17-amazon-corretto-devel.x86_64 : Amazon Corretto 17 development tools
java-17-amazon-corretto-headless.x86_64 : Amazon Corretto headless development environment
java-17-amazon-corretto-javadoc.x86_64 : Amazon Corretto 17 API documentation
java-17-amazon-corretto-jmods.x86_64 : Amazon Corretto 17 jmods
Name and summary matches only, use "search all" for everything.
시스템d의 단위로 등록할 GiitBucket 설치
그러면 이쪽을 참조하면서 GiitBucket을 설치하여 시스템d의 단원으로 등록합니다.
GiitBucket의 설치 위치는 /opt/gitbucket
입니다.$ sudo mkdir /opt/gitbucket
$ cd /opt/gitbucket
그룹 및 사용자를 작성합니다.로그인할 수 없는 사용자는 홈 디렉토리를 /opt/gitbucket
로 조정합니다.$ sudo groupadd -g 555 gitbucket
$ sudo useradd \
-g gitbucket --no-user-group \
--home-dir /opt/gitbucket --no-create-home \
--shell /usr/sbin/nologin \
--system --uid 555 gitbucket
GiitBucket 다운로드$ sudo curl -LO https://github.com/gitbucket/gitbucket/releases/download/4.37.2/gitbucket.war
수정/opt/gitbucket
의 소유자입니다.$ sudo chown -R gitbucket:gitbucket /opt/gitbucket
시스템의 단원 정의 파일을 만듭니다.
/etc/systemd/system/gitbucket.service[Unit]
Description=GitBucket is a Git web platform powered by Scala offering
Documentation=https://github.com/gitbucket/gitbucket/wiki
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/java -jar /opt/gitbucket/gitbucket.war
User=gitbucket
[Install]
WantedBy=multi-user.target
daemon-reload
자동 부팅 설정$ sudo systemctl daemon-reload
$ sudo systemctl enable gitbucket.service
시동을 걸다.$ sudo systemctl start gitbucket.service
status
에서 확인했습니다.$ sudo systemctl status gitbucket.service
● gitbucket.service - GitBucket is a Git web platform powered by Scala offering
Loaded: loaded (/etc/systemd/system/gitbucket.service; enabled; vendor preset: disabled)
Active: active (running) since 火 2022-01-18 11:44:35 UTC; 6s ago
Docs: https://github.com/gitbucket/gitbucket/wiki
Main PID: 9152 (java)
CGroup: /system.slice/gitbucket.service
└─9152 /usr/bin/java -jar /opt/gitbucket/gitbucket.war
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.683:INFO:oejs.session:main: DefaultSessionIdManager workerName=node0
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.690:INFO:oejs.session:main: No SessionScavenger set, using defaults
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.692:INFO:oejs.session:main: node0 Scavenging every 660000ms
1月 18 11:44:38 localhost java[9152]: 11:44:38.312 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
1月 18 11:44:38 localhost java[9152]: 11:44:38.608 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
1月 18 11:44:38 localhost java[9152]: 11:44:38.627 [main] WARN slick.util.AsyncExecutor - Having maxConnection > maxThreads can result in deadlocks if transa...s are used.
1月 18 11:44:38 localhost java[9152]: 11:44:38.648 [main] INFO g.core.servlet.InitializeListener - Check version
1月 18 11:44:38 localhost java[9152]: 11:44:38.648 [main] INFO g.core.servlet.InitializeListener - Start schema update
1月 18 11:44:39 localhost java[9152]: 11:44:39.895 [main] INFO l.servicelocator.ServiceLocator - Can not use class liquibase.parser.core.yaml.YamlChangeLogPa...e classpath
1月 18 11:44:39 localhost java[9152]: 11:44:39.896 [main] INFO l.servicelocator.ServiceLocator - Can not use class liquibase.parser.core.json.JsonChangeLogPa...e classpath
Hint: Some lines were ellipsized, use -l to show in full.
일지는 여기를 참조하시오.$ sudo journalctl -u gitbucket.service -f
방문http://[GitBucketが動作しているホスト]:8080
.
사용자 ID와 암호는 모두 root
입니다.
이렇게 되면 GiitBucket을 systemd 유닛으로 로그인하면서 동시에 활용할 수 있다.
Reference
이 문제에 관하여(Amazon Linux2에 GiitBucket을 서비스로 등록(Systemd Unit)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/charon/items/2341f5ea58845313953f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
이번 환경은 여기 있습니다.
$ cat /etc/os-release
NAME="Amazon Linux"
VERSION="2"
ID="amzn"
ID_LIKE="centos rhel fedora"
VERSION_ID="2"
PRETTY_NAME="Amazon Linux 2"
ANSI_COLOR="0;33"
CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2"
HOME_URL="https://amazonlinux.com/"
$ uname -srvmpio
Linux 4.14.256-197.484.amzn2.x86_64 #1 SMP Tue Nov 30 00:17:50 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Java8 설치
GiitBucket은 Java8에서 실행됩니다.
GitBucket requires Java8. You have to install it, if it is not already installed.
Amazon Linux2 선택 사항이 yum
에 설치될 수 있는지 여부$ yum search java-1.8.0-openjdk
読み込んだプラグイン:langpacks, priorities, update-motd
====================================================================== N/S matched: java-1.8.0-openjdk =======================================================================
java-1.8.0-openjdk.x86_64 : OpenJDK 8 Runtime Environment
java-1.8.0-openjdk-accessibility.x86_64 : OpenJDK accessibility connector
java-1.8.0-openjdk-accessibility-debug.x86_64 : OpenJDK 8 accessibility connector for packages with debugging on and no optimisation
java-1.8.0-openjdk-debug.x86_64 : OpenJDK 8 Runtime Environment unoptimised with full debugging on
java-1.8.0-openjdk-demo.x86_64 : OpenJDK 8 Demos
java-1.8.0-openjdk-demo-debug.x86_64 : OpenJDK 8 Demos unoptimised with full debugging on
java-1.8.0-openjdk-devel.x86_64 : OpenJDK 8 Development Environment
java-1.8.0-openjdk-devel-debug.x86_64 : OpenJDK 8 Development Environment unoptimised with full debugging on
java-1.8.0-openjdk-headless.x86_64 : OpenJDK 8 Headless Runtime Environment
java-1.8.0-openjdk-headless-debug.x86_64 : OpenJDK 8 Runtime Environment unoptimised with full debugging on
java-1.8.0-openjdk-javadoc.noarch : OpenJDK 8 API documentation
java-1.8.0-openjdk-javadoc-debug.noarch : OpenJDK 8 API documentation for packages with debugging on and no optimisation
java-1.8.0-openjdk-javadoc-zip.noarch : OpenJDK 8 API documentation compressed in a single archive
java-1.8.0-openjdk-javadoc-zip-debug.noarch : OpenJDK 8 API documentation compressed in a single archive for packages with debugging on and no optimisation
java-1.8.0-openjdk-src.x86_64 : OpenJDK 8 Source Bundle
java-1.8.0-openjdk-src-debug.x86_64 : OpenJDK 8 Source Bundle for packages with debugging on and no optimisation
Name and summary matches only, use "search all" for everything.
amazon-linux-extras
설치된 Amazon Corretto.$ amazon-linux-extras list | grep corretto -A 2
27 corretto8 available \
[ =1.8.0_192 =1.8.0_202 =1.8.0_212 =1.8.0_222 =1.8.0_232
=1.8.0_242 =stable ]
이번에는 Amazon Corretto를 사용하기로 했습니다.$ sudo amazon-linux-extras install corretto8
버전$ java -version
openjdk version "1.8.0_312"
OpenJDK Runtime Environment Corretto-8.312.07.2 (build 1.8.0_312-b07)
OpenJDK 64-Bit Server VM Corretto-8.312.07.2 (build 25.312-b07, mixed mode)
이상 11 이후 Amazon Correttoyum
를 설치할 수 있습니다.$ yum search corretto
読み込んだプラグイン:langpacks, priorities, update-motd
=========================================================================== N/S matched: corretto ============================================================================
java-11-amazon-corretto.x86_64 : Amazon Corretto development environment
java-11-amazon-corretto-headless.x86_64 : Amazon Corretto headless development environment
java-11-amazon-corretto-javadoc.x86_64 : Amazon Corretto 11 API documentation
java-17-amazon-corretto.x86_64 : Amazon Corretto development environment
java-17-amazon-corretto-devel.x86_64 : Amazon Corretto 17 development tools
java-17-amazon-corretto-headless.x86_64 : Amazon Corretto headless development environment
java-17-amazon-corretto-javadoc.x86_64 : Amazon Corretto 17 API documentation
java-17-amazon-corretto-jmods.x86_64 : Amazon Corretto 17 jmods
Name and summary matches only, use "search all" for everything.
시스템d의 단위로 등록할 GiitBucket 설치
그러면 이쪽을 참조하면서 GiitBucket을 설치하여 시스템d의 단원으로 등록합니다.
GiitBucket의 설치 위치는 /opt/gitbucket
입니다.$ sudo mkdir /opt/gitbucket
$ cd /opt/gitbucket
그룹 및 사용자를 작성합니다.로그인할 수 없는 사용자는 홈 디렉토리를 /opt/gitbucket
로 조정합니다.$ sudo groupadd -g 555 gitbucket
$ sudo useradd \
-g gitbucket --no-user-group \
--home-dir /opt/gitbucket --no-create-home \
--shell /usr/sbin/nologin \
--system --uid 555 gitbucket
GiitBucket 다운로드$ sudo curl -LO https://github.com/gitbucket/gitbucket/releases/download/4.37.2/gitbucket.war
수정/opt/gitbucket
의 소유자입니다.$ sudo chown -R gitbucket:gitbucket /opt/gitbucket
시스템의 단원 정의 파일을 만듭니다.
/etc/systemd/system/gitbucket.service[Unit]
Description=GitBucket is a Git web platform powered by Scala offering
Documentation=https://github.com/gitbucket/gitbucket/wiki
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/java -jar /opt/gitbucket/gitbucket.war
User=gitbucket
[Install]
WantedBy=multi-user.target
daemon-reload
자동 부팅 설정$ sudo systemctl daemon-reload
$ sudo systemctl enable gitbucket.service
시동을 걸다.$ sudo systemctl start gitbucket.service
status
에서 확인했습니다.$ sudo systemctl status gitbucket.service
● gitbucket.service - GitBucket is a Git web platform powered by Scala offering
Loaded: loaded (/etc/systemd/system/gitbucket.service; enabled; vendor preset: disabled)
Active: active (running) since 火 2022-01-18 11:44:35 UTC; 6s ago
Docs: https://github.com/gitbucket/gitbucket/wiki
Main PID: 9152 (java)
CGroup: /system.slice/gitbucket.service
└─9152 /usr/bin/java -jar /opt/gitbucket/gitbucket.war
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.683:INFO:oejs.session:main: DefaultSessionIdManager workerName=node0
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.690:INFO:oejs.session:main: No SessionScavenger set, using defaults
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.692:INFO:oejs.session:main: node0 Scavenging every 660000ms
1月 18 11:44:38 localhost java[9152]: 11:44:38.312 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
1月 18 11:44:38 localhost java[9152]: 11:44:38.608 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
1月 18 11:44:38 localhost java[9152]: 11:44:38.627 [main] WARN slick.util.AsyncExecutor - Having maxConnection > maxThreads can result in deadlocks if transa...s are used.
1月 18 11:44:38 localhost java[9152]: 11:44:38.648 [main] INFO g.core.servlet.InitializeListener - Check version
1月 18 11:44:38 localhost java[9152]: 11:44:38.648 [main] INFO g.core.servlet.InitializeListener - Start schema update
1月 18 11:44:39 localhost java[9152]: 11:44:39.895 [main] INFO l.servicelocator.ServiceLocator - Can not use class liquibase.parser.core.yaml.YamlChangeLogPa...e classpath
1月 18 11:44:39 localhost java[9152]: 11:44:39.896 [main] INFO l.servicelocator.ServiceLocator - Can not use class liquibase.parser.core.json.JsonChangeLogPa...e classpath
Hint: Some lines were ellipsized, use -l to show in full.
일지는 여기를 참조하시오.$ sudo journalctl -u gitbucket.service -f
방문http://[GitBucketが動作しているホスト]:8080
.
사용자 ID와 암호는 모두 root
입니다.
이렇게 되면 GiitBucket을 systemd 유닛으로 로그인하면서 동시에 활용할 수 있다.
Reference
이 문제에 관하여(Amazon Linux2에 GiitBucket을 서비스로 등록(Systemd Unit)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/charon/items/2341f5ea58845313953f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ yum search java-1.8.0-openjdk
読み込んだプラグイン:langpacks, priorities, update-motd
====================================================================== N/S matched: java-1.8.0-openjdk =======================================================================
java-1.8.0-openjdk.x86_64 : OpenJDK 8 Runtime Environment
java-1.8.0-openjdk-accessibility.x86_64 : OpenJDK accessibility connector
java-1.8.0-openjdk-accessibility-debug.x86_64 : OpenJDK 8 accessibility connector for packages with debugging on and no optimisation
java-1.8.0-openjdk-debug.x86_64 : OpenJDK 8 Runtime Environment unoptimised with full debugging on
java-1.8.0-openjdk-demo.x86_64 : OpenJDK 8 Demos
java-1.8.0-openjdk-demo-debug.x86_64 : OpenJDK 8 Demos unoptimised with full debugging on
java-1.8.0-openjdk-devel.x86_64 : OpenJDK 8 Development Environment
java-1.8.0-openjdk-devel-debug.x86_64 : OpenJDK 8 Development Environment unoptimised with full debugging on
java-1.8.0-openjdk-headless.x86_64 : OpenJDK 8 Headless Runtime Environment
java-1.8.0-openjdk-headless-debug.x86_64 : OpenJDK 8 Runtime Environment unoptimised with full debugging on
java-1.8.0-openjdk-javadoc.noarch : OpenJDK 8 API documentation
java-1.8.0-openjdk-javadoc-debug.noarch : OpenJDK 8 API documentation for packages with debugging on and no optimisation
java-1.8.0-openjdk-javadoc-zip.noarch : OpenJDK 8 API documentation compressed in a single archive
java-1.8.0-openjdk-javadoc-zip-debug.noarch : OpenJDK 8 API documentation compressed in a single archive for packages with debugging on and no optimisation
java-1.8.0-openjdk-src.x86_64 : OpenJDK 8 Source Bundle
java-1.8.0-openjdk-src-debug.x86_64 : OpenJDK 8 Source Bundle for packages with debugging on and no optimisation
Name and summary matches only, use "search all" for everything.
$ amazon-linux-extras list | grep corretto -A 2
27 corretto8 available \
[ =1.8.0_192 =1.8.0_202 =1.8.0_212 =1.8.0_222 =1.8.0_232
=1.8.0_242 =stable ]
$ sudo amazon-linux-extras install corretto8
$ java -version
openjdk version "1.8.0_312"
OpenJDK Runtime Environment Corretto-8.312.07.2 (build 1.8.0_312-b07)
OpenJDK 64-Bit Server VM Corretto-8.312.07.2 (build 25.312-b07, mixed mode)
$ yum search corretto
読み込んだプラグイン:langpacks, priorities, update-motd
=========================================================================== N/S matched: corretto ============================================================================
java-11-amazon-corretto.x86_64 : Amazon Corretto development environment
java-11-amazon-corretto-headless.x86_64 : Amazon Corretto headless development environment
java-11-amazon-corretto-javadoc.x86_64 : Amazon Corretto 11 API documentation
java-17-amazon-corretto.x86_64 : Amazon Corretto development environment
java-17-amazon-corretto-devel.x86_64 : Amazon Corretto 17 development tools
java-17-amazon-corretto-headless.x86_64 : Amazon Corretto headless development environment
java-17-amazon-corretto-javadoc.x86_64 : Amazon Corretto 17 API documentation
java-17-amazon-corretto-jmods.x86_64 : Amazon Corretto 17 jmods
Name and summary matches only, use "search all" for everything.
그러면 이쪽을 참조하면서 GiitBucket을 설치하여 시스템d의 단원으로 등록합니다.
GiitBucket의 설치 위치는
/opt/gitbucket
입니다.$ sudo mkdir /opt/gitbucket
$ cd /opt/gitbucket
그룹 및 사용자를 작성합니다.로그인할 수 없는 사용자는 홈 디렉토리를 /opt/gitbucket
로 조정합니다.$ sudo groupadd -g 555 gitbucket
$ sudo useradd \
-g gitbucket --no-user-group \
--home-dir /opt/gitbucket --no-create-home \
--shell /usr/sbin/nologin \
--system --uid 555 gitbucket
GiitBucket 다운로드$ sudo curl -LO https://github.com/gitbucket/gitbucket/releases/download/4.37.2/gitbucket.war
수정/opt/gitbucket
의 소유자입니다.$ sudo chown -R gitbucket:gitbucket /opt/gitbucket
시스템의 단원 정의 파일을 만듭니다./etc/systemd/system/gitbucket.service
[Unit]
Description=GitBucket is a Git web platform powered by Scala offering
Documentation=https://github.com/gitbucket/gitbucket/wiki
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/java -jar /opt/gitbucket/gitbucket.war
User=gitbucket
[Install]
WantedBy=multi-user.target
daemon-reload
자동 부팅 설정$ sudo systemctl daemon-reload
$ sudo systemctl enable gitbucket.service
시동을 걸다.$ sudo systemctl start gitbucket.service
status
에서 확인했습니다.$ sudo systemctl status gitbucket.service
● gitbucket.service - GitBucket is a Git web platform powered by Scala offering
Loaded: loaded (/etc/systemd/system/gitbucket.service; enabled; vendor preset: disabled)
Active: active (running) since 火 2022-01-18 11:44:35 UTC; 6s ago
Docs: https://github.com/gitbucket/gitbucket/wiki
Main PID: 9152 (java)
CGroup: /system.slice/gitbucket.service
└─9152 /usr/bin/java -jar /opt/gitbucket/gitbucket.war
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.683:INFO:oejs.session:main: DefaultSessionIdManager workerName=node0
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.690:INFO:oejs.session:main: No SessionScavenger set, using defaults
1月 18 11:44:37 localhost java[9152]: 2022-01-18 11:44:37.692:INFO:oejs.session:main: node0 Scavenging every 660000ms
1月 18 11:44:38 localhost java[9152]: 11:44:38.312 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
1月 18 11:44:38 localhost java[9152]: 11:44:38.608 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
1月 18 11:44:38 localhost java[9152]: 11:44:38.627 [main] WARN slick.util.AsyncExecutor - Having maxConnection > maxThreads can result in deadlocks if transa...s are used.
1月 18 11:44:38 localhost java[9152]: 11:44:38.648 [main] INFO g.core.servlet.InitializeListener - Check version
1月 18 11:44:38 localhost java[9152]: 11:44:38.648 [main] INFO g.core.servlet.InitializeListener - Start schema update
1月 18 11:44:39 localhost java[9152]: 11:44:39.895 [main] INFO l.servicelocator.ServiceLocator - Can not use class liquibase.parser.core.yaml.YamlChangeLogPa...e classpath
1月 18 11:44:39 localhost java[9152]: 11:44:39.896 [main] INFO l.servicelocator.ServiceLocator - Can not use class liquibase.parser.core.json.JsonChangeLogPa...e classpath
Hint: Some lines were ellipsized, use -l to show in full.
일지는 여기를 참조하시오.$ sudo journalctl -u gitbucket.service -f
방문http://[GitBucketが動作しているホスト]:8080
.사용자 ID와 암호는 모두
root
입니다.이렇게 되면 GiitBucket을 systemd 유닛으로 로그인하면서 동시에 활용할 수 있다.
Reference
이 문제에 관하여(Amazon Linux2에 GiitBucket을 서비스로 등록(Systemd Unit)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/charon/items/2341f5ea58845313953f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)