Skip to content

Commit c34fdf0

Browse files
authored
112.0.2.0-r1 update (#170)
1 parent ffcebf4 commit c34fdf0

30 files changed

+3043
-803
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ Get [ACE for Developers edition](https://www.ibm.com/marketing/iwm/iwm/web/pick.
5555

5656
### Build an image with App Connect Enterprise only
5757

58+
NOTE: The current dockerfiles are tailored towards use by the App Connect Operator and as a result may have function removed from it if we are no longer using it in our operator. If you prefer to use the old dockerfiles for building your containers please use the `Dockerfile-legacy.aceonly` file
59+
60+
5861
The `deps` folder must contain a copy of ACE, **version 12.0.1.0 or greater**. If using ACE for Developers, download it from [here](https://www.ibm.com/marketing/iwm/iwm/web/pick.do?source=swg-wmbfd).
5962
Then set the build argument `ACE_INSTALL` to the name of the ACE file placed in `deps`.
6063

ace_config_webusers.sh

Lines changed: 0 additions & 211 deletions
This file was deleted.

ace_discover_port_overrides.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

ace_integration_server.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ if [ -z "$MQSI_VERSION" ]; then
1111
source /opt/ibm/ace-12/server/bin/mqsiprofile
1212
fi
1313

14+
# Enable TLS on both MQ and DB2
15+
if [ -d /opt/mqm/gskit8/lib64 ]; then
16+
export LD_LIBRARY_PATH=/opt/mqm/gskit8/lib64:$LD_LIBRARY_PATH
17+
fi
18+
1419
if [ -s /home/aceuser/ace-server/odbc.ini ]; then
1520
export ODBCINI=/home/aceuser/ace-server/odbc.ini
1621
fi

cmd/chkacehealthy/main.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,14 @@ func main() {
3636

3737
if err != nil {
3838

39-
fmt.Println("REST endpoint failed" + err.Error())
39+
fmt.Println("Unable to connect to IntegrationServer REST endpoint: " + err.Error() + ", ")
4040

4141
fileInfo, statErr := os.Stat("/tmp/integration_server_restart.timestamp")
4242

43-
if statErr != nil {
43+
if os.IsNotExist(statErr) {
44+
fmt.Println("Integration server is not active")
45+
os.Exit(1)
46+
} else if statErr != nil {
4447
fmt.Println(statErr)
4548
os.Exit(1)
4649
} else {

0 commit comments

Comments
 (0)