How Can I Install Openvpn In Centos Server
Sep 7, 2007I want to make vpn server beside hosting server .
how can i install openvpn in centos server?
I want to make vpn server beside hosting server .
how can i install openvpn in centos server?
need some one to install OpenVPN ....
View 5 Replies View Relatedi try running on centos 5.2 : yum install -y openvpn
-bash-3.1# yum install -y openvpn
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Nothing to do
i want install openvpn by yum
I have had great difficulty in setting up OpenVPN, so I thought, when I finally do get it to work, I will write a HOWTO, so other can hopefully benefit…
This guide was done using a FC4 VPS, running on Xen, it will work on OpenVZ, all you need to do is ask your VPS provider to install “tun support”.
1.First of all get a few additional repos, If you already have your repos setup, skip this step
If you have Fedora 3, follow these steps,
[url]
If you have Fedora 4, follow these steps,
[url]
If you have Fedora 5, follow these steps,
[url]
If you have CentOS, follow the “additional third party CentOS repos”
[url]
Then issue these commands, each line is a new command, anything beginning with "#" are comments so dont try to execute those.
Code:
yum update
yum install openssl openssl-devel
# openssl and openssl-devel may be installed already… so don’t worry
2. Right, now you want to install OpenVPN, here are the commands,
Code:
yum install openvpn -y
#Now check that it works
service openvpn start
service openvpn stop
3. A few things to setup before you can make certificates, issue these commands,
Code:
find / -name "easy-rsa"
#you should get an output like this…
/usr/share/doc/openvpn-2.0.7/easy-rsa
#Now, make a copy of the easy-rsa directory, to /etc/openvpn/ ( make sure you #have put the right version number in i.e. mine was -2.0.7, change if needed)
cp -R /usr/share/doc/openvpn-2.0.7/easy-rsa /etc/openvpn/
cd /etc/openvpn/easy-rsa
chmod 777 *
mkdir /etc/openvpn/keys
4. You need to edit the vars file, located in /etc/openvpn/easy-rsa
You can use any editor you like, I used vi.
Change the line
Code:
export KEY_DIR=$D/keys
to
Code:
export KEY_DIR=/etc/openvpn/keys
Also at the bottom of this file you will see something similar to this,
Code:
export KEY_COUNTRY=US
export KEY_PROVINCE=CA
export KEY_CITY=SOMEWHERE
export KEY_ORG="My Org"
export KEY_EMAIL=me@mydomain.com
Change this to your own values.
5. Now its time to make the certificates, enter these commands
Code:
. ./vars
Code:
./clean-all
Code:
./build-ca
# just hit enter to the defaults apart from Common Name, this must be unique
# call it something like mydomain-ca
Code:
./build-key-server server
Code:
./build-key client1
# remember that common name must be unique e.g. use mydomain-client1
# and YES you want to sign the keys
Code:
./build-key client2
# do this step for as many clients as you need.
Code:
./build-dh
6. We are almost done now… right we need to create a few config files, you can download my template from here,
Code:
cd /etc/openvpn
Code:
wget www.designpc.co.uk/downloads/server.conf
# make sure you change a few things in the server.conf file, like DNS
# servers
Code:
touch server-tcp.log
~ this makes the log file..
Code:
touch ipp.txt
this makes the IP reservation list.
7. You need to make a few changes to OpenVPN itself. Go to..
Code:
cd /etc/init.d/
edit the openvpn file
#Uncomment this line (line 119)
Code:
echo 1 > /proc/sys/net/ipv4/ip_forward
Add these lines below it, changing 123.123.123.123 to your public IP address,
Code:
iptables -t nat -A POSTROUTING -s 192.168.2.3 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.4 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.5 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.6 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.7 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.8 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.9 -j SNAT --to 123.123.123.123
iptables -t nat -A POSTROUTING -s 192.168.2.10 -j SNAT --to 123.123.123.123
Now install iptables if you don’t have it already,
Code:
yum install iptables
#test it
service iptables start
service iptables stop
8. Now for the client config files. If your client is a Windows machine, make sure you have installed OpenVPN, use the gui version, downloadable from here;
[url]
You need to copy a few files from the server to your client machine, here is the list, located in /etc/openvpn/keys/
## WARNING ## Use a secure way of transferring these files off the server, something like WinSCP.
ca.crt
client1.csr
client1.key
client1.crt
Put these files in this directory C:Program FilesOpenVPNconfig
Now you need to make a client config, here is an example..
PHP Code:
clientdev tunproto tcp#Change my.publicdomain.com to your public domain or IP addressremote my.publicdomain.com 1194resolv-retry infinitenobindpersist-keypersist-tunca ca.crtcert client1.crtkey client1.keyns-cert-type server#DNS Options here, CHANGE THESE !!push "dhcp-option DNS 123.123.123.123"push "dhcp-option DNS 123.123.123.124"comp-lzoverb 3
Make sure you edit any of the lines with comments above them.
Call this file client1.opvn and put it in C:Program FilesOpenVPNconfig
Make sure the file extension is .opvn not .txt
To connect right click on OpenVPN in the taskbar >> Connect
To test ping 192.168.2.1
I found htop much more easier to understand than top and would like to install it on my cPanel CentOS server. I tried executing following command from root shell:
yum install htop
and got following output:
..................Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
No Match for argument: htop
Nothing to do
Not sure if htop is available for CentOS cpanel servers? If so how can I install it?
Is it possible to Remotely Install Centos on a dedicated server?
View 5 Replies View RelatedThe setup:
2wire BT router (Firmware 6.1.1)
1 Server (Dell) Hardware with NICs (Server is connected to router via Ethernet Cable)
5 Static Ip addresses purchased from BT
Server OS is Centos 5.2
All laptops (5) are able to connect to the net wirelessly. I just did a standard installation of the Centos following [url]
I then tried
Code:
yum update
but it times out. I have no remote access to the server. I can only connect when i am on the router. I have seached, read and tried so many sites and commands but it just is not working. I have had this problem for about a 6 days.
Its a long story but basically this server setup has become a nemesis.
I don't mind providing remote access to the server and router admin page if needed. I am in London btw.
I want to update CentOS from:
Code:
Version Parallels Plesk v12.0.18_build1200140606.15 os_CentOS 6
OS CentOS 6.6 (Final)
to CentOS 7.
What steps I need to do to install CentOS 7?
How do I install/enable SOAP client on a Centos / Cpanel server?
be clear and detailed in the commands I must run and what directories I run them in.
to setup a OpenVPN server on a Trixbox Server I'm running and tell us how to setup a Linksys router running DD-WRT Firmware to connect as a client. We need to make it so remote Cisco IP phones can connect to Trixbox.
View 0 Replies View RelatedI want to install CentOS 5 on my VPS and my current template's don't have it. How do i do this? Or better still, if you have a template pre-made,
View 8 Replies View RelatedI have installed Xen on my CentOS ded box, and now I'm trying to install a Guest OS, also CentOS using the following command:
Code:
virt-install -p --prompt -n CentOS2 -r 512 --file=/vm/centos.img --file-size=15 -l [url]
Now everything starts, I come to the network screen (right after the language selection), leave everything on default, it says it is trying to configure the network with DHCP for eth0 and then hangs there for a moment a does nothing.
How do I continue, how do I configure the network correcly.
I am just starting to learn Xen and would appreciate all the input I get.
I tried to install clamav, but i'm out of luck. It won't install at all. it gives the folloing error:
Transaction Check Error:
file /etc/freshclam.conf from install of clamav-0.95.1-4.el5.rf.i386 conflicts with file from package clamav-toaster-0.95.1-1.3.27.i386 ....
i have a 32bit centos running with 8 gigs, but only 7 is registering when i contacted support they told me
Your server does in fact have 8GB of physical memory however the reason it is not being recognized is due to the fact that you are using a 32 bit operating system. By default, the 8GB would be recognized if it were a 64 bit OS however on a 32 bit operating system, you must install and boot into the PAE kernel (physical address extension) for the 8GB to be recognized and utilized. The PAE kernel can be installed through yum when connected to your server as root over SSH. Once you have installed the kernel, you will need to reboot the server for these changes to take effect
i tried
yum pae install
yum pae kernel install
both didnt work can anyone give me a quick step by step guide on how to go about this.
I try more time noting
root@serv01 [/opt]# ./j2eesdk-1_4_03-linux.bin
Checking available disk space...
Checking Java(TM) 2 Runtime Environment...
Extracting Java(TM) 2 Runtime Environment files...
Extracting installation files...
Launching Java(TM) 2 Runtime Environment...
Error: The Java(TM) Virtual Machine has aborted.
Deleting temporary files...
Deleting temporary files...
how can install java because i need to it
I finally got my hands on a test server and am playing with Centos.
I got it installed but am not sure where to go from here in regards to getting it setup for web server use.
Is there any documentation on what to install for web server use? Is there a cheat sheet out there I can follow?
Been fooling around with red5 too long now. I really need this app to work so I can use the audio/video option on my chat.
I'm willing to pay the person who can make red5 work on my linux centos server. I allready installed ant & red5, the java is just a bit to tricky for me.
Like I said, I'm willing to pay a fee for the person who can make the red5 work.
I have a dedicated linux server and i want to install zimbra(open source mail server) on my server,i have googled and install it but it doesn't work..i can't login in to admin panel [url]but it throws page load error.
View 4 Replies View Relatedim going to be installing centos 5.1 on a webserver. which packages should i install. ie when it gives the the options for kde knome server server with gui etc?
View 6 Replies View RelatedI am using apachetop and it says in order to resolve host names (-r flag), adns must be installed. Host names aren't being resolved, so it appears I don't have adns, and I have googled but can't figure out where to get it and how to install it.
View 2 Replies View Relatedi run cd home
wget -q [url] sh latest
but give me error
error: [url] : import read failed.
Your operating system's rpm update method (yum) was not able to locate the glibc package. This is an indication of an improper setup. You must correct this error before you can proceed.
i reinstalled my vps that is virtuozzo
how may i install os(centos)?
I downloaded the latest 3dm2 software:
wget [url]
However, after extracting it, when I run the setup (./setupLinux_x64.bin -console) I get "Bundled JRE is not binary compatible with host OS/Arch or it is corrupt. Testing bundled JRE failed."
Can anyone give me the steps for installing 3dm2 on a centos/WHM box?
The card is a 3ware 9690SA.
to install the complete FFMPEG package onto my VPS which includes, FFMPEG, Mplayer, Mencoder, Lame, etc.
I generally use the following script which works as a charm, but doesn't work very well on CentOS 64-Bit.
Other manual install Zabbix on CentOS 5.
Zabbix for used a vps, this is a problem?
I'm planning to rent a Dedicated Server soon, but before I would like to deploy my application to a VMWare appliance on my local machine.
The OS that i'm planning to use is CentOS 5.1
Does anyone knows how the dedicated server's on hosting companies are customized or installed?
I'm installing in on my machine, but there are many options to select.
For example, I did not installed the GUI, just to mirror my a server setup.
Any idea how is the best way to mirror a dedicated server installation, for learning purposes?
how to install mod_top on a Cpanel / Centos box?
[url]
This does not work (gives off errors such as file or dir not found)
i downloaded [url]
and
[url]
from [url]
but how may i install it?
i read readme but ...
I have been trying to get mod_rewrite to work on my CentOS server running the BQ.
Now what i need is to be allowed to use .htaccess files to use mod rewrite to allow me to use SEO urls.
Anyone know what needs to be done on CentOs, to be able to do it?
I have done the only instruction on Centos about it:
Quote:
# vi /etc/httpd/conf/httpd.conf
FIND SECTION BEGINNING
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AND CHANGE
AllowOverride None
TO
AllowOverride All
Order allow,deny
Allow from all
</Directory>
SAVE FILE AND THEN
# service httpd restart
Although i still get the "500 Internal Server Error" message.
with installing PHP5 on CentOS? I tried this:
Quote:
$ yum --enablerepo=centosplus --exclude=php-domxml install php*
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package php-pear-Cache.noarch 0:1.5.5-0.1.RC4.el4.centos set to be updated
---> Package php-odbc.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Net-Curl.noarch 0:1.2.3-2.el4.centos set to be updated
---> Package php-mhash.x86_64 0:5.1.6-1.el4.centos set to be updated
---> Package php-dbase.x86_64 0:5.1.6-1.el4.centos set to be updated
---> Package php-mysql.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-gd.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-XML-Beautifier.noarch 0:1.1-1.el4.centos set to be updated
---> Package php-mcrypt.x86_64 0:5.1.6-1.el4.centos set to be updated
---> Package php-pear-HTTP.noarch 0:1.4.0-7.el4.centos set to be updated
---> Package php-xml.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-XML-Serializer.noarch 0:0.18.0-2.el4.centos set to be updated
---> Package php-pecl-apc.x86_64 0:3.0.12-1.el4.centos set to be updated
---> Package php-pear-Validate-Finance-CreditCard.noarch 0:0.5.2-1.el4.centos set to be updated
---> Package php-pear-Date.noarch 0:1.4.6-1.el4.centos set to be updated
---> Package php-pear-XML-Parser.noarch 0:1.2.7-4.el4.centos set to be updated
---> Package php-soap.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Net-Socket.noarch 0:1.0.6-5.el4.centos set to be updated
---> Package php-pear-XML-Util.noarch 0:1.1.1-1.el4.centos set to be updated
---> Package php-pgsql.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-MDB2.noarch 0:2.2.2-2.el4.centos set to be updated
---> Package php-eaccelerator.x86_64 0:5.1.6_0.9.5-1.el4.centos set to be updated
---> Package php-pear-PHP-Compat.noarch 0:1.5.0-1.el4.centos.1 set to be updated
---> Package php-pear-HTTP-Request.noarch 0:1.4.0-1.el4.centos set to be updated
---> Package php-pecl-mailparse.x86_64 0:2.1.1-4.el4.centos set to be updated
---> Package php-pear-XML-RSS.noarch 0:0.9.10-2.el4.centos set to be updated
---> Package php-dba.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-common.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-ncurses.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-HTML-Table.noarch 0:1.7.5-1.el4.centos set to be updated
---> Package php.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-DB.noarch 0:1.7.6-6.el4.centos set to be updated
---> Package php-pear-Mail-Mime.noarch 0:1.3.1-8.el4.centos set to be updated
---> Package php-pear-Auth-SASL.noarch 0:1.0.2-4.el4.centos set to be updated
---> Package php-pear-Mail.noarch 0:1.1.14-1.el4.centos set to be updated
---> Package php-pear-PHPUnit.noarch 0:1.3.2-1.el4.centos.1 set to be updated
---> Package php-pear-Net-URL.noarch 0:1.0.14-1.el4.centos set to be updated
---> Package php-pear-Console-Table.noarch 0:1.0.5-2.el4.centos.1 set to be updated
---> Package php-pear-Net-DIME.noarch 0:0.3-1.el4.centos set to be updated
---> Package php-pear-Pager.noarch 0:2.4.2-1.el4.centos set to be updated
---> Package php-pdo.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Log.noarch 0:1.9.9-1.el4.centos set to be updated
---> Package php-bcmath.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Benchmark.noarch 0:1.2.6-1.el4.centos set to be updated
---> Package php-snmp.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Net-SMTP.noarch 0:1.2.8-5.el4.centos set to be updated
---> Package php-pear.noarch 1:1.4.11-1.el4s1.1 set to be updated
---> Package php-xmlrpc.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-DB-QueryTool.noarch 0:1.0.3-1.el4.centos set to be updated
---> Package php-pear-PHPUnit2.noarch 0:2.3.6-1.el4.centos set to be updated
---> Package php-devel.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-mbstring.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Payment-Process.noarch 0:0.6.5-1.el4.centos set to be updated
---> Package php-pear-Net-FTP.noarch 0:1.3.2-1.el4.centos set to be updated
---> Package php-pear.x86_64 0:4.3.9-3.22.5 set to be updated
---> Package php-cli.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-readline.x86_64 0:5.1.6-1.el4.centos set to be updated
---> Package php-pear-Console-Getargs.noarch 0:1.3.3-1.el4.centos set to be updated
---> Package php-imap.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pecl-zip.x86_64 0:1.8.0-1.el4.centos set to be updated
---> Package php-pear-Validate.noarch 0:0.6.4-1.el4.centos set to be updated
---> Package php-pear-Date-Holidays.noarch 0:0.16.1-1.el4.centos set to be updated
---> Package php-pear-HTML-Common.noarch 0:1.2.3-2.el4.centos set to be updated
---> Package php-pear-PHP-CompatInfo.noarch 0:1.4.0-1.el4.centos set to be updated
---> Package php-ldap.x86_64 0:5.1.6-3.el4s1.7 set to be updated
---> Package php-pear-Image-GraphViz.noarch 0:1.2.1-1.el4.centos set to be updated
---> Package php-tidy.x86_64 0:5.1.6-1.el4.centos set to be updated
--> Running transaction check
--> Processing Conflict: php-pecl-apc conflicts php-eaccelerator
--> Processing Dependency: autoconf for package: php-devel
--> Processing Dependency: libexslt.so.0()(64bit) for package: php-xml
--> Processing Dependency: libmcrypt.so.4()(64bit) for package: php-mcrypt
--> Processing Dependency: php-pecl(Xdebug) for package: php-pear-PHPUnit2
--> Processing Dependency: graphviz for package: php-pear-Image-GraphViz
--> Processing Dependency: libmhash.so.2()(64bit) for package: php-mhash
--> Processing Dependency: net-snmp for package: php-snmp
--> Processing Dependency: libpq.so.4()(64bit) for package: php-pgsql
--> Processing Dependency: libltdl.so.3()(64bit) for package: php-mcrypt
--> Processing Dependency: libmysqlclient.so.15()(64bit) for package: php-mysql
--> Processing Dependency: php = 4.3.9-3.22.5 for package: php-pear
--> Processing Dependency: libmysqlclient.so.15(libmysqlclient_15)(64bit) for package: php-mysql
--> Processing Dependency: automake for package: php-devel
--> Processing Dependency: libnetsnmp.so.5()(64bit) for package: php-snmp
--> Processing Dependency: libtidy-0.99.so.0()(64bit) for package: php-tidy
--> Processing Dependency: libxslt.so.1()(64bit) for package: php-xml
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Package libtidy.x86_64 0:0.99.0-9.20051025.el4.centos.3 set to be updated
---> Package postgresql-libs.x86_64 0:8.1.9-1.el4s1.1 set to be updated
---> Package net-snmp-libs.x86_64 0:5.1.2-11.EL4.10 set to be updated
---> Package libxslt.x86_64 0:1.1.11-1 set to be updated
---> Package libtool-libs.x86_64 0:1.5.6-4.EL4.1.c4.4 set to be updated
---> Package autoconf.noarch 0:2.59-5 set to be updated
---> Package automake.noarch 0:1.9.2-3 set to be updated
---> Package mysql.x86_64 0:5.0.27-1.el4.centos set to be updated
---> Package net-snmp.x86_64 0:5.1.2-11.EL4.10 set to be updated
---> Package libmcrypt.x86_64 0:2.5.7-4.el4.centos set to be updated
---> Package mhash.x86_64 0:0.9.2-4 set to be updated
--> Running transaction check
--> Processing Conflict: php-pecl-apc conflicts php-eaccelerator
--> Processing Dependency: libgpg-error.so.0()(64bit) for package: libxslt
--> Processing Dependency: php-pecl(Xdebug) for package: php-pear-PHPUnit2
--> Processing Dependency: libgcrypt.so.11()(64bit) for package: libxslt
--> Processing Dependency: graphviz for package: php-pear-Image-GraphViz
--> Processing Dependency: libmysqlclient.so.14(libmysqlclient_14)(64bit) for package: mysql-server
--> Processing Dependency: mysql = 4.1.20-2.RHEL4.1 for package: mysql-server
--> Processing Dependency: libpq.so.3()(64bit) for package: dovecot
--> Processing Dependency: libmysqlclient.so.14()(64bit) for package: mysql-server
--> Processing Dependency: libmysqlclient_r.so.14()(64bit) for package: mysql-server
--> Processing Dependency: php = 4.3.9-3.22.5 for package: php-pear
--> Processing Dependency: mysql = 4.1.20-2.RHEL4.1 for package: mysql-devel
--> Processing Dependency: libmysqlclient.so.14()(64bit) for package: perl-DBD-MySQL
--> Processing Dependency: libmysqlclient_r.so.14(libmysqlclient_14)(64bit) for package: mysql-server
--> Processing Dependency: libmysqlclient.so.14(libmysqlclient_14)(64bit) for package: dovecot
--> Processing Dependency: libmysqlclient.so.14()(64bit) for package: dovecot
--> Processing Dependency: m4 for package: autoconf
--> Processing Dependency: libsensors.so.3()(64bit) for package: net-snmp
--> Processing Dependency: libgcrypt.so.11(GCRYPT_1.2)(64bit) for package: libxslt
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Package mysqlclient14.x86_64 0:4.1.22-1.el4s1.1 set to be updated
---> Package postgresqlclient7.x86_64 0:7.4.14-1.el4s1.1.el4.centos set to be updated
---> Package mysql-server.x86_64 0:5.0.27-1.el4.centos set to be updated
---> Package m4.x86_64 0:1.4.1-16 set to be updated
---> Package lm_sensors.x86_64 0:2.8.7-2.40.3 set to be updated
---> Package libgcrypt.x86_64 0:1.2.0-3 set to be updated
---> Package mysql-devel.x86_64 0:5.0.27-1.el4.centos set to be updated
---> Package perl-DBD-MySQL.x86_64 0:3.0008-1.el4.centos set to be updated
---> Package libgpg-error.x86_64 0:1.0-1 set to be updated
--> Running transaction check
--> Processing Conflict: php-pecl-apc conflicts php-eaccelerator
--> Processing Dependency: php-pecl(Xdebug) for package: php-pear-PHPUnit2
--> Processing Dependency: graphviz for package: php-pear-Image-GraphViz
--> Processing Dependency: perl(:MODULE_COMPAT_5.8.8) for package: perl-DBD-MySQL
--> Processing Dependency: php = 4.3.9-3.22.5 for package: php-pear
--> Processing Dependency: kernel-utils for package: lm_sensors
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Package kernel-utils.x86_64 1:2.4-13.1.99 set to be updated
---> Package perl.x86_64 4:5.8.8-4.el4s1 set to be updated
--> Running transaction check
--> Processing Conflict: php-pecl-apc conflicts php-eaccelerator
--> Processing Dependency: graphviz for package: php-pear-Image-GraphViz
--> Processing Dependency: php = 4.3.9-3.22.5 for package: php-pear
--> Processing Dependency: php-pecl(Xdebug) for package: php-pear-PHPUnit2
--> Finished Dependency Resolution
Error: php-pecl-apc conflicts with php-eaccelerator
Error: Missing Dependency: php-pecl(Xdebug) is needed by package php-pear-PHPUnit2
Error: Missing Dependency: graphviz is needed by package php-pear-Image-GraphViz
Error: Missing Dependency: php = 4.3.9-3.22.5 is needed by package php-pear
Anyone know how to resolve these dependencies?