Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated the screenshots

...

  1. Now that the Joget Operator has been installed, login to the OpenShift console as a normal user.

    Thai

    เมื่อติดตั้ง Joget Operator แล้วให้เข้าสู่คอนโซล OpenShift ในฐานะผู้ใช้ปกติ





  2. Browse to Projects and click on the Create Project button. Enter a name and click on Create.

    Thai

    เรียกดูโครงการและคลิกที่ปุ่มสร้างโครงการ ใส่ชื่อและคลิกที่สร้าง





  3. As a prerequisite, you will need to deploy either a MySQL or MariaDB database in the project.

    Thai

    ตามข้อกำหนดเบื้องต้นคุณจะต้องปรับใช้ฐานข้อมูล MySQL หรือ MariaDB ในโครงการ



  4. 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
  5. Alternatively, you can deploy using the OpenShift Console.

    Thai

    หรือคุณสามารถปรับใช้โดยใช้ OpenShift Console


     

  6. Browse to the project, go to Workloads and click on add other content.

    Thai

    เรียกดูโครงการไปที่เวิร์กโหลดและคลิกที่เพิ่มเนื้อหาอื่น ๆ



    Image AddedImage Removed

  7. Select Database.

    Thai

    เลือกฐานข้อมูล


    Image AddedImage Removed

  8. Search for MySQL.

    Thai

    ค้นหา MySQL



    Image AddedImage Removed


  9. Select MySQL then click on Instantiate Template.

    Thai

    เลือก MySQL จากนั้นคลิกที่แม่แบบอินสแตนซ์



    Image AddedImage Removed

  10. Key in the following configuration and click on Create.

    Thai

    ป้อนการกำหนดค่าต่อไปนี้และคลิกที่สร้าง




     

    1. Database Service Name: jogetdb
    2. MySQL Connection Username: joget
    3. MySQL Connection Password: joget
    4. MySQL Database Name: jwdb

  11. Go to Workloads → Deployment Configs to verify that the MySQL database has been deployed successfully.

    Thai

    ไปที่ Workloads → Deployment Configs เพื่อตรวจสอบว่าฐานข้อมูล MySQL ได้รับการติดตั้งเรียบร้อยแล้ว



    Image AddedImage Removed

2.2 Deploy Joget DX using the Joget DX Operator

...