Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
After upgrading from 7.4 to 8.0 on a UNIX server version 7.4 AcuXDBC Server is running fine on the default port, 20222. When version 8 attempts to start it just spins and eventually maxes out the CPU.
Version 8 is started on port 20223 with: acuxdbcs.sh -start -p 20223
The acuxdbcs.sh script uses -n for specifying the port. The -p was ignored so Version 8.0 was trying to start on the default port, 20222, which was already occupied by 7.4. This caused Version 8.0 to spin and consume the CPU.
Using this command resolved the problem: acuxdbcs.sh -start -n 20223