centos5

how to solve curl: (35) error

冷暖自知 提交于 2019-12-04 07:03:33
问题 If I run in my CentOS 5 machine this command: curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony I get this error: curl: (35) error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure However, if I run: curl -v https://symfony.com/ I get this: * About to connect() to symfony.com port 443 (#0) * Trying 176.34.106.156... * Connected to symfony.com (176.34.106.156) port 443 (#0) * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca

Deploying war in Jboss 7.0.1 through Commandline

给你一囗甜甜゛ 提交于 2019-12-03 14:47:50
I have a war file and I need to deploy it on Jboss 7.0.1 Server. Now I have gone through the documentation, but didnt find any thing to deploy a war file. Moreover for deploying your build through command line you generally have to use maven. So do we need for the war as well? If so, does it affects the war file? FYI : I am using linux (CentOs5)... ddri You can deploy a .war file using the Management Command Line Interface. The specific documentation for it is located here: JBoss AS7 Admin Guide - Deployment , with the relevant sections per the below. You might also like to have a quick watch

How to specify which version of perl to use on CentOS

泪湿孤枕 提交于 2019-12-03 07:57:29
I am running CentOS 5.4 which only has version 5.8 of perl available by default, and I have a program which requires perl 5.10, so I compiled perl 5.10 on CentOS. How do I specify which perl I want to run the program with because the perl command uses 5.8 by default. I add my voice to recommending against messing with the system perl at all. No one mentioned App::perlbrew yet. It allows you to have several versions of Perl and switch between them easily. This can be done manually of course but it's much easier to have this tool to do it for you; from the Pod– # Install some Perls perlbrew

How to open port 2195 in iptables CentOS 6 for activating the APNS

二次信任 提交于 2019-12-03 07:01:03
问题 I tried this solution: iptables -I OUTPUT -p tcp --dport 2195 -j ACCEPT /etc/init.d/iptables stop /etc/init.d/iptables start but still can't access the port. If there are more ports that I have to open for APNS let me know. 回答1: How about: iptables -A INPUT -p tcp --dport 2195 -j ACCEPT service iptables restart This may help too. 回答2: See my anwser here: https://stackoverflow.com/a/25229943/1472048 For CentOS 7, you should use "firewall-cmd" command like so: firewall-cmd --add-port=2195/tcp -

Problem installing RMagick rubygem on Centos 5

我只是一个虾纸丫 提交于 2019-12-03 05:06:20
问题 I'm having problems installing the RMagick rubygem on Centos 5. I've followed the steps detailed in http://rmagick.rubyforge.org/install2-linux.html but when I try: sudo gem install rmagick the result is: Building native extensions. This could take a while... ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. /usr/local/bin/ruby extconf.rb checking for Ruby version >= 1.8.5... yes checking for gcc... yes checking for Magick-config... no Can't install RMagick 2.11.0.

Problem installing RMagick rubygem on Centos 5

丶灬走出姿态 提交于 2019-12-02 18:18:26
I'm having problems installing the RMagick rubygem on Centos 5. I've followed the steps detailed in http://rmagick.rubyforge.org/install2-linux.html but when I try: sudo gem install rmagick the result is: Building native extensions. This could take a while... ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. /usr/local/bin/ruby extconf.rb checking for Ruby version >= 1.8.5... yes checking for gcc... yes checking for Magick-config... no Can't install RMagick 2.11.0. Can't find Magick-config in /usr/bin:/bin *** extconf.rb failed *** Could not create Makefile due to

Error in Perl code: Can't locate loadable object for module XML::LibXSLT [duplicate]

ε祈祈猫儿з 提交于 2019-12-02 14:52:41
问题 This question already has an answer here : Perl: V 5.8.8 : Can't locate auto/XML/LibXSLT/new.al on CentOS5/RHEL5 (1 answer) Closed 5 years ago . Environment: CentOS 5. Application: Perl 5.8.8 Apache error saying Error in Perl code: Can't locate loadable object for module XML::LibXSLT It requires following modules: XML::LibXSLT and XML::LibXML Both require v 1.70, I have installed both. My question is, It is saying "cant locate loadable object for module" What module it is exactly looking for

how to solve curl: (35) error

对着背影说爱祢 提交于 2019-12-02 13:07:23
If I run in my CentOS 5 machine this command: curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony I get this error: curl: (35) error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure However, if I run: curl -v https://symfony.com/ I get this: * About to connect() to symfony.com port 443 (#0) * Trying 176.34.106.156... * Connected to symfony.com (176.34.106.156) port 443 (#0) * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * SSLv3, TLS handshake, Client hello (1): * SSLv3, TLS handshake, Server hello

Perl: V 5.8.8 : Can't locate auto/XML/LibXSLT/new.al on CentOS5/RHEL5

家住魔仙堡 提交于 2019-12-02 12:16:30
问题 I am getting Can't locate auto/XML/LibXSLT/new.al error on my CentOS5 machine installed Perl 5.8.8 This issue is related with libxml2 and perl modules XML::LibXML, XML::LibXSLT . For both version in 1.70. Upon settling both modules, further I am getting error for Can't locate auto/XML/LibXSLT/new.al which seems to be a autoload function of LibXSLT , But surprisingly I am not finding any file as new.al . Here is the code snippet through which I am getting this error use XML::LibXML; use XML:

Error in Perl code: Can't locate loadable object for module XML::LibXSLT [duplicate]

我只是一个虾纸丫 提交于 2019-12-02 10:23:30
This question is an exact duplicate of: Perl: V 5.8.8 : Can't locate auto/XML/LibXSLT/new.al on CentOS5/RHEL5 1 answer Environment: CentOS 5. Application: Perl 5.8.8 Apache error saying Error in Perl code: Can't locate loadable object for module XML::LibXSLT It requires following modules: XML::LibXSLT and XML::LibXML Both require v 1.70, I have installed both. My question is, It is saying "cant locate loadable object for module" What module it is exactly looking for ? Further as far as required perl modules... They are all installed and up there. Is there any debugging method like what exactly