AVEVA NET Job Server Configuration
- Last UpdatedNov 21, 2023
- 1 minute read
The Polling Interval default value can be changed. Also the Database source can be added to the Job Server config.
To configure the AVEVA NET Job Server:
-
Navigate to Services.
-
Stop the AVEVA NET Job Server service.
-
Navigate to the AIM installation location and open the Job folder.
-
Right-click and open the AVEVA.NET.Job.Server.exe.config file.
-
Search for the <sources> tag, which is present under <aveva.net.job> tag.
-
If required, modify the pollingInterval value or leave the default value as is.
-
Under <sources>, different database source can be added with the following information:
<source
provider="SQL or MySQL"
port="port for database server"
name="Name for this source"
server="SQL Server Instance"
database="Database name"
schema="Schema to use"
integrated="use windows authentication true or false"
username="SQL DB Login username"
password="Encrypted password of SQL DB Login" />
For example:
<aveva.net.job>
<sources pollingInterval="6">
<source
provider="SQL"
port="1433"
name="DB_IPE"
server="inhydvms8r2102"
database="DB_IPE"
schema="dbo"
integrated="false"
username="DB_IPE"
password="VFEwMDFldjJnR2pCM2JzdUFYS0wzdz09LGFpTm5pSXpNc3VkUjJBY2srWVQ4Z3c9PQ=="
/>
<source
provider="SQL"
port="1433"
name="DB_SRP"
server="inhydvms8r2102"
database="DB_SRP"
schema="dbo"
integrated="false"
username="DB_SRP"
password="bFRuNFlEdlJlTlkremFPbWNaM285dz09LGFCZ0hjMGNFRVpQaGYrOVRKWE8yeXc9PQ=="
/>
</sources>
</aveva.net.job>