Duplicate key error during Umbraco installation - umbraco

I'm installing Umbraco V7 and get this error during installation
Error during installation
The database failed to install. ERROR: The database configuration failed
with the following message: The CREATE UNIQUE INDEX statement terminated because
a duplicate key was found for the object name 'dbo.cmsPropertyType' and the
index name 'IX_cmsPropertyTypeUniqueID'.
The duplicate key value is (00000000- 0000-0000-0000-000000000000).
The statement has been terminated. Please check log file for additional
information (can be found in '/App_Data/Logs/UmbracoTraceLog.txt')
Any Idea where I can get full DB script for Umbraco or Full DB Backup?

Since it is a brand new install, I would try wiping your db and starting the install over. It sounds like something got corrupted once, and now it is perpetually breaking.

Related

ERROR 1060 (42S21) at line 3: Duplicate column name 'artkit0'

trying to get Azerothcore running with Docker. I have the following error when trying to start up the service:
>> Applying update "2022_06_14_01.sql" '90B07D9'...
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 1060 (42S21) at line 3: Duplicate column name 'artkit0'
Applying of file '/azerothcore/data/sql/updates/db_world/2022_06_14_01.sql' to database 'acore_world' failed! If you are a user, please pull the latest revision from the repository. Also make sure you have not
applied any of the databases with your sql client. You cannot use auto-update system and import sql files from AzerothCore repository with your sql client. If you are a developer, please fix your sql query.
Could not update the World database, see log for details.
Any help would be greatly appreciated. I'm a total noob to this!
I am receiving the same error. I have tried the various install types and made sure that things were cleaned up before trying again. I even went as far as to reformat and start from scratch. All yield the same as OP:
ERROR 1060 (42S21) at line 3: Duplicate column name 'artkit0'
I found a work around that worked for me. I dropped all the tables within acore_world and ran the server and let it repopulate it.
Update to the latest AzerothCore and try again

getting error as "Failed to find user name [WORKGROUP\SYSTEM]" during informatica installation

Getting above error in the logs, while installing informatica server 10.4, this is happening while i am in the create domain menu
then i get this error
when i check the logs, I am seeing this error.
OutPut : [ICMD_10033] Command [generateEncryptionKey] failed with error [[INFASETUP_10000] [FrameworkUtils_0006] The encryption key file cannot be generated. [[FrameworkUtils_0022] Failed to find user name [WORKGROUP\SYSTEM] during Informatica service startup, and so cannot grant read and write permissions on the node configuration directory to the user. Verify that the user that started the Informatica service is valid. If you are a Local System User, you can ignore this message as you inherit the read-write permissions.]..].
I am not getting where this [WORKGROUP\SYSTEM] user name is coming up

unable to load shared object 'C:/Program Files/R/R-4.0.5/library/stats/libs/x64/stats.dll'

[![
Hi there!!
I am using R 4.0.5 on a windows 10 OS
I have installed rtools40-x86_64 and used the following command to put the location of the make it utilities as recommanded here
writeLines('PATH="${RTOOLS40_HOME}\\usr\\bin;${PATH}"', con = "~/.Renviron")
However after restarting R, it gave me the error on the picture below. or the following
Error: package or namespace load failed for ‘stats’ in inDL(x, as.logical(local), as.logical(now), ...):
unable to load shared object 'C:/Program Files/R/R-4.0.5/library/stats/libs/x64/stats.dll':
LoadLibrary failure: The specified module could not be found.
During startup - Warning message:
package ‘stats’ in options("defaultPackages") was not found
Error in inDL(x, as.logical(local), as.logical(now), ...) :
unable to load shared object 'C:/Program Files/R/R-4.0.5/library/stats/libs/x64/stats.dll':
LoadLibrary failure: The specified module could not be found.
I have uninstalled R, RStudio, Rtools, deleted all related files in C, Documents, and RStudio registry, and reinstalled there after. But the same error persist.
In a related post they made mentioned of missing binaries, and I used the command
install.packages("stats", type = "binary")
but it was negative.
I tried updating stats package, but once I call it it gives the same error.
> update.packages("stats")
> library(stats)
Error: package or namespace load failed for ‘stats’ in inDL(x, as.logical(local), as.logical(now), ...):
unable to load shared object 'C:/Program Files/R/R-4.0.5/library/stats/libs/x64/stats.dll':
LoadLibrary failure: The specified module could not be found.
Every package which requires stats package gives the exact same error.
Does anyone have any idea on how to overcome this challenge?
Thanks in advance.
]3]3
I have installed a previous version of R (3.6.0) and a previous version of Rtools (.35) and that message disappeared. I have not tried any other R version.
I’ve seen many suggestions here and elsewhere suggesting to delete the .Renviron files. I deleted .Renviron locally with no success. However, I found an additional two .Renviron file in my OneDrive folder.
After deleting these files in OneDrive and reinstalling the most recent versions of R and rtools I was able to avoid the ‘stats.dll’ error.
Go to files. Delete the .Renviron file that you created and it will work.

InfluxDB influx-enterprise.key.json no such file or directory

I try to install InfluxDB Enterprise Edition using this documentation: https://docs.influxdata.com/enterprise/v1.2/production_installation/. The Requirements suggest to either use a license-key or license-path, where I do it with the License Key.
In Step 2, after installing, configuring and starting the Data Nodes I try to join the data nodes to the cluster. But executing influxd-ctl add-data enterprise-data-01:8088 gives me the error:
add-data: operation exited with error: open /tmp/influx-enterprise.key.json: no such file or directory
although I configured not to use the license-key json but rather the license-key.
I also have the json file, so I tried it with the license-path but still getting the same error. Has somebody else encountered the same issues?
EDIT
Issue has been resolved, I had to restart the Data nodes after I changed the configuration to use the license-path facepalm. I went into this problem as I previously entered an old license key.

ERROR: Error CREATEing SolrCore 'hydra-development': Could not create a new core

I am trying to run solr_wrapper along with fc_wrapper to run my app.
This is how I am starting the solr,
enter code here
solr_wrapper -d solr/config/ --collection_name hydra-development --version 6.3.0
But when I hit this command, below is the error I am getting.
Failed to execute solr create: (RuntimeError)
Creating new core 'hydra-development' using command:
http://localhost:8983/solr/admin/cores?action=CREATE&name=hydra-development&instanceDir=hydra-development
I am able to start the fc_wrapper.
Can someone helpstarting the solr_wrapper.
These "solr_wrapper" and "fc_wrapper" tools do not come with Solr. Somebody else built those, so I have no idea how they work or what they do.
In order to create a core, the config must be available. See the big red box here:
https://cwiki.apache.org/confluence/display/solr/CoreAdmin+API#CoreAdminAPI-CREATE

Resources