When performing an upgrade is always a good idea to backup your production system. It is also good to perform the update on a test system first in order to mitigate risks in production. |
There is a bug in 4.0.4 that breaks upgrading using the web user interface. Specifically, it disables use of the CentOS repositories during the upgrade, which causes some prerequisites to be unavailable, which makes the upgrade fail. The bug has been fixed in 4.2 (and a bunch of other improvements to the upgrade interface have been made too). |
The best way to avoid the problem is to just do the upgrade from the shell command line (you must be logged in as 'root'):
Check your yum repository configuration to make sure that it points to the stable release area:
[sipxecs-stable] name=SIPfoundry sipXecs pbx - latest stable version baseurl=http://download.sipfoundry.org/pub/sipXecs/LatestStable/CentOS/$releasever/$basearch/RPM gpgcheck=0 enabled=1 |
yum update -y
'.System -> Servers
, select the management server, and press Send Profiles
.Send Profiles
.The local domain bind zone is "emptied", if you are using the system as a DNS server, you should copy or backup your zone file before the update. It doesn't effect other zone files on the system, just the one sipx is attached to.
The DHCP 120 test will fail if you are using the on board DHCP server. To correct this you need to add the following to the /etc/dhcpd.conf and restart dhcpd (service dhcpd restart). This is not required if you aren't using the Counterpath Enterprise Clients.
# header section of dhcpd.conf option sip-servers-name code 120 = text; # subnet section of dhcpd.conf option sip-servers-name "<hostname>:12000/cmcprov/login"; |
If you originally installed your system from the sipfoundry ISO in 4.0.4 and are having issues updating, here's some help:
First you have to determine what your redhat-release is:
cat /etc/redhat-release |
If it doesn't say CentOS but says (sipXecs 4.x), then here's what you need to do, AFTER YOU GET A PROPER BACKUP..
ls \-l /etc/yum.repos.d sipxecs-stable-centos.repo |
mv sipxecs-stable-centos.repo CentOS-Base.repo |
[sipxecs-stable] name=SIPfoundry sipXecs pbx - latest stable version baseurl=[http://sipxecs.sipfoundry.org/pub/sipXecs/4.0.4/CentOS/5/i386/RPM/] gpgcheck=0 gpgkey=[https://secure2.pingtel.com/RPM-GPG-KEY-pingtel] enabled=1 |
cd /etc/yum.repos.d wget http://download.sipfoundry.org/pub/sipXecs/sipxecs-4.2.1-centos-i386.repo |
Now you can go from 4.0.4 (ONLY from the command line) with "yum update". DO NOT use the web interface. After you have 4.2.0 working properly and another backup, you should jump right into 4.2.1, which is much easier.
rm sipxecs-4.2.0-centos-i386.repo |
wget http://download.sipfoundry.org/pub/sipXecs/sipxecs-4.2.1-centos.repo |
yum update |