I successfully created a dockercontainer for NAV17 incl. CSIDE.
$containerName = 'nav17'
$securePassword = ConvertTo-SecureString -String $password -AsPlainText -Force
$auth = 'Windows'
$artifactUrl = Get-NavArtifactUrl -nav '2017' -country 'de'
$licenseFile = 'C:\Users\ABCDEF\Downloads\NavisionLicense.flf'
New-BcContainer `
-accept_eula `
-containerName $containerName `
-auth $auth `
-artifactUrl $artifactUrl `
-licenseFile $licenseFile `
-memoryLimit 8G `
-includeCSIDE `
-updateHosts
When I want to start CSIDE I get the following error
Whats going wrong?
Thanks but nothing changed. If I try to add my WinUser in Container- User already exists.
If I use admin/admin as user I can start CSIDE but its not possible to committ db changes.
1. Nav Server is runnig - I think so. I can run NavClient
2. The management services is configured - where can I find this information
3. The firewall is open forthe management port if remote - its local
4. Only one tenant - yes
5. Microsoft Dynamics NAV Development Environment ist runnning as admin - yes
6. UAC is turned off - tryed, nothing chaned
Hi, It looks like the user was not created successfully.
You can try to add new user in Container.
More details: https://www.youtube.com/watch?v=U1yFvpkWpqM
Or, add the following command when creating a new Container.
if ($credential -eq $null -or $credential -eq [System.Management.Automation.PSCredential]::Empty) { $credential = get-credential -UserName $env:USERNAME ` -Message "Please enter your Windows credentials."
Hope this will help.
Thanks.
ZHU
Using anonymous login looks a little suspicious.
Maybe you can see some help here on the gihub for BCContainerhelper:
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,524 Super User 2024 Season 2
Martin Dráb 228,469 Most Valuable Professional
nmaenpaa 101,148