Hi All
When i am trying to install Developer installation of NAV 2013 Beta i am getting the below error.
Microsoft Dynamics NAV Build 33451
Error Report
Server
Language Module (en-IN) for Microsoft Dynamics NAV Server
Fatal error during installation.
Service 'Microsoft Dynamics NAV Server [DynamicsNAV70]' (MicrosoftDynamicsNavServer$DynamicsNAV70) failed to start. Verify that you have sufficient privileges to start system services.
If anyone has knowledge to resolve this error let me know.. Thanks in advance
With Regards
0
Comments
Is NetTcpPortSharing service running?
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
then installed the Nav 2013 beta version
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
were you able to solve your problem?
I have a similar issue with language pack and also saying the account I am using is not a farm admin in Sharepoint, which he defo is.
Thanks and best regards,
Denis
I'm also getting the same error. Please help....
Attached the error report for your perusal.
Thanks in advance for all the help.
You can change the port no. in administration window to open both versions at a time..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
or stop the service that user port 7046
There is no other service use port: 7046
It is a "clean" Windows 7 64 Prof. System
SQL Server 2008r2 Express other Preconditions installed.
Looking for support :-)
Regards
Chaossurfer
Peter Wibeck
Software Development Engineer in Test
Dynamics NAV Server and Installer team
http://blog.wibeck.org/
I get the same error during install "..Service 'Microsoft Dynamics NAV Server [DynamicsNAV70]' (MicrosoftDynamicsNavServer$DynamicsNAV70) failed to start. Verify that you have sufficient privileges to start system services..."
When I try to run the dynamics NAV service manually I get something like (roughly translated) "Couldnt start Service X, Error 1068 Can't start the depending service or group"
When I look at settings for the service I can see that it have the dependency "http". Which service is this ?
I tried to workaround it and delete the dependency from the regedit but it still gave the same error message.
Have you checked the cables?
Have you released the filters?
http://www.navfreak.com
That did the trick, cheers!
Have you checked the cables?
Have you released the filters?
http://www.navfreak.com
Changing NAV service account to an administrator one works (maybe because it does not trigger NetLogon dependancy).
Unlike NAV 2009, In NAV 2013 we can not set user rights using classic client that means we got stuck if we had installed NAV 2013 with some other account, from the domain account with which we are running NAV.
I had the same Problem, solution as Below, by Inserting the User setup record for the user with Following SQL Query
/****** Object: StoredProcedure [dbo].[usp_CreateUser] Script Date: 12/15/2012 15:21:30 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[usp_CreateUser]') AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[usp_CreateUser]
GO
USE [BaseNAV-7]
GO
/****** Object: StoredProcedure [dbo].[usp_CreateUser] Script Date: 12/15/2012 15:21:30 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[usp_CreateUser]
(
@USERNAME nvarchar(50)
)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
DECLARE @USERSID uniqueidentifier, @WINDOWSSID nvarchar(119)
--SET @USERNAME = 'MSPL\uday.mer'
SET @USERSID = NEWID()
SET @WINDOWSSID = SUSER_SID(@USERNAME,1)
--SET @WINDOWSSID = 'S-1-5-21-1731400737-1210121009-699449552-1106'
INSERT INTO [dbo].[User]
([User Security ID],[User Name],[Full Name],[State],[Expiry Date],
[Windows Security ID],[Change Password],[License Type])
VALUES
(@USERSID,@USERNAME,'',0,'1753-01-01 00:00:00.000',@WINDOWSSID,0,0)
INSERT INTO [dbo].[User Property]
([User Security ID],[Password],[Name Identifier],[Authentication Key],[WebServices Key],[WebServices Key Expiry Date])
VALUES
(@USERSID,'','','','','1753-01-01 00:00:00.000')
INSERT INTO [dbo].[Access Control]
([User Security ID],[Role ID],[Company Name])
VALUES
(@USERSID,'SUPER','')
END
GO