I created project on server instance with GitLab ver. 13.2.9-ee.
Also registered specific runner ver. 13.4.1 , running on my build-machine .
File config.toml was generated :
concurrent = 1
check_interval = 0
[session_server]
session_timeout = 1800
[[runners]]
name = “ValRunnerBM08”
url = “https://[our GitLab server].org/”
token = “[some token]”
executor = “docker-windows”
[runners.custom_build_dir]
[runners.cache]
[runners.cache.s3]
[runners.cache.gcs]
[runners.cache.azure]
[runners.docker]
host = “tcp://127.0.0.1:2375”
tls_verify = false
image = “my/public_repo_in_docker_hub:my_image_win1909”
privileged = false
disable_entrypoint_overwrite = false
oom_kill_disable = false
disable_cache = false
volumes = [“c:\cache”]
shm_size = 0
Runner appeared on GitLab interface ( in my account as owner) in state “Pause”.
Any manipulations with buttons did not help, I cannot activate it.
IP Address is not defined ( 127.0.0.1) .
Command ‘gitlab-runner.exe health-check’ gives ‘FATAL: No HOST or PORT found’
Command ‘gitlab-runner.exe --debug run’ gives
‘listen_address not defined, metrics & debug endpoints disabled builds=0
[session_server].listen_address not defined, session endpoints disabled builds=0’
I would appreciate any help to fix the problem .
Thanks.