Activities of "yim.tim"

I try to login abp using the command "abp login xxx@xxx.com -p XXX" but the error message "An internal error occurred during your request!" show. Please advise.

  • ABP Framework version: v6.0.2

Ok, I can login using the device flow. Thx.

Even login success using device flow, I still cannot execute abp suite.

What organization I belong to? My colleague are on leave. I would like to get my organization master account to maintain the developer account. Thx.

After login and I try to create the application template, the following installing client-side package screen are hold more than 1 hours. What should I do?

It can solved. Thx.

I try to dockerize Abp web application. However, I found the following issues. Please Advise.

The following is the docker-compose.yml file where dnf is the system name.

services:
  dnf.httpapi.host:
    image: ${DOCKER_REGISTRY-}dnfhttpapihost
    container_name: dnf.httpapi.host
    ports:
      - "44326:44326"
      - "4200:4200"
      - "30080:80"
      - "30443:443"
    build:
      context: .
      dockerfile: src/DNF.HttpApi.Host/Dockerfile
    depends_on:
      - dnf.db
    restart: on-failure

  dnf.db:
    image: "mcr.microsoft.com/mssql/server"
    container_name: dnf.db
    ports:
      - "34330:1433"
    restart: always
    environment:
      MSSQL_SA_PASSWORD: "123456"
      SA_PASSWORD: "123456"
      ACCEPT_EULA: "Y"

  dnf.authserver:
    image: ${DOCKER_REGISTRY-}dnfauthserver
    container_name: dnf.authserver
    ports:
      - "44324:44324"
    build:
      context: .
      dockerfile: src/DNF.AuthServer/Dockerfile
    depends_on:
      - dnf.db
    restart: on-failure

  redis:
    image: redis
    container_name: redis
    ports:
      - '6379:6379'

Did Abp support dynamic menu based on user role? Scenarios,

  1. Senior manager can see "Commission Configuration" and edit the commission in the related Angular app/component.
  2. manager can see "Commission Configuration" menu, view the commission only a Angular app/component can be accessed.
  3. operator cannot see "Commission Configuration" menu and the related Angular app deny to accessed.
  • ABP Framework version: v6.0.2 micro-service template
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes

Docker log show that abp need to login before start authentication server. Please advise. Thx.

Please see the following docker console log.

Showing 1 to 10 of 20 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11