Skip to content

Commit

Permalink
112.0.2.0-r1 update (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
IBMRob authored Oct 18, 2021
1 parent ffcebf4 commit c34fdf0
Show file tree
Hide file tree
Showing 30 changed files with 3,043 additions and 803 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ Get [ACE for Developers edition](https://www.ibm.com/marketing/iwm/iwm/web/pick.

### Build an image with App Connect Enterprise only

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


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).
Then set the build argument `ACE_INSTALL` to the name of the ACE file placed in `deps`.

Expand Down
211 changes: 0 additions & 211 deletions ace_config_webusers.sh

This file was deleted.

5 changes: 0 additions & 5 deletions ace_discover_port_overrides.sh

This file was deleted.

5 changes: 5 additions & 0 deletions ace_integration_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ if [ -z "$MQSI_VERSION" ]; then
source /opt/ibm/ace-12/server/bin/mqsiprofile
fi

# Enable TLS on both MQ and DB2
if [ -d /opt/mqm/gskit8/lib64 ]; then
export LD_LIBRARY_PATH=/opt/mqm/gskit8/lib64:$LD_LIBRARY_PATH
fi

if [ -s /home/aceuser/ace-server/odbc.ini ]; then
export ODBCINI=/home/aceuser/ace-server/odbc.ini
fi
Expand Down
7 changes: 5 additions & 2 deletions cmd/chkacehealthy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,14 @@ func main() {

if err != nil {

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

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

if statErr != nil {
if os.IsNotExist(statErr) {
fmt.Println("Integration server is not active")
os.Exit(1)
} else if statErr != nil {
fmt.Println(statErr)
os.Exit(1)
} else {
Expand Down
Loading

0 comments on commit c34fdf0

Please sign in to comment.