Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Now that the Joget Operator has been installed, login to the OpenShift console as a normal user.
Thai |
---|
เมื่อติดตั้ง Joget Operator แล้วให้เข้าสู่คอนโซล OpenShift ในฐานะผู้ใช้ปกติ |
Browse to Projects and click on the Create Project button. Enter a name and click on Create.
Thai |
---|
เรียกดูโครงการและคลิกที่ปุ่มสร้างโครงการ ใส่ชื่อและคลิกที่สร้าง |
As a prerequisite, you will need to deploy either a MySQL or MariaDB database in the project.
Thai |
---|
ตามข้อกำหนดเบื้องต้นคุณจะต้องปรับใช้ฐานข้อมูล MySQL หรือ MariaDB ในโครงการ |
The fastest way to deploy MySQL would be to use the OpenShift CLI e.g.:
Thai |
---|
วิธีที่เร็วที่สุดในการปรับใช้ MySQL คือใช้ OpenShift CLI เช่น: |
Code Block |
---|
# deploy persistent mysql export DB_APP_NAME=jogetdb export MYSQL_DATABASE=jwdb export MYSQL_USER=joget export MYSQL_PASSWORD=joget oc new-app openshift/mysql-persistent --name $DB_APP_NAME -p DATABASE_SERVICE_NAME=$DB_APP_NAME -p MYSQL_USER=$MYSQL_USER -p MYSQL_PASSWORD=$MYSQL_PASSWORD -p MYSQL_DATABASE=$MYSQL_DATABASE |
Alternatively, you can deploy using the OpenShift Console.
Thai |
---|
หรือคุณสามารถปรับใช้โดยใช้ OpenShift Console |
Browse to the project, go to Workloads and click on add other content.
Thai |
---|
เรียกดูโครงการไปที่เวิร์กโหลดและคลิกที่เพิ่มเนื้อหาอื่น ๆ |
Select Database.
Thai |
---|
เลือกฐานข้อมูล |
Search for MySQL.
Thai |
---|
ค้นหา MySQL |
Select MySQL then click on Instantiate Template.
Thai |
---|
เลือก MySQL จากนั้นคลิกที่แม่แบบอินสแตนซ์ |
Key in the following configuration and click on Create.
Thai |
---|
ป้อนการกำหนดค่าต่อไปนี้และคลิกที่สร้าง |
Go to Workloads → Deployment Configs to verify that the MySQL database has been deployed successfully.
Thai |
---|
ไปที่ Workloads → Deployment Configs เพื่อตรวจสอบว่าฐานข้อมูล MySQL ได้รับการติดตั้งเรียบร้อยแล้ว |
...