openssl,redhat,undefined-symbol,fips
I am trying to use openssl-1.0.0o ... ... ssh: symbol lookup error: ssh: undefined symbol: FIPS_mode OpenSSL 1.0.0's cryptography was never FIPS validated, so that version of the library is not FIPS capable (the second follows from the first). You need to move OpenSSL 1.0.1, or you need to...
You need to update your version of CentOS 6 to 6.5+ or at least your copy of OpenSSL because the node.js package provided for CentOS 6 was compiled on a system that had a newer version of OpenSSL which is available in 6.5+. The alternative is to compile and install...
HTTPSConnection should come with the standard library and isn't part of py2neo itself: https://docs.python.org/2/library/httplib.html#httplib.HTTPSConnection I don't know specifically about how RedHat package Python but it's possible you need to install SSL support in addition to the main language. I believe this is a separate compilation option: http://www.webtop.com.au/blog/compiling-python-with-ssl-support-fedora-10-2009020237...
Most probably iptables is blocking particular port, if it's your test configuration just disable iptables. service iptables save service iptables stop chkconfig iptables off service ip6tables save service ip6tables stop chkconfig ip6tables off If it will not help try to check you SELinux configuration using command getenforce and the same...
PID hash table entries allocated as 2^N struct hlist_heads, which on a 64bit system are 8 bytes each. 2^12*8 = 32768. Inode/Dentry caches are allocated as 2^N pages, usually 4096 bytes each. 2^15*4096 = 134217728. This info is available in the source, kernel/pid.c and fs/inode.c respectively. ...
openshift,blogs,redhat,ghost-blog
Source: https://ghost.org/forum/installation/16533-resolved-upgrading-ghost-0-5-to-0-5-2-on-openshift/ Thanks fuzzmz. Set up a new installation using: rhc app create test nodejs-0.10 mysql-5.1 --env NODE_ENV=production --from-code https://github.com/openshift-quickstart/openshift-ghost-mysql-quickstart.git Go to URL/ghost and setup the admin user. Download latest Ghost archive. Extract archive. cd to the test folder. delete index.js and package.json. delete the core folder. delete the content/themes/casper...
The relationship between the classes is built, but this is insufficient, because relationships will not typically cross class include boundaries. Error: /Stage[main]/Postgresql::Server::Install/Package[postgresql-server]/ensure: change from absent to present failed: Execution of '/usr/bin/yum -d 0 -e 0 -y list postgresql91-server' returned 1: Error: No matching Packages to list Please note that this...
centos,redhat,rpmbuild,rpm-spec
Since the buildroot parm is not passed to rpmbuild, the default path is being used by your spec file: BuildRoot: %{buildroot} Try adding the buildroot parm... Add buildroot /tmp/rpmbuild to --define Or if using a makefile: BUILD_TMP=/tmp/rpmbuild TOP_DIR=/tmp rpmbuild -bb --buildroot $(BUILD_TMP) --topdir $(TOP_DIR) $(SPEC_DIR)/testspec.spec ...
Most likely you are running out of allowed number of user processes. We have encountered the same issue on our CentOs servers and setting ulimit -u 10240 helped.
ruby-on-rails,ruby,mongodb,centos,redhat
I figured it out. Somewhat accidentally, but fairly certain this is the solution. The short answer? If you get that /usr/bin/mongod: symbol lookup error: /usr/bin/mongod: undefined symbol: _ZN7pcrecpp2RE4InitEPKcPKNS_10RE_OptionsE then you should install pcre and pcre-devel from the repository like this: sudo yum install pcre pcre-devel Details on how I discovered...
linux,wcf,mono,monodevelop,redhat
WCF support is currently limited on Mono and as mentioned here - mono-project.com/WCF WSHttpBinding and its dependencies are components with no plan to support. May be you want to fall back on to basichttpbinding which should be supported since it shows WCF modules were in development till .NET 3.0 with...
I would pipe to grep: find -type f -name '*.ext' | grep -vFf list.txt When passing -f grep reads search patterns from a file. -v negates the search. Usually grep treats search patterns as regular expressions. If you -F grep will treat those as fixed strings....
I came across this problem and resolved it by adding the option --pkgnarrow=installed. I suspect repoquery is a little buggy in this regard. I found that some packages would appear even if they were installed, while others would not, unless I added the pkgnarrow option. You could also use --pkgnarrow=all....
RedHat 5 ships with Ruby 1.8.5 and an equally old rubygems. Both, the rubygems and the ruby version is WAY too old to be supported by anything outside the base packages of the OS anymore. Even in the OS packages, they probably won't change anything on their own due to...
php,centos,redhat,lamp,build-error
This seems very much like trying to compile again a non-64 bit library. /usr/local/lib/libbz2.a does not seem to be the correct location for libbz2 (normally system libraries are installed in /usr/lib). How was it installed?
linux,redhat,identity-management
Assuming a RHEL or CentOS-like system, this is a bug, detailed in: Red Hat 995097. The fix that I have in place is to use the oddjobd process to create directories, rather than the legacy pam_mkhomedir. So if you don't already have it, yum install oddjob-mkhomedir. From there, you can...
I guess that you're just facing the problem of unsatisfied dependencies. RHEL/CentOS 6 is pretty old distribution with an old kernel and applications; its recent releases are distributed with deprecated packages (like in your case) due to the needs of the backward compatibility. So is there any significant reason for...
sql,oracle,oracle11g,database-connection,redhat
Looks like your listener is not running. On the DB server, ps -ef | grep lsnr to see if there's a PID running tnslsnr. If not, then you need to start the listener with lsnrctl start.
Just make a subtle change in your script: Change tar --create --gzip --file=$DESTDIR $FILENAME $SRCDIR to tar --create --gzip --file=$DESTDIR$FILENAME $SRCDIR Notice there is no space between $DESTDIR and $FILENAME. To suppress tar: Removing leading '/' from member names, you may use the -P flag cautiously. Also, it'd be nice...
It will work. find A -mtime -18 -mtime +1 -exec cp \{\} B/ \; ...
apache,postgresql,redhat,iptables,postgresql-9.3
OK... Answered... Was a problem with SELinux. Needed to run the following.... setsebool -P httpd_can_network_connect_db on Also if you need to check if SELinux is causing issues it can be turned off with the following setenforce 0 Then once finished setenforce 1 Anyways, done... onwards!...
First we need to copy ./kettle from user directory to server. This directory has repository information. Than: ./pan.sh -rep=repo_id -user=admin -pass=admin -trans=transformation_name If you are running it form cron then you need to set environment variables!!...
linux,apache,tomcat7,redhat,mod-proxy-ajp
So using Mod_jk I kept it simple. The httpd.conf file ONLY needs the redirect commands to call Tomcat to do all the work. Using the Virtual hosts entry only confuses the issue. Anything in the Virtual Host section Apache will work with. Anything with JKMount will go directly to Tomcat....
php,apache,redhat,permission-denied
O_o wowow be quiet, no 777 !!! Others write no!! Protect your folder first with deny from all, require valid user... Or if your folder is public, understand how do it with no 777 perms: Show which user or group uses apache to run itself, in environment variables of apache...
I believe you've installed only the client. For the server do yum install mariadb-server. The package will install appropriate service file for you. The name of the service though is mariadb. Well that is the case on CentOS 7 at least... So, after you install mariadb-server package do systemctl enable...
linux,teamcity,redhat,agent,suse
The build agent configuration file <TeamCity Agent Home>/conf/buildagent.properties gives you the ability to specify properties that can participate in the Agent requirements expressions. You'll need to do a little extra work to get it set up, but it will give you what you're looking for....
Have you tried to use "-s" parameter? From manual: -s, --state <statefile> Tells logrotate to use an alternate state file. This is useful if logrotate is being run as a different user for various sets of log files. The default state file is /var/lib/logrotate/sta- tus. ...
java,scala,virtual-machine,redhat,apache-kafka
The package name is a part of the class name you need to supply on the command line: javac -cp $KCORE:$KCLIENT:$SCORE:. kafka.examples.Producer Also, you should be standing in the root directory of your class hierarchy, which seems to be two directories up (you're currently standing in kafka/examples. Alternatively, you can...
The RedHat doc is terse, but Florian's blog entry is pretty detailed and the references at the end are helpful. The question as asked is sort of vague, so I'm answering what I think you're asking. Briefly, summarizing part of Florian's post, ClusterMon is a resource agent (ocf:pacemaker:ClusterMon) that runs...
you need to add the JMS header "JMSDeliveryMode" as 2. As per the jms-1.1.jar package javax.jms; public interface DeliveryMode { int NON_PERSISTENT = 1; int PERSISTENT = 2; } ...
Killing the program should release the disk space. Until then, the file is unlinked from its folder, but will not cease to exist (as an inode) as long as it is actively open. Check ls -l /proc/<pid>/fd to see what the files are; essentially, everything the kernel knows about that...
locate does not search the file system but uses a prepared "snapshot" created by updatedb, which may typically run in some nightly cron job. If a file has been deleted after last time updatedb was run, you will observe this behaviour. Try locate -e -b SOMENAME instead, this will make...
java,tomcat,jdbc,redhat,openshift
This will not work on OpenShift because OpenSHift expose a set of environment variables that you have to use in your application. You can't use localhost, etc properties. Please use following: String USERNAME = System.getEnv("OPENSHIFT_MYSQL_DB_USERNAME"); String PASSWORD = System.getEnv("OPENSHIFT_MYSQL_DB_PASSWORD"); String DB_NAME = System.getEnv("OPENSHIFT_APP_NAME"); String FORNAME_URL = "com.mysql.jdbc.Driver"; String URL =...
The two important options for dealing with the WAL for streaming replication: wal_keep_segments should be set high enough to allow a slave to catch up after a reasonable lag (i.e. high update volume, slave being offline, etc...). archive_mode enables WAL archiving which can be used to recover files older than...
The first field is the IP address, the second the canonical host name, and any remaining fields are just aliases that will also resolve to the IP address in the first field. ::1 is, indeed, an IPv6 address, which is short for 0000:0000:0000:0000:0000:0000:0000:0001 (the :: stands in for as many...
I skimmed the zip man page and this is what I have found. There is not an option archive files relative to a different directory. The closest I have found is zip -j which removes the entire path and stores the files directly in the zip rather than sub directories....
This can happen for several reasons. To pick a few: Your command may not be in the PATH enforced by sudo. For a command in /usr/local/bin (where your pip appears to be), this is downright likely. Your command may require an alias or shell function to be valid (perhaps you...
linux,terminal,passwords,redhat,sudo
You can use su. This way you are changing the ownership of the session to root (by default, you can also change to any other user on the system) and therefore you will be able to avoid the sudo. Here you can find some more information on the command....
No offense but your code is completely broken. Your using quotes in a… creative way, yet in a completely wrong way. Your code is unfortunately subject to pathname expansions and word splitting. And it's really a shame to have an insecure code to “secure” your PATH. One strategy is to...
c,datetime,timestamp,redhat,time-t
TL;DR: You need to initialize tm before passing it to APIs: memset(&tm, 0, sizeof tm); Why ? strptime might fail without you noticed it: $ man strptime RETURN VALUE The return value of the function is a pointer to the first character not processed in this function call. In case...
linux,shell,unix,crontab,redhat
If this: 0 */15 * * * ./usr/My_PATH/run.sh fails with this error: 0 command not found then you're trying to run it as a shell command. You need to feed it to the crontab command. There are several ways to do this. crontab -l will list the current contents of...
There is no difference. You should use whichever interface you prefer to search and research Carts, as you will arrive at the same place when you choose to deploy. Like you say, from the "Applications" Page there are two pages: The "Create A New Application" Page If you click "Create...
IPv6 on RHEL5.0 cannot handle load. Requirements for our app moved up to RHEL 5.3.
What about: df --total Hint: first look to the manual page: man df. I find it hard these days to find aspects for a program that have not been implemented by some nice flag. Linux people simply seem to know what programmers want/need. Or if you only want the total:...
ruby-on-rails,ssl,openshift,redhat
To access the web ssl area: 1.) Log into the OpenShift web console at www.openshift.com 2.) click on the application that you want to install an ssl certificate for 3.) click on the "change" link next to the application name near the top of the page, this could also be...
My solution was to have the page run the script source date.js again, just before the date formatting was needed. This script is now included twice in the page. I do not know why this was needed just on this one VM server... This placed a band-aid(r) on the problem,...
Solved it. I believe, this was happening particularly in Amazon (AWS) EC2 because of AWS's firewall outside the instance. I had to add rule to the instance to allow the VNC traffic. the process is documented here: GUI in Amazon EC2
c,linux,security,centos,redhat
I've been searching for similar patch for old Fedora release... I found this Q&A over at ServerFault which is about patching older Debian Lenny: http://serverfault.com/questions/662971/how-to-patch-cve-2015-0235-ghost-on-debian-lenny-and-squeeze In one of the answers, they link to official glibc patch which the diff shows a few additional edits other than yours. It's probably the...
linux,debugging,gdb,redhat,lldb
The Debuginfo Packaging page in the Fedora wiki discusses the generation (or lack thereof) of the -debuginfo subpackage when creating a RPM package, but it also includes some information about the debuginfo itself. In short, the debug symbols should be placed under /usr/lib/debug and the source under /usr/src/debug. Reading the...
It is specific to whoever called crontab -e. Whichever user at the time. So sudo crontab -e runs everything since it is owned by the sudoers group. But if you don't use sudo, then crontab will be installed for whatever user called it and thus only have the permissions that...
filesystems,redhat,nautilus,trash,gconf
Turns out that creating a new user profile and copying the settings corrected the problem (even though there was nothing filesystem specific in the gconf file). cp /home/new_username/.gconf/apps/nautilus/preferences/%gconf.xml /home/username/.gconf/apps/nautilus/preferences/...
Instead of messing around with system ruby, you can try setting up ruby using a ruby version manager like rvm or rbenv: rvm: https://rvm.io/ rbenv: https://github.com/sstephenson/rbenv...
Here's what ended up working for me: wget https://elearning.erlang-solutions.com/couchdb//rbingen_adapter//package_R16B_centos664_1361907767/esl-erlang-R16B-2.x86_64.rpm yum install esl-erlang-R16B-2.x86_64.rpm wget https://github.com/jasonmcintosh/esl-erlang-compat/blob/master/rpmbuild/RPMS/noarch/esl-erlang-compat-R14B-1.el6.noarch.rpm?raw=true yum install esl-erlang-compat-R14B-1.el6.noarch.rpm...
openshift,redhat,openshift-client-tools
You should use an older version of ruby, like 1.9.3 or 2.0 instead of 2.2. You also should file a bug report at https://bugzilla.redhat.com/describecomponents.cgi?product=OpenShift%20Online
Typical answer for such cases is: #!/usr/bin/env python That allows your environment's $PATH to determine where python really is....
The kernel often needs to allocate a set of one or more pages which are physically contiguous. This may be necessary while allocating buffers (required by drivers for data transfers such as DMA) or when creating a process stack. Typically, to meet such requirements, kernel attempts to avoid fragmentation by...
According to the Install-unix.txt it says: 533 By default, ImageMagick is installs binaries in /../usr/local/bin, libraries 534 in /../usr/local/lib, header files in /../usr/local/include and documentation 535 in /../usr/local/share. You can specify an alternative installation prefix 536 other than /../usr/local by giving configure the option --prefix=PATH. This 537 valuable in case...
The command line looks correct and it should find the file. Some reasons why it might fail: You don't have permission to enter one of the folders in the path to /eserver6/share/system/config/cluster. You made a typo The file system is remote and the remote file system behaves oddly There is...
In order to enable ZTS, I need to download the php source code, will have to enable zts and it needs to be compiled using gcc's make and make install.
Try the file /etc/bash.bashrc, sometimes it is also used to initialise bash. If not, then try to find the word JAVA_HOME inside the files in /etc with grep -r BASH_HOME /etc UPDATE From man bash: When bash is invoked as an interactive login shell, or as a non-interactive shell with...
When you use a pipe, conventional files are not involved. When you invoke echo "abc" | encrypt -a aes -k key -o output.file the encrypt program does not open a file at all, instead it reads its standard input. The standard input is whatever you set up on the command...
java,database-connection,h2,redhat
Ok - seems that there were some restrictions on the directory. Moved to a different one and it worked fine (though using the same file permissions).
mysql,linux,linux-kernel,redhat
It seems you have a mistake passing -r to zip. Since you need to zip a single file and don't need to travel the directory structure recursively. And more, use pipe and don't create any excess files: #!/bin/sh now="$(date +'%d_%m_%Y_%H_%M_%S')" mysqldump -u Testuser -pTest123123## Testdbuser | zip dbbackup-$now.sql.zip - ...
remote-access,redhat,putty,tty
If your terminal supports an alternate screen buffer, it should have rmcup and smcup define in its terminfo entry % infocmp | grep -e rmcup -e smcup ri=\EM, rmacs=^O, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, smcup=\E7\E[?47h, smir=\E[4h, smkx=\E[?1h\E=, smso=\E[7m, If enabling altscreen in your .screenrc doesn't fix it, try adding these 2 lines to...
AFIK, you will have to limit each container resources in docker run. From Docker Run Reference: Runtime constraints on CPU and memory The operator can also adjust the performance parameters of the container: -m="": Memory limit (format: <number><optional unit>, where unit = b, k, m or g) -c=0 : CPU...
One tells you about the kernel. The other tells you about the distribution. /proc/version has the linux kernel version (and some other stuff). /etc/redhat-release has the version/release of Redhat that you're using. If you upgrade your kernel, then /proc/version will change but /etc/redhat-release won't....
By default gcc 4.8.1 emits DWARF4 debug info. You have to use at least GDB 7.5 to read it. So you have too old gdb for gcc 4.8.1 with default options. You can either: upgrade gdb to a more recent version use -gdwarf-2 gcc key to emit old DWARF debug...
java,multithreading,jetty,redhat
Thread counts are dynamic, depends on many many factors. The number of threads that you see at any one point can vary greatly, based on hardware differences (number of cpu cores, number of network interfaces, etc), kernel differences, java differences, load differences, active user counts, active connection counts, transactions per...
I have recompiled last PHP version with Postgres support option and the problem was solved. However, it is strange, because version of PHP I had before worked with postgres. For some reaon, it stopped working,
licensing,virtual-machine,redhat,esxi
@Bakuriu The only way is to crypt your Disk operating system using LUKS, be aware to store your decrypt password in mind , in a safe place , there is no way to retrieve it.
I came across similar problem and after adding below environment variables it worked for me export M2_HOME=<your apache-maven installation path up to bin> export JAVA_HOME=<your Java installation path up to bin> Also modify your PATH variable...
You will not be able to change the timezone on the server as that would require administrative priviledges. If you would like a specific timezone to be used in your code then you would need to account for that using whatever programming language you are using for your application. You...
Use try-catch and print error message. (If you show error message, maybe I solve the problem.) Open JDK and Oracle JDK is not same operation in whole system. And show input string (encode string)....
It's simple, just create a file named marmatte.repo in /etc/yum.repos.d, and content is as below: [marmotte] name=marmotte baseurl=http://dl.marmotte.net/rpms/redhat/el6/x86_64/ enabled=1 gpgcheck=0 After saving it, run yum makecache....