You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot create a file when that file already exists.
29
29
```
30
30
31
-
This warning can usually be safely ignored. However when urlacls are corrupted the same behaviors occurs. This problem will manifest in that everything seems to be working correctly except that the gateway will not be listening on the port.
31
+
This warning can usually be safely ignored. However, if the urlacls are corrupted the same behavior as above occurs. In this case, everything may appear to be functioning normally, except that the gateway will not be listening on the port.
32
32
33
-
To verify this problem navigate to the url (in this case `http://localhost:25894/MyEndpoint/`) in a browser. If the gateway is listening the following will be received:
33
+
To verify this issue, navigate to the url (in this case `http://localhost:25894/MyEndpoint/`) in a browser. If the gateway is listening, the following will be received:
34
34
35
35
```
36
36
EndpointName:MyEndpoint - Status: Ok
37
37
```
38
38
39
-
If the gateway is not listening no response will be received.
39
+
If the gateway is not listening, no response will be received.
40
40
41
41
To clean and recreate the url acl manually run the following commands from an admin console:
There are some special considerations for creating the queue tables in production environments.
24
+
When creating the queue tables in production environments, there are specific considerations to keep in mind.
25
25
26
26
27
27
#### NServiceBus installers
28
28
29
-
When using NServiceBus [installers](/nservicebus/operations/installers.md) the queue tables are created automatically before the endpoint is started.
29
+
When using NServiceBus [installers](/nservicebus/operations/installers.md), the queue tables are created automatically before the endpoint is started.
30
30
31
-
the user account under which the installation of the host is performed must have `CREATE TABLE` and `VIEW DEFINITION` permissions on the database where the queues are to be created. The account under which the service runs does not have to have these permissions. Standard read/write/delete permissions (e.g. `db_datawriter` and `db_datareader` roles) are enough.
31
+
The user account under which the installation of the host is performed, must have `CREATE TABLE` and `VIEW DEFINITION` permissions on the database where the queues are to be created. The service account does not need to have these permissions. Standard read/write/delete permissions (e.g. `db_datawriter` and `db_datareader` roles) are sufficient.
32
32
33
33
34
34
#### Scripted
35
35
36
-
Using NServiceBus installers does not allow review of the actual T-SQL statements that are going be executed. For that reason, some prefer to store the actual scripts in a version control system.
36
+
Using NServiceBus installers does not allow review of the actual T-SQL statements that are going be executed. Hence, some prefer to store the actual scripts in a version control system.
37
37
38
-
The script above is parametrized at execution time with the queue name so it cannot be used as-is. Alternatively, the scripts could be generated from the development or staging environments, then directly executed on a production environment by DBAs to replicate that table structure.
38
+
The script above is parametrized at execution time with the queue name so it cannot be used as-is. Alternatively, the scripts could be generated from the development or staging environments,and then executed on a production environment by DBAs to replicate that table structure.
39
39
40
40
To capture the script for later execution use SQL Server Management Studio. Connect to the server (e.g. development or staging) and right-click the database with the queue tables. From "Tasks" menu choose "Generate Scripts..." and generate the scripts for relevant tables.
0 commit comments