<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: thingworx 9.3 with external postgres docker run error in ThingWorx Developers</title>
    <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845654#M60597</link>
    <description>&lt;P&gt;Did you provide the necessary information for Thingworx to connect to the postgres db?&lt;/P&gt;
&lt;P&gt;Also does postgres already have a user account/schema or not? I forget if the installer takes care of that or not.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2022 14:45:07 GMT</pubDate>
    <dc:creator>PaiChung</dc:creator>
    <dc:date>2022-12-22T14:45:07Z</dc:date>
    <item>
      <title>thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845599#M60594</link>
      <description>&lt;P&gt;I followed the steps for thingworx 9.3 docker with external postgresdb installation process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;security container - ok&lt;/P&gt;&lt;P&gt;postgres-init&amp;nbsp; - ok : checked that init has successfully connected to the external postgres and have made the schema,tables correctly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;platform - error :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[L: WARN] [O: c.m.v.r.BasicResourcePool] [I: ] [U: ] [S: ] [P: ] [T: C3P0PooledConnectionPoolManager[identityToken-&amp;gt;1bqu96satfv8vm3hxx67u|46919ddb, dataSourceName-&amp;gt;PostgresPersistenceProvider]-HelperThread-#6] Having failed to acquire a resource, com.mchange.v2.resourcepool.BasicResourcePool@65de6078 is interrupting all Threads waiting on a resource to check out. Will try again in response to new client requests.&lt;BR /&gt;2022-12-22 09:36:23.264+0000 [L: ERROR] [O: c.t.s.ThingWorxBootstrapper] [I: ] [U: SuperUser] [S: ] [P: ] [T: main] *** CRITICAL ERROR ON STARTUP: Connections could not be acquired from the underlying database!&lt;BR /&gt;2022-12-22 09:36:23.264+0000 [L: ERROR] [O: c.t.s.ThingWorxBootstrapper] [I: ] [U: SuperUser] [S: ] [P: ] [T: main] *** Web Application STATE is being set to ERROR! ***&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I doing wrong??&lt;/P&gt;&lt;P&gt;please help..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;P&gt;version: '2.2'&lt;/P&gt;&lt;P&gt;volumes:&lt;BR /&gt;storage:&lt;/P&gt;&lt;P&gt;services:&lt;BR /&gt;&lt;BR /&gt;postgresql-init:&lt;BR /&gt;image: thingworx/postgresql-init-twx:latest&lt;BR /&gt;entrypoint: bash -c -x "/usr/local/bin/db-check.sh &amp;amp;&amp;amp; /usr/local/bin/db-setup.sh &amp;amp;&amp;amp; sleep infinity"&lt;BR /&gt;healthcheck:&lt;BR /&gt;test: [ "CMD-SHELL", "grep 'success' tmp/status.txt || exit 1" ]&lt;BR /&gt;interval: 15s&lt;BR /&gt;retries: 5&lt;BR /&gt;# depends_on:&lt;BR /&gt;# postgresql:&lt;BR /&gt;# condition: service_healthy&lt;BR /&gt;environment:&lt;BR /&gt;# NOTE: Set DATABASE_ADMIN_USERNAME, DATABASE_ADMIN_PASSWORD DATABASE_ADMIN_SCHEMA for connecting&lt;BR /&gt;# to the postgres as super user&lt;BR /&gt;- "DATABASE_ADMIN_USERNAME=postgres"&lt;BR /&gt;- "DATABASE_ADMIN_PASSWORD=plain text password"&lt;BR /&gt;- "DATABASE_ADMIN_SCHEMA=postgres"&lt;BR /&gt;- "DATABASE_HOST=10.0.1.11"&lt;BR /&gt;- "DATABASE_PORT=5432"&lt;BR /&gt;- "TWX_DATABASE_USERNAME=thingworx3"&lt;BR /&gt;- "TWX_DATABASE_SCHEMA=thingworx3"&lt;BR /&gt;- "TWX_DATABASE_PASSWORD=plain text password"&lt;BR /&gt;- "TABLESPACE_LOCATION=/var/lib/postgresql/data"&lt;/P&gt;&lt;P&gt;security-cli:&lt;BR /&gt;image: thingworx/security-tool:latest&lt;BR /&gt;entrypoint: sh -c "/opt/docker-entrypoint.sh &amp;amp;&amp;amp; sleep infinity"&lt;BR /&gt;healthcheck:&lt;BR /&gt;test: [ "CMD-SHELL", "grep 'success' status.txt || exit 1" ]&lt;BR /&gt;interval: 15s&lt;BR /&gt;retries: 5&lt;BR /&gt;environment:&lt;BR /&gt;KEYSTORE: 'true'&lt;BR /&gt;# NOTE: Set KEYSTORE_PASSWORD (Must match value from platform container)&lt;BR /&gt;KEYSTORE_PASSWORD: 'plain text password'&lt;BR /&gt;KEYSTORE_PASSWORD_FILE_PATH: '/opt'&lt;BR /&gt;KEYSTORE_FILE_PATH: '/ThingworxPlatform/sc-keystore'&lt;BR /&gt;CUSTOM_SECRET_LIST: 'encrypt.db.password:TWX_DATABASE_PASSWORD'&lt;BR /&gt;# NOTE: Set TWX_DATABASE_PASSWORD&lt;BR /&gt;TWX_DATABASE_PASSWORD: 'plain text password'&lt;BR /&gt;volumes:&lt;BR /&gt;- storage:/ThingworxStorage&lt;/P&gt;&lt;P&gt;platform:&lt;BR /&gt;image: thingworx/platform-postgres:latest&lt;BR /&gt;healthcheck:&lt;BR /&gt;test: curl -f localhost:8080/Thingworx/health&lt;BR /&gt;interval: 15s&lt;BR /&gt;depends_on:&lt;BR /&gt;security-cli:&lt;BR /&gt;condition: service_healthy&lt;BR /&gt;postgresql-init:&lt;BR /&gt;condition: service_healthy&lt;BR /&gt;ports:&lt;BR /&gt;- "8080:8080"&lt;BR /&gt;- "8443:8443"&lt;BR /&gt;environment:&lt;BR /&gt;- "CATALINA_OPTS=-Xms2g -Xmx4g"&lt;BR /&gt;# NOTE: Set KEYSTORE_PASSWORD (Must match value from security-cli container)&lt;BR /&gt;#- "KEYSTORE_PASSWORD=plain text password"&lt;BR /&gt;- "DATABASE_HOST=10.0.1.11"&lt;BR /&gt;- "DATABASE_PORT=5432"&lt;BR /&gt;- "TWX_DATABASE_USERNAME=thingworx3"&lt;BR /&gt;- "TWX_DATABASE_SCHEMA=thingworx3"&lt;BR /&gt;- "TWX_DATABASE_PASSWORD=plain text password"&lt;BR /&gt;# NOTE: The following must be set for the Platform to start. This will be&lt;BR /&gt;# the initial Administrator password.&lt;BR /&gt;- "THINGWORX_INITIAL_ADMIN_PASSWORD=plain text password"&lt;BR /&gt;# NOTE: The following must be set for the Platform to start. This will be&lt;BR /&gt;# the initial MetricsUser password.&lt;BR /&gt;- "THINGWORX_INITIAL_METRICS_USER_PASSWORD=plain text password"&lt;BR /&gt;#Uncomment the below to automatically download license&lt;BR /&gt;- "LS_USERNAME=xxx@xx.com"&lt;BR /&gt;- "LS_PASSWORD=plain text password"&lt;BR /&gt;- "DATABASE_ADMIN_USERNAME=postgres"&lt;BR /&gt;- "DATABASE_ADMIN_PASSWORD=plain text password"&lt;BR /&gt;- "TABLESPACE_LOCATION=/var/lib/postgresql/data"&lt;BR /&gt;#- "SSL_KEYSTORE_PASSWORD=plain text password"&lt;BR /&gt;# Use this to mount your orgs licence file, if not ThingWorx will fallback to temporary licence&lt;BR /&gt;volumes:&lt;BR /&gt;- "/ThingworxPlatform:/ThingworxPlatform"&lt;BR /&gt;- "/ThingworxStorage:/ThingworxStorage"&lt;BR /&gt;- "/ThingworxBackupStorage:/ThingworxBackupStorage"&lt;BR /&gt;- "/tomcat-logs:/app/opt/apache-tomcat/logs"&lt;/P&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;{&lt;BR /&gt;"PlatformSettingsConfig": {&lt;BR /&gt;"BasicSettings": {&lt;BR /&gt;"BackupStorage": "/ThingworxBackupStorage",&lt;BR /&gt;"DatabaseLogRetentionPolicy": 7,&lt;BR /&gt;"EnableBackup": true,&lt;BR /&gt;"EnableClusteredMode": false,&lt;BR /&gt;"EnableSystemLogging": false,&lt;BR /&gt;"HTTPRequestHeaderMaxLength": 2000,&lt;BR /&gt;"HTTPRequestParameterMaxLength": 2000,&lt;BR /&gt;"ScriptTimeout": 30,&lt;BR /&gt;"Storage": "/ThingworxStorage",&lt;BR /&gt;"InternalAesCryptographicKeyLength": 128&lt;BR /&gt;},&lt;BR /&gt;"AdministratorUserSettings": {&lt;BR /&gt;"InitialPassword": "plain text password"&lt;BR /&gt;},&lt;BR /&gt;"MetricsUserSettings": {&lt;BR /&gt;"InitialPassword": "plain text password"&lt;BR /&gt;},&lt;BR /&gt;"ClusteredModeSettings": {&lt;BR /&gt;"CoordinatorConnectionTimeout": 10000,&lt;BR /&gt;"CoordinatorHosts": "127.0.0.1:2181",&lt;BR /&gt;"CoordinatorMaxRetries": 3,&lt;BR /&gt;"CoordinatorRetryTimeout": 3000,&lt;BR /&gt;"CoordinatorSessionTimeout": 90000,&lt;BR /&gt;"LoadBalancerBase64EncodedCredentials": "QWRtaW5pc3RyYXRvcjp0clVmNnl1ejI/X0d1Yg==",&lt;BR /&gt;"PlatformId": "platform1"&lt;BR /&gt;},&lt;BR /&gt;"SolutionCentralSettings": {&lt;BR /&gt;"SolutionCentralHost": "sc-twxci.a.cirrus.msai.devops.ptc.io",&lt;BR /&gt;"KeyStorePath": "/ThingworxPlatform/sc-keystore",&lt;BR /&gt;"KeyStorePass": "plain text password"&lt;BR /&gt;},&lt;BR /&gt;"ExtensionPackageImportPolicy": {&lt;BR /&gt;"importEnabled": true,&lt;BR /&gt;"allowJarResources": true,&lt;BR /&gt;"allowJavascriptResources": true,&lt;BR /&gt;"allowCSSResources": true,&lt;BR /&gt;"allowJSONResources": true,&lt;BR /&gt;"allowWebAppResources": true,&lt;BR /&gt;"allowEntities": true,&lt;BR /&gt;"allowExtensibleEntities": true,&lt;BR /&gt;"haCompatibilityImportLevel": "WARN"&lt;BR /&gt;},&lt;BR /&gt;"ContentTypeSettings": {&lt;BR /&gt;"supportedMediaEntityContentTypes": [&lt;BR /&gt;"image/svg+xml",&lt;BR /&gt;"image/png",&lt;BR /&gt;"image/gif",&lt;BR /&gt;"image/bmp",&lt;BR /&gt;"image/jpeg",&lt;BR /&gt;"application/pdf",&lt;BR /&gt;"image/vnd.microsoft.icon"&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;},&lt;BR /&gt;"PersistenceProviderPackageConfigs": {&lt;BR /&gt;&lt;BR /&gt;"PostgresPersistenceProviderPackage": {&lt;BR /&gt;"ConnectionInformation": {&lt;BR /&gt;"acquireIncrement": 15,&lt;BR /&gt;"acquireRetryAttempts": 3,&lt;BR /&gt;"acquireRetryDelay": 5000,&lt;BR /&gt;"checkoutTimeout": 1000000,&lt;BR /&gt;"driverClass": "org.postgresql.Driver",&lt;BR /&gt;"fetchSize": 5000,&lt;BR /&gt;"idleConnectionTestPeriod": 60,&lt;BR /&gt;"initialPoolSize": 15,&lt;BR /&gt;"jdbcUrl": "jdbc:postgresql://10.0.1.11:5432/thingworx3",&lt;BR /&gt;"maxConnectionAge": 0,&lt;BR /&gt;"maxIdleTime": 0,&lt;BR /&gt;"maxIdleTimeExcessConnections": 300,&lt;BR /&gt;"maxPoolSize": 100,&lt;BR /&gt;"maxStatements": 100,&lt;BR /&gt;"minPoolSize": 5,&lt;BR /&gt;"numHelperThreads": 8,&lt;BR /&gt;"password": "plain text password",&lt;BR /&gt;"testConnectionOnCheckout": false,&lt;BR /&gt;"unreturnedConnectionTimeout": 0,&lt;BR /&gt;"username": "thingworx3"&lt;BR /&gt;},&lt;BR /&gt;"StreamProcessorSettings": {&lt;BR /&gt;"maximumBlockSize": 2500,&lt;BR /&gt;"maximumQueueSize": 250000,&lt;BR /&gt;"maximumWaitTime": 10000,&lt;BR /&gt;"numberOfProcessingThreads": 5,&lt;BR /&gt;"scanRate": 5,&lt;BR /&gt;"sizeThreshold": 1000&lt;BR /&gt;},&lt;BR /&gt;"DataTableProcessorSettings": {&lt;BR /&gt;"maximumBlockSize": 2500,&lt;BR /&gt;"maximumQueueSize": 250000,&lt;BR /&gt;"maximumWaitTime": 10000,&lt;BR /&gt;"numberOfProcessingThreads": 1,&lt;BR /&gt;"scanRate": 5,&lt;BR /&gt;"sizeThreshold": 1&lt;BR /&gt;},&lt;BR /&gt;"ValueStreamProcessorSettings": {&lt;BR /&gt;"maximumBlockSize": 2500,&lt;BR /&gt;"maximumWaitTime": 10000,&lt;BR /&gt;"maximumQueueSize": 500000,&lt;BR /&gt;"numberOfProcessingThreads": 5,&lt;BR /&gt;"scanRate": 5,&lt;BR /&gt;"sizeThreshold": 1000&lt;BR /&gt;},&lt;BR /&gt;"PersistentPropertyProcessorSettings": {&lt;BR /&gt;"maximumBlockSize": 2500,&lt;BR /&gt;"maximumWaitTime": 1000,&lt;BR /&gt;"maximumQueueSize": 100000,&lt;BR /&gt;"numberOfProcessingThreads": 20,&lt;BR /&gt;"scanRate": 25,&lt;BR /&gt;"sizeThreshold": 1000&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 09:51:56 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845599#M60594</guid>
      <dc:creator>BS_10420068</dc:creator>
      <dc:date>2022-12-22T09:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845654#M60597</link>
      <description>&lt;P&gt;Did you provide the necessary information for Thingworx to connect to the postgres db?&lt;/P&gt;
&lt;P&gt;Also does postgres already have a user account/schema or not? I forget if the installer takes care of that or not.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 14:45:07 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845654#M60597</guid>
      <dc:creator>PaiChung</dc:creator>
      <dc:date>2022-12-22T14:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845790#M60607</link>
      <description>&lt;P&gt;I am doing&amp;nbsp; docker compose run.&lt;/P&gt;&lt;P&gt;postgres-init container was able to connect to external poastgres db , create account/schema.&lt;/P&gt;&lt;P&gt;After setting account/schema, platform container is having above problems.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2022 14:47:43 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/845790#M60607</guid>
      <dc:creator>BS_10420068</dc:creator>
      <dc:date>2022-12-23T14:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/846888#M60674</link>
      <description>&lt;P&gt;Not sure if you can check it or not, but what do you have in your platform-settings.json?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2023 17:27:47 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/846888#M60674</guid>
      <dc:creator>PaiChung</dc:creator>
      <dc:date>2023-01-03T17:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/847148#M60676</link>
      <description>&lt;P&gt;You can find it in spoiler.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"PlatformSettingsConfig": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"BasicSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"BackupStorage": "/ThingworxBackupStorage",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"DatabaseLogRetentionPolicy": 7,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"EnableBackup": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"EnableClusteredMode": false,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"EnableSystemLogging": false,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"HTTPRequestHeaderMaxLength": 2000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"HTTPRequestParameterMaxLength": 2000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"ScriptTimeout": 30,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Storage": "/ThingworxStorage",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"InternalAesCryptographicKeyLength": 128&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"AdministratorUserSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"InitialPassword": "plain text password"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"MetricsUserSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"InitialPassword": "plain text password"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"ClusteredModeSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"CoordinatorConnectionTimeout": 10000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"CoordinatorHosts": "127.0.0.1:2181",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"CoordinatorMaxRetries": 3,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"CoordinatorRetryTimeout": 3000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"CoordinatorSessionTimeout": 90000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"LoadBalancerBase64EncodedCredentials": "QWRtaW5pc3RyYXRvcjp0clVmNnl1ejI/X0d1Yg==",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"PlatformId": "platform1"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"SolutionCentralSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"SolutionCentralHost": "sc-twxci.a.cirrus.msai.devops.ptc.io",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"KeyStorePath": "/ThingworxPlatform/sc-keystore",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"KeyStorePass": "plain text password"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"ExtensionPackageImportPolicy": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"importEnabled": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowJarResources": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowJavascriptResources": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowCSSResources": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowJSONResources": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowWebAppResources": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowEntities": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"allowExtensibleEntities": true,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"haCompatibilityImportLevel": "WARN"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"ContentTypeSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"supportedMediaEntityContentTypes": [&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"image/svg+xml",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"image/png",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"image/gif",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"image/bmp",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"image/jpeg",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"application/pdf",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"image/vnd.microsoft.icon"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"PersistenceProviderPackageConfigs": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"PostgresPersistenceProviderPackage": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"ConnectionInformation": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"acquireIncrement": 15,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"acquireRetryAttempts": 3,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"acquireRetryDelay": 5000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"checkoutTimeout": 1000000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"driverClass": "org.postgresql.Driver",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"fetchSize": 5000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"idleConnectionTestPeriod": 60,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"initialPoolSize": 15,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"jdbcUrl": "jdbc:postgresql://10.0.1.11:5432/thingworx3",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maxConnectionAge": 0,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maxIdleTime": 0,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maxIdleTimeExcessConnections": 300,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maxPoolSize": 100,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maxStatements": 100,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"minPoolSize": 5,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"numHelperThreads": 8,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"password": "plain text password",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"testConnectionOnCheckout": false,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"unreturnedConnectionTimeout": 0,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"username": "thingworx3"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"StreamProcessorSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumBlockSize": 2500,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumQueueSize": 250000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumWaitTime": 10000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"numberOfProcessingThreads": 5,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"scanRate": 5,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"sizeThreshold": 1000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"DataTableProcessorSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumBlockSize": 2500,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumQueueSize": 250000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumWaitTime": 10000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"numberOfProcessingThreads": 1,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"scanRate": 5,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"sizeThreshold": 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"ValueStreamProcessorSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumBlockSize": 2500,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumWaitTime": 10000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumQueueSize": 500000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"numberOfProcessingThreads": 5,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"scanRate": 5,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"sizeThreshold": 1000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"PersistentPropertyProcessorSettings": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumBlockSize": 2500,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumWaitTime": 1000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"maximumQueueSize": 100000,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"numberOfProcessingThreads": 20,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"scanRate": 25,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"sizeThreshold": 1000&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 02:17:56 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/847148#M60676</guid>
      <dc:creator>BS_10420068</dc:creator>
      <dc:date>2023-01-04T02:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/847374#M60689</link>
      <description>&lt;P&gt;I see there is information there, I'm not sure if you blanked out the password. But at least if all that info is connect, then the connection should happen, unless you have some firewall issue.&lt;/P&gt;
&lt;P&gt;Not too sure how to further help you.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2023 18:07:14 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/847374#M60689</guid>
      <dc:creator>PaiChung</dc:creator>
      <dc:date>2023-01-04T18:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: thingworx 9.3 with external postgres docker run error</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/850688#M60903</link>
      <description>&lt;P&gt;Hi @&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(46,46,46);font-size:13px;"&gt;&lt;STRONG&gt;BS_10420068&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you adhere to the Docker versions indicated in the &lt;A href="https://support.ptc.com/help/thingworx/platform/r9/en/index.html#page/ThingWorx/Help/Installation/ThingWorxDockerGuide/thingworx_docker_prerequisites.html#" target="_blank"&gt;Help Center&lt;/A&gt;? &amp;nbsp;Are you running PostgreSQL in a Docker container as well? &amp;nbsp;What o/s are you running for the db server?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You do have to create the user account and db.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Sharon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 14:48:12 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/thingworx-9-3-with-external-postgres-docker-run-error/m-p/850688#M60903</guid>
      <dc:creator>slangley</dc:creator>
      <dc:date>2023-01-20T14:48:12Z</dc:date>
    </item>
  </channel>
</rss>

