일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- fido
- SWIFT
- Android
- 앱스토어
- 인증
- 안드로이드
- otpkey
- 앱리소스
- kmip
- appres
- 앨범북
- git
- SSH
- OSX
- albumbook
- MFA
- OTP
- apple
- openssl
- Nodejs
- SwiftUI
- css
- WebAuthn
- MYSQL
- 애플
- Xcode
- 2FA
- SSL
- MSYS2
- FIDO2
- Today
- Total
인디노트
EJBCA - Quick Start Guide 본문
출처 : https://www.ejbca.org/older_releases/ejbca_6_15_1_2/dist/Quick_Start_Guide.html
There are different ways to get started with EJBCA:
-
An EJBCA Virtual Machine (VM) is available for download from ejbca.org, see Download.
-
A scripted installation run locally on an uncompressed EJBCA distribution, see Quick Setup Script.
-
Get a test installation up and running, using more manual steps, using Ubuntu Linux or RedHat Enterprise Linux. See Legacy Ubuntu Quick Start and Legacy RedHat Linux Enterprise Quick Start.
Quick Setup Script
To install EJBCA using the quick setup script located in bin/extra/ejbca-setup on a Linux machine (Ubuntu or RedHat is recommended), do the following:
-
Download and unpack the EJBCA distribution.
-
Install dependencies:
Ubuntu:sudo apt-get update
sudo apt-get install unzip openjdk-8-jdk-headless ant ant-optional psmisc mariadb-client bc patch curl
RedHat:
sudo yum install tar unzip java-1.8.0-openjdk-devel ant psmisc mariadb bc patch
-
Install a MariaDB database and create a database for EJBCA:
$ sudo mysql -u root -p
mysql> CREATE DATABASE ejbcatest CHARACTER SET utf8 COLLATE utf8_general_ci;
mysql> GRANT ALL PRIVILEGES ON ejbcatest.* TO 'ejbca'@'localhost' IDENTIFIED BY 'ejbca';
-
Get the latest ejbca enterprise edition (example: ejbca_ee_6_12_0_1.zip) from file server, unzip it in ejbca folder.
-
Configure the script in ejbca/bin/extra/ejbca-setup with your database user and password.
-
Run the script with ./<ejbca-install-directory>/bin/extra/ejbca-setup.
For example:./ejbca_ce_6_10_1_2/bin/extra/ejbca-setup.sh
Do not run the ejbca-setup script from inside the EJBCA directory. The script creates new directories and links and is thus dependent on being run from just outside the EJBCA directory itself.
The script will download WildFly 10 and the MariaDB database connector and install everything, resulting in a usable EJBCA installation.
-
Import superadmin.p12 in your web browser and open the EJBCA Administration pages at https://localhost:8443/ejbca/adminweb/. The password for importing superadmin.p12 was printed on the last line after running the script.
Feedback and improvements to the ejbca-setup script are appreciated.
'인증기술 > CA' 카테고리의 다른 글
nscurl 로 SSL 사이트 체크시 TLSv1.3 접속 문제 있을때 (0) | 2022.12.09 |
---|---|
Easy RSA 로 CA 구성하고 인증서 발급 (0) | 2021.06.26 |
OpenSSL 로 Root CA 생성하여 Self signed SSL 인증서 발급하기 (1) | 2021.06.25 |