question_id int64 88 79.9M | title_clean stringlengths 14 150 | body_clean stringlengths 41 26.5k | full_text stringlengths 63 26.6k | tags stringlengths 4 105 | score int64 3 7.71k | view_count int64 46 12.2M | answer_count int64 0 79 | link stringlengths 56 125 |
|---|---|---|---|---|---|---|---|---|
35,019,277 | trouble getting incron inotify to work | so after alex answer here are my steps : creating shell code root@ip[/]# touch mylog.sh root@ip[/]# nano mylog.sh copying the code in the mylog.sh #!/bin/bash echo "File $1 created." >> /mylog.log permission root@ip[/]# chmod +x mylog.sh creating the log file root@ip[/]# touch mylog.log opening icron table incrontab -e... | trouble getting incron inotify to work so after alex answer here are my steps : creating shell code root@ip[/]# touch mylog.sh root@ip[/]# nano mylog.sh copying the code in the mylog.sh #!/bin/bash echo "File $1 created." >> /mylog.log permission root@ip[/]# chmod +x mylog.sh creating the log file root@ip[/]# touch myl... | linux, centos, filesystems, incron | 13 | 6,049 | 2 | https://stackoverflow.com/questions/35019277/trouble-getting-incron-inotify-to-work |
29,508,981 | systemd service startup issue | This is the first time I've used systemd and a bit unsure about something. I've got a service that I've set up (for geoserver running under tomcat): [Unit] Description=Geoserver After=network.target [Service] Type=oneshot ExecStart=/usr/local/geoserver/bin/startup-optis.sh ExecStop=/usr/local/geoserver/bin/shutdown-opt... | systemd service startup issue This is the first time I've used systemd and a bit unsure about something. I've got a service that I've set up (for geoserver running under tomcat): [Unit] Description=Geoserver After=network.target [Service] Type=oneshot ExecStart=/usr/local/geoserver/bin/startup-optis.sh ExecStop=/usr/lo... | centos, systemd | 13 | 10,003 | 1 | https://stackoverflow.com/questions/29508981/systemd-service-startup-issue |
23,965,958 | How to change rpmbuild default directory from /root/rpmbuild directory to other | I have to build a rpm package for some drivers. I need to build the rpm from a .tar.gz archive. The tar ball also contains the .spec file. I have set up my rpmbuild environment as described here: [URL] My directory structure is thus: /home/rpmbuild /home/rpmbuild/BUILD /home/rpmbuild/RPMS /home/rpmbuild/SOURCES /home/r... | How to change rpmbuild default directory from /root/rpmbuild directory to other I have to build a rpm package for some drivers. I need to build the rpm from a .tar.gz archive. The tar ball also contains the .spec file. I have set up my rpmbuild environment as described here: [URL] My directory structure is thus: /home/... | linux, centos, rpm, rhel, rpmbuild | 13 | 22,219 | 4 | https://stackoverflow.com/questions/23965958/how-to-change-rpmbuild-default-directory-from-root-rpmbuild-directory-to-other |
23,229,682 | Special escaping for crontab | I have the following user crontab entry on a RHEL 6 machine (sensitive values have been replaced): MAILTO=cron-errors@organisation.com 0 5 * * * ~/bin/app_state.sh host-arg 9200 > ~/state/app-state-$(hostname)-$(date +%F).json Which produces this entry in /var/log/cron : Apr 23 05:00:08 host CROND[13901]: (dbjobs) CMD ... | Special escaping for crontab I have the following user crontab entry on a RHEL 6 machine (sensitive values have been replaced): MAILTO=cron-errors@organisation.com 0 5 * * * ~/bin/app_state.sh host-arg 9200 > ~/state/app-state-$(hostname)-$(date +%F).json Which produces this entry in /var/log/cron : Apr 23 05:00:08 hos... | bash, cron, rhel | 13 | 13,386 | 1 | https://stackoverflow.com/questions/23229682/special-escaping-for-crontab |
17,460,705 | The missing system tray icons on Fedora 19 Desktop Edition | Once installing Fedora 19 Desktop Edition, I run the systray of Qt Example. But I could not look for the system tray icon. There is no Notification area in the Activities overview. Please let me know to display the notification area or the tray icon. | The missing system tray icons on Fedora 19 Desktop Edition Once installing Fedora 19 Desktop Edition, I run the systray of Qt Example. But I could not look for the system tray icon. There is no Notification area in the Activities overview. Please let me know to display the notification area or the tray icon. | fedora, gnome, notification-area | 13 | 15,218 | 4 | https://stackoverflow.com/questions/17460705/the-missing-system-tray-icons-on-fedora-19-desktop-edition |
1,495,619 | How to make APC (PHP Cache) work? | I've read about APC that it speeds up multiple php file sites. So I have this particular project in PHP with many files and i discover that require_once and parsing only class definitions (without executing them) takes most time. So I've installed APC on my CentOS 5 server. I moved apc.php to my webserver and it displa... | How to make APC (PHP Cache) work? I've read about APC that it speeds up multiple php file sites. So I have this particular project in PHP with many files and i discover that require_once and parsing only class definitions (without executing them) takes most time. So I've installed APC on my CentOS 5 server. I moved apc... | php, caching, centos, apc | 13 | 20,255 | 6 | https://stackoverflow.com/questions/1495619/how-to-make-apc-php-cache-work |
71,148,356 | How to disable chrome --enable-crashpad process? | Every time I quit the chrome browser, this process remains active. As far as I recall, previously, when I closed the browser, all processes associated with Chrome were also closed. Somehow, it is bothering and killing resources. How do I disable it? I am currently using fedora35-gnome. | How to disable chrome --enable-crashpad process? Every time I quit the chrome browser, this process remains active. As far as I recall, previously, when I closed the browser, all processes associated with Chrome were also closed. Somehow, it is bothering and killing resources. How do I disable it? I am currently using ... | linux, google-chrome, fedora | 12 | 5,211 | 0 | https://stackoverflow.com/questions/71148356/how-to-disable-chrome-enable-crashpad-process |
68,392,703 | How to make venv completely portable? | I want to create a venv environment (not virtualenv ) using the following commands: sudo apt-get install python3.8-venv python3.8 -m venv venv_name source venv_name/bin/activate But it seems to be that it contains dependency on the system where it is created and it creates problems whenever I want to make it portable. ... | How to make venv completely portable? I want to create a venv environment (not virtualenv ) using the following commands: sudo apt-get install python3.8-venv python3.8 -m venv venv_name source venv_name/bin/activate But it seems to be that it contains dependency on the system where it is created and it creates problems... | linux, centos, virtualenv, python-venv | 12 | 19,398 | 2 | https://stackoverflow.com/questions/68392703/how-to-make-venv-completely-portable |
61,898,627 | InetAddress.getLocalHost().getHostName() different behavior between JDK 11 and JDK 8 | I wrote a simple java program to basically run: System.out.println(InetAddress.getLocalHost().getHostName()); If I compile it and run it on Java 1.7.231 or 1.8.221 On RHEL 7.7, it returns the FQDN (computer.domain.com), but ON THE SAME SERVER, compile it in RHEL JDK 11.0.2 it returns only the server name. As I understa... | InetAddress.getLocalHost().getHostName() different behavior between JDK 11 and JDK 8 I wrote a simple java program to basically run: System.out.println(InetAddress.getLocalHost().getHostName()); If I compile it and run it on Java 1.7.231 or 1.8.221 On RHEL 7.7, it returns the FQDN (computer.domain.com), but ON THE SAME... | java, rhel7, openjdk-11 | 12 | 3,589 | 4 | https://stackoverflow.com/questions/61898627/inetaddress-getlocalhost-gethostname-different-behavior-between-jdk-11-and-j |
59,661,379 | Discard old build in multi-branch pipeline job, doesn't really delete builds from server | I have multi-branch pipeline job in Jenkins: [URL] and I checked the option for Discard old builds as below: I would have expected, that each new run after this change, it will delete old build from the server for each Repository inside that pipeline. however, I see all builds are still there, which causing me a File s... | Discard old build in multi-branch pipeline job, doesn't really delete builds from server I have multi-branch pipeline job in Jenkins: [URL] and I checked the option for Discard old builds as below: I would have expected, that each new run after this change, it will delete old build from the server for each Repository i... | jenkins-pipeline, jenkins-plugins, rhel | 12 | 15,335 | 2 | https://stackoverflow.com/questions/59661379/discard-old-build-in-multi-branch-pipeline-job-doesnt-really-delete-builds-fro |
59,232,286 | ERROR: Cannot uninstall 'wrapt'. when installing tensorflow-gpu~=1.14 | I am trying to install the following version of TensorFlow-GPU because the author of gitrepo has suggested it here . [jalal@goku examples]$ pip install tensorflow-gpu~=1.14 Collecting tensorflow-gpu~=1.14 Using cached [URL] Processing /home/grad3/jalal/.cache/pip/wheels/d7/de/2e/efa132238792efb6459a96e85916ef8597fcb3d2... | ERROR: Cannot uninstall 'wrapt'. when installing tensorflow-gpu~=1.14 I am trying to install the following version of TensorFlow-GPU because the author of gitrepo has suggested it here . [jalal@goku examples]$ pip install tensorflow-gpu~=1.14 Collecting tensorflow-gpu~=1.14 Using cached [URL] Processing /home/grad3/jal... | python, linux, tensorflow, pip, centos | 12 | 24,975 | 7 | https://stackoverflow.com/questions/59232286/error-cannot-uninstall-wrapt-when-installing-tensorflow-gpu-1-14 |
58,682,387 | Error while trying to ssh a docker container : System is booting up | I am trying to build an image and run container as an ssh server. I want to be able to ssh that container (remote_host) from another container (jenkins/jenkins) I am using a VM with Centos. I am using this docker file. I run it from my VM host machine(Centos too) FROM centos RUN yum -y install openssh-server openssh-cl... | Error while trying to ssh a docker container : System is booting up I am trying to build an image and run container as an ssh server. I want to be able to ssh that container (remote_host) from another container (jenkins/jenkins) I am using a VM with Centos. I am using this docker file. I run it from my VM host machine(... | docker, docker-compose, centos, dockerfile, openssh | 12 | 8,457 | 5 | https://stackoverflow.com/questions/58682387/error-while-trying-to-ssh-a-docker-container-system-is-booting-up |
55,363,823 | Redhat/CentOS - `GLIBC_2.18' not found | I was trying to run redis server (on a CentOS server) with specific module: redis-server --loadmodule ./redisql_v0.9.1_x86_64.so and getting error: Module ./redisql_v0.9.1_x86_64.so failed to load: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./redisql_v0.9.1_x86_64.so) this is the linux version: uname... | Redhat/CentOS - `GLIBC_2.18' not found I was trying to run redis server (on a CentOS server) with specific module: redis-server --loadmodule ./redisql_v0.9.1_x86_64.so and getting error: Module ./redisql_v0.9.1_x86_64.so failed to load: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./redisql_v0.9.1_x86_... | linux, redis, centos, redhat, glibc | 12 | 44,383 | 2 | https://stackoverflow.com/questions/55363823/redhat-centos-glibc-2-18-not-found |
53,918,767 | Mouse stopped clicking in CentOS running in Virtual Box | I have an CentOS 7 VM in the VirtualBox 6 running on Windows. I have just installed it and immediately updated whole system (sudo yum update), as result kernel version 3.10.0-957.1.3.el7 was installed. After I rebooted and logged in into the system, mouse started working strange. Mouse can be moved, application menu ca... | Mouse stopped clicking in CentOS running in Virtual Box I have an CentOS 7 VM in the VirtualBox 6 running on Windows. I have just installed it and immediately updated whole system (sudo yum update), as result kernel version 3.10.0-957.1.3.el7 was installed. After I rebooted and logged in into the system, mouse started ... | centos, centos7, centos7.6 | 12 | 10,806 | 2 | https://stackoverflow.com/questions/53918767/mouse-stopped-clicking-in-centos-running-in-virtual-box |
53,894,712 | ModuleNotFoundError: No module named 'dnf' when running yum or dnf | A few days ago I wanted to run dnf but I received the following error Traceback (most recent call last): File "/usr/bin/dnf", line 57, in <module> from dnf.cli import main ModuleNotFoundError: No module named 'dnf' Thus I tried to run yum and I received something similar: Traceback (most recent call last): File "/usr/b... | ModuleNotFoundError: No module named 'dnf' when running yum or dnf A few days ago I wanted to run dnf but I received the following error Traceback (most recent call last): File "/usr/bin/dnf", line 57, in <module> from dnf.cli import main ModuleNotFoundError: No module named 'dnf' Thus I tried to run yum and I received... | python, fedora, yum, dnf | 12 | 55,930 | 9 | https://stackoverflow.com/questions/53894712/modulenotfounderror-no-module-named-dnf-when-running-yum-or-dnf |
53,729,722 | logrotate doesn't rotate catalina.out | I am trying to use logrotate to rotate out tomcat's catalina.out automatically on a daily basis even though I can manually call logrotate and it works fine. I am using I have tried every solution out there, but I cannot get it to rotate. I am on Oracle Linux 7.5 which is basically RHEL 7. Here are the steps I have take... | logrotate doesn't rotate catalina.out I am trying to use logrotate to rotate out tomcat's catalina.out automatically on a daily basis even though I can manually call logrotate and it works fine. I am using I have tried every solution out there, but I cannot get it to rotate. I am on Oracle Linux 7.5 which is basically ... | tomcat, apache-tomee, rhel7, logrotate, oraclelinux | 12 | 32,932 | 4 | https://stackoverflow.com/questions/53729722/logrotate-doesnt-rotate-catalina-out |
50,855,419 | Get only IPv4 ips via NodeJS express | I have a NodeJS express service running on Centos and listens to GET requests and I need to identify the IP of the user. Currently, I'm using this script ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress || req.socket.remoteAddress || req.connection.socket.remoteAddress The problem is that sometimes t... | Get only IPv4 ips via NodeJS express I have a NodeJS express service running on Centos and listens to GET requests and I need to identify the IP of the user. Currently, I'm using this script ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress || req.socket.remoteAddress || req.connection.socket.remoteAd... | node.js, express, centos, ipv6, ipv4 | 12 | 23,475 | 1 | https://stackoverflow.com/questions/50855419/get-only-ipv4-ips-via-nodejs-express |
50,648,152 | How to install a rpm package and its dependencies offline | I want to install a rpm package, (e.g. python 3), and all of its dependencies in a linux server that does not have internet connection. How can I do that? | How to install a rpm package and its dependencies offline I want to install a rpm package, (e.g. python 3), and all of its dependencies in a linux server that does not have internet connection. How can I do that? | linux, centos, centos7, rpm | 12 | 62,507 | 3 | https://stackoverflow.com/questions/50648152/how-to-install-a-rpm-package-and-its-dependencies-offline |
49,269,911 | How to update VS Code in Fedora 27 | In my work I have been told that need to use Fedora. I use VS Code and when I want to update I got redirected to download a .tar.gz file. What is the right way to install the newer version? | How to update VS Code in Fedora 27 In my work I have been told that need to use Fedora. I use VS Code and when I want to update I got redirected to download a .tar.gz file. What is the right way to install the newer version? | visual-studio-code, fedora, fedora-27 | 12 | 15,299 | 2 | https://stackoverflow.com/questions/49269911/how-to-update-vs-code-in-fedora-27 |
48,236,592 | Adding a shell command inside/inline of a systemd service file | I am running the gunicorn server as a service via systemd, Here is the sample service file: [Unit] Description=Gunicorn NGINX After=network.target [Service] User=root Group=www-data WorkingDirectory=/test ExecStart=/usr/local/bin/gunicorn --workers 8 --threads 8 --backlog 100 --bind 10.0.0.20:5000 -m 777 abc:app Restar... | Adding a shell command inside/inline of a systemd service file I am running the gunicorn server as a service via systemd, Here is the sample service file: [Unit] Description=Gunicorn NGINX After=network.target [Service] User=root Group=www-data WorkingDirectory=/test ExecStart=/usr/local/bin/gunicorn --workers 8 --thre... | linux, centos, systemd | 12 | 16,851 | 1 | https://stackoverflow.com/questions/48236592/adding-a-shell-command-inside-inline-of-a-systemd-service-file |
44,715,458 | Build docker image fail : Exiting on user command | The Dockerfile is as fellow: FROM centos:latest RUN yum install git \ nginx && \ pip install uwsgi \ The result of executing docker build command build When using yum install pakage, we maybe make choice like this "Is this ok [y/d/N]", I can inter "y" easily in the terminal. But how can I select the choice when I build... | Build docker image fail : Exiting on user command The Dockerfile is as fellow: FROM centos:latest RUN yum install git \ nginx && \ pip install uwsgi \ The result of executing docker build command build When using yum install pakage, we maybe make choice like this "Is this ok [y/d/N]", I can inter "y" easily in the term... | docker, centos, dockerfile, yum | 12 | 8,549 | 1 | https://stackoverflow.com/questions/44715458/build-docker-image-fail-exiting-on-user-command |
41,467,908 | CentOS 7 + PHP7 -- php not rendering in browser | I have a clean install of apache/httpd and php7.1.0 running on CentOS 7. When I execute from the command line: php -v I get the expected response: PHP 7.1.0 (cli) (built: Dec 1 2016 08:13:15) ( NTS ) Copyright (c) 1997-2016 The PHP Group Zend Engine v3.1.0-dev, Copyright (c) 1998-2016 Zend Technologies But when I try t... | CentOS 7 + PHP7 -- php not rendering in browser I have a clean install of apache/httpd and php7.1.0 running on CentOS 7. When I execute from the command line: php -v I get the expected response: PHP 7.1.0 (cli) (built: Dec 1 2016 08:13:15) ( NTS ) Copyright (c) 1997-2016 The PHP Group Zend Engine v3.1.0-dev, Copyright ... | php, apache, centos, redhat, php-7 | 12 | 40,024 | 6 | https://stackoverflow.com/questions/41467908/centos-7-php7-php-not-rendering-in-browser |
38,473,597 | matlab on linux can't plot anything(can't load libstdc++.so.6: version `CXXABI_1.3.8' not found) | I'm running matlab R2016a on Fedora 24 and I can't use the plot command. This is the error I get: Error using gca While setting the 'Parent' property of 'Axes': Can't load '/usr/local/MATLAB/R2016a/bin/glnxa64/libmwosgserver.so': /usr/local/MATLAB/R2016a/bin/glnxa64/../../sys/os/glnxa64/libstdc++.so.6: version 'CXXABI_... | matlab on linux can't plot anything(can't load libstdc++.so.6: version `CXXABI_1.3.8' not found) I'm running matlab R2016a on Fedora 24 and I can't use the plot command. This is the error I get: Error using gca While setting the 'Parent' property of 'Axes': Can't load '/usr/local/MATLAB/R2016a/bin/glnxa64/libmwosgserve... | linux, matlab, plot, fedora | 12 | 8,280 | 4 | https://stackoverflow.com/questions/38473597/matlab-on-linux-cant-plot-anythingcant-load-libstdc-so-6-version-cxxabi-1 |
36,050,023 | Optimize Nginx + PHP-FPM for 5 million daily pageviews | We run a few high volume websites which together generate around 5 million pageviews per day. We have the most overkill servers as we anticipate growth but we are having reports of a few active users saying the site is sometimes slow on the first pageview. I've seen this myself every once in a while where the first pag... | Optimize Nginx + PHP-FPM for 5 million daily pageviews We run a few high volume websites which together generate around 5 million pageviews per day. We have the most overkill servers as we anticipate growth but we are having reports of a few active users saying the site is sometimes slow on the first pageview. I've see... | php, linux, nginx, centos | 12 | 21,190 | 1 | https://stackoverflow.com/questions/36050023/optimize-nginx-php-fpm-for-5-million-daily-pageviews |
34,668,471 | Deploying docker swarm without using docker machine | Currently I have a bunch of RHEL7 VMs running on RackSpace and want to deploy docker swarm for testing purpose. The Docker Docs only describes the method to deploy docker swarm by using docker machine. Question: Since VirtualBox cannot be used in VMs, are any other ways such that I can directly deploy docker swarm on m... | Deploying docker swarm without using docker machine Currently I have a bunch of RHEL7 VMs running on RackSpace and want to deploy docker swarm for testing purpose. The Docker Docs only describes the method to deploy docker swarm by using docker machine. Question: Since VirtualBox cannot be used in VMs, are any other wa... | docker, virtual-machine, rhel, docker-swarm | 12 | 3,687 | 2 | https://stackoverflow.com/questions/34668471/deploying-docker-swarm-without-using-docker-machine |
32,015,599 | Php-phantomjs with Laravel (File does not exist or is not executable: bin/phantomjs) | I'm trying to use php-phantomjs with Laravel 5 under CentOS 7 and Windows 8 . I followed the instructions at PHP Phantom installation (installation done with success), after that I received this error while trying to execute the Basic Usage code: Error when executing PhantomJs procedure "default" - File does not exist ... | Php-phantomjs with Laravel (File does not exist or is not executable: bin/phantomjs) I'm trying to use php-phantomjs with Laravel 5 under CentOS 7 and Windows 8 . I followed the instructions at PHP Phantom installation (installation done with success), after that I received this error while trying to execute the Basic ... | php, laravel, centos, laravel-5.1, php-phantomjs | 12 | 12,055 | 4 | https://stackoverflow.com/questions/32015599/php-phantomjs-with-laravel-file-does-not-exist-or-is-not-executable-bin-phanto |
31,610,801 | How can I define the run order of vagrant middleware plugins? | I'm creating a Red Hat Enterprise Linux 7 VM in VirtualBox with vagrant. If I have a base box that both doesn't have the VirtualBox guest additions, and isn't registered, then I'd manually need to do the following: Register the box with subscription-manager Install guest additions The reason that I'd need to perform re... | How can I define the run order of vagrant middleware plugins? I'm creating a Red Hat Enterprise Linux 7 VM in VirtualBox with vagrant. If I have a base box that both doesn't have the VirtualBox guest additions, and isn't registered, then I'd manually need to do the following: Register the box with subscription-manager ... | vagrant, virtualbox, rhel, vagrant-plugin | 12 | 1,885 | 2 | https://stackoverflow.com/questions/31610801/how-can-i-define-the-run-order-of-vagrant-middleware-plugins |
30,209,642 | How can enable udev sync successfully in docker? | I have downloaded and install the static-linked docker 1.6.1 from this site , and run it on RHEL 7.1 : [root@localhost bin]# ./docker -d WARN[0000] Udev sync is not supported. This will lead to unexpected behavior, data loss and errors INFO[0000] +job init_networkdriver() INFO[0000] +job serveapi(unix:///var/run/docker... | How can enable udev sync successfully in docker? I have downloaded and install the static-linked docker 1.6.1 from this site , and run it on RHEL 7.1 : [root@localhost bin]# ./docker -d WARN[0000] Udev sync is not supported. This will lead to unexpected behavior, data loss and errors INFO[0000] +job init_networkdriver(... | linux, go, docker, rhel, rhel7 | 12 | 9,121 | 2 | https://stackoverflow.com/questions/30209642/how-can-enable-udev-sync-successfully-in-docker |
25,809,430 | How to fix locale issue in Red Hat distro? | I'm having a strange problem today in my RHEL system. My python script is returning: >>> locale.setlocale(locale.LC_ALL, '') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.6/locale.py", line 513, in setlocale return _setlocale(category, locale) locale.Error: unsupported ... | How to fix locale issue in Red Hat distro? I'm having a strange problem today in my RHEL system. My python script is returning: >>> locale.setlocale(locale.LC_ALL, '') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.6/locale.py", line 513, in setlocale return _setlocale(c... | python, locale, rhel | 12 | 16,073 | 3 | https://stackoverflow.com/questions/25809430/how-to-fix-locale-issue-in-red-hat-distro |
25,185,300 | Can't find "six", but it's installed | I have six installed (even reinstalled it). $ pip show six --- Name: six Version: 1.7.3 Location: /usr/lib/python2.6/site-packages Requires: But when I try to run csvcut , it can't find it. $ csvcut -n monster.csv Traceback (most recent call last): File "/usr/bin/csvcut", line 5, in <module> from pkg_resources import l... | Can't find "six", but it's installed I have six installed (even reinstalled it). $ pip show six --- Name: six Version: 1.7.3 Location: /usr/lib/python2.6/site-packages Requires: But when I try to run csvcut , it can't find it. $ csvcut -n monster.csv Traceback (most recent call last): File "/usr/bin/csvcut", line 5, in... | python, centos, six-python | 12 | 6,326 | 3 | https://stackoverflow.com/questions/25185300/cant-find-six-but-its-installed |
25,142,442 | Set up Postgresql-93 on Centos 7 | I followed this Almost idiot's guide to install postgresql and postgis on Centos 7 and got stuck starting the database itself with the following command: [root@localhost cmaps]# service postgresql-9.3 initdb The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, st... | Set up Postgresql-93 on Centos 7 I followed this Almost idiot's guide to install postgresql and postgis on Centos 7 and got stuck starting the database itself with the following command: [root@localhost cmaps]# service postgresql-9.3 initdb The service command supports only basic LSB actions (start, stop, restart, try-... | postgresql, centos, postgresql-9.3 | 12 | 10,856 | 3 | https://stackoverflow.com/questions/25142442/set-up-postgresql-93-on-centos-7 |
23,792,373 | Installing Tesseract-OCR on CentOS 6 | I'm trying to install Tesseract-OCR on my server however when I install all what I believe to be the correct repos. When I try to install it the package is not found I tried adding rpmforge but to no avail. Any ideas from somebody that has done before or is familiar with adding and searching through repos? | Installing Tesseract-OCR on CentOS 6 I'm trying to install Tesseract-OCR on my server however when I install all what I believe to be the correct repos. When I try to install it the package is not found I tried adding rpmforge but to no avail. Any ideas from somebody that has done before or is familiar with adding and ... | centos, installation, ocr, tesseract | 12 | 37,827 | 6 | https://stackoverflow.com/questions/23792373/installing-tesseract-ocr-on-centos-6 |
23,665,181 | GCC toolchain for LLVM | I am running on an RHEL 6.x box, which of course has GCC 4.4 installed. I wish to have LLVM running on this machine. In order to do so, I must compile it from source. In order to do that , I need a more modern version of GCC. So, following the instructions , I have built GCC 4.8.2: [snip] % $PWD/../gcc-4.8.2/configure ... | GCC toolchain for LLVM I am running on an RHEL 6.x box, which of course has GCC 4.4 installed. I wish to have LLVM running on this machine. In order to do so, I must compile it from source. In order to do that , I need a more modern version of GCC. So, following the instructions , I have built GCC 4.8.2: [snip] % $PWD/... | c++, llvm, configure, rhel | 12 | 10,065 | 2 | https://stackoverflow.com/questions/23665181/gcc-toolchain-for-llvm |
22,836,219 | CentOS 6.5: Howto install GTK version 2.8.0? | I am running CentOS 6.5, kernel2.6.32-431.5.1.el6.x86_64 #1 SMP. I am trying to install Rattle - data mining tool for R programming language. Rattle is installed from R shell. Notwithstanding I have latest GTK installed, when trying to install Rattle I get configure: error: GTK version 2.8.0 required (see below). How t... | CentOS 6.5: Howto install GTK version 2.8.0? I am running CentOS 6.5, kernel2.6.32-431.5.1.el6.x86_64 #1 SMP. I am trying to install Rattle - data mining tool for R programming language. Rattle is installed from R shell. Notwithstanding I have latest GTK installed, when trying to install Rattle I get configure: error: ... | r, gtk, centos, rattle | 12 | 52,538 | 1 | https://stackoverflow.com/questions/22836219/centos-6-5-howto-install-gtk-version-2-8-0 |
22,010,904 | Cannot Connect CentOS VM to Internet (NAT Connection) | So after fighting the VMWare network giant for the past day, I decided to give in and ask for help. I have a CentOS 6 image running on Windows 7 using a NAT on VMWare Workstation 8.0.2 build-591240, and for some reason, I can no longer connect to the internet with a static IP address. This seems to only to apply to sta... | Cannot Connect CentOS VM to Internet (NAT Connection) So after fighting the VMWare network giant for the past day, I decided to give in and ask for help. I have a CentOS 6 image running on Windows 7 using a NAT on VMWare Workstation 8.0.2 build-591240, and for some reason, I can no longer connect to the internet with a... | centos, centos6, vmware-workstation | 12 | 54,660 | 8 | https://stackoverflow.com/questions/22010904/cannot-connect-centos-vm-to-internet-nat-connection |
21,432,620 | How to setup Static Ip in Fedora 19 | While using Fedora 19 on VMware player(Harvard CS50x appliance 19) , the guest OS is not able to access the internet even though the host is . How to set static Ip address to access Internet ? | How to setup Static Ip in Fedora 19 While using Fedora 19 on VMware player(Harvard CS50x appliance 19) , the guest OS is not able to access the internet even though the host is . How to set static Ip address to access Internet ? | network-programming, fedora, static-ip-address | 12 | 49,877 | 1 | https://stackoverflow.com/questions/21432620/how-to-setup-static-ip-in-fedora-19 |
20,919,771 | Centos 6.4 - Failed to map segment from shared object: Permission denied | Hi, I am trying to install Phusion Passenger. Installation was successful but I am getting the following error on doing service httpd start Starting httpd: httpd: Syntax error on line 221 of /etc/httpd/conf/httpd.conf: Syntax error on line 1 of /etc/httpd/conf.d/passenger.conf: Cannot load /usr/local/rvm/gems/ruby-2.0.... | Centos 6.4 - Failed to map segment from shared object: Permission denied Hi, I am trying to install Phusion Passenger. Installation was successful but I am getting the following error on doing service httpd start Starting httpd: httpd: Syntax error on line 221 of /etc/httpd/conf/httpd.conf: Syntax error on line 1 of /e... | centos, passenger | 12 | 20,482 | 2 | https://stackoverflow.com/questions/20919771/centos-6-4-failed-to-map-segment-from-shared-object-permission-denied |
20,179,649 | Can't Install FreeTDS via Yum Package Manager | I tried following the instructions in the article below but it says, " No package freetds available. " [URL] This is my I/O: [root@mydomain ~]# yum search freetds Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.web-ster.com * extras: mirror.beyondhosting.net * updates: mirrors.so... | Can't Install FreeTDS via Yum Package Manager I tried following the instructions in the article below but it says, " No package freetds available. " [URL] This is my I/O: [root@mydomain ~]# yum search freetds Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.web-ster.com * extras: ... | linux, centos, plesk, yum, freetds | 12 | 45,656 | 3 | https://stackoverflow.com/questions/20179649/cant-install-freetds-via-yum-package-manager |
17,377,452 | How to enable history in Django shell in python | I am using shell_plus for my Django shell. The readline and rlcompleter modules are installed there. But I find that when I close my shell_plus session, I can return to the history commands I used in previous sessions. In my office, I can go back to previous commands as well. what do I need to do for that? | How to enable history in Django shell in python I am using shell_plus for my Django shell. The readline and rlcompleter modules are installed there. But I find that when I close my shell_plus session, I can return to the history commands I used in previous sessions. In my office, I can go back to previous commands as w... | python, django, centos | 12 | 6,861 | 3 | https://stackoverflow.com/questions/17377452/how-to-enable-history-in-django-shell-in-python |
15,584,335 | Is it possible to restrict what commands php can pass through exec at an OS level? | I am currently hosting a Drupal 6 site on a CentOS machine. The Drupal ( CMS ) configuration contains a few dozen third-party modules that should not be forked as a general best coding practice. However, some of these modules make use of the php exec command in order to function properly. The site allows for admins to ... | Is it possible to restrict what commands php can pass through exec at an OS level? I am currently hosting a Drupal 6 site on a CentOS machine. The Drupal ( CMS ) configuration contains a few dozen third-party modules that should not be forked as a general best coding practice. However, some of these modules make use of... | php, drupal, command-line, centos, exec | 12 | 4,466 | 5 | https://stackoverflow.com/questions/15584335/is-it-possible-to-restrict-what-commands-php-can-pass-through-exec-at-an-os-leve |
13,459,913 | How to add an icon to the bash prompt | I know you can edit the bash prompt permanently by editing the PS1 variable in your ~/.bashrc file, mine looks like this: PS1="\[\e[0;31m\]<HERP(._.)DERP>\[\e[0;0m\]"; but can you set a tiny little image in there as well? For instance, if I wanted to add a little American flag icon, or something before "HERP(._.)DERP",... | How to add an icon to the bash prompt I know you can edit the bash prompt permanently by editing the PS1 variable in your ~/.bashrc file, mine looks like this: PS1="\[\e[0;31m\]<HERP(._.)DERP>\[\e[0;0m\]"; but can you set a tiny little image in there as well? For instance, if I wanted to add a little American flag icon... | linux, bash, shell, fedora, ps1 | 12 | 30,342 | 7 | https://stackoverflow.com/questions/13459913/how-to-add-an-icon-to-the-bash-prompt |
13,334,300 | How to build and install gcc with built-in rpath? | I'm trying to build and install my own gcc 4.7.2 in /usr/local to use in place of the gcc 4.4.6 in /usr. (This is on CentOS 6.3.) gcc makes executables and dynamic libraries that dynamically link to its own dynamic libraries, e.g. libstdc++.so. How do I build and install gcc so that the generated binaries automatically... | How to build and install gcc with built-in rpath? I'm trying to build and install my own gcc 4.7.2 in /usr/local to use in place of the gcc 4.4.6 in /usr. (This is on CentOS 6.3.) gcc makes executables and dynamic libraries that dynamically link to its own dynamic libraries, e.g. libstdc++.so. How do I build and instal... | gcc, build, centos, shared-libraries | 12 | 5,731 | 2 | https://stackoverflow.com/questions/13334300/how-to-build-and-install-gcc-with-built-in-rpath |
12,861,914 | No package 'pygobject-3.0' found | I want to install Accerciser my OS is fedora 16 I downloaded the package, 'cd' into the folder and run './configure' and get checking for PYGOBJECT... no configure: error: Package requirements (pygobject-3.0 >= PYGOBJECT_REQUIRED) were not met: No package 'pygobject-3.0' found Consider adjusting the PKG_CONFIG_PATH env... | No package 'pygobject-3.0' found I want to install Accerciser my OS is fedora 16 I downloaded the package, 'cd' into the folder and run './configure' and get checking for PYGOBJECT... no configure: error: Package requirements (pygobject-3.0 >= PYGOBJECT_REQUIRED) were not met: No package 'pygobject-3.0' found Consider ... | linux, package, fedora | 12 | 17,195 | 1 | https://stackoverflow.com/questions/12861914/no-package-pygobject-3-0-found |
9,754,809 | How to make MongoDB Server start on Linux Startup (CentOS) | I'm using Linux CentOS 5.4, I installed MongoDB now it's availabled as a Daemon and Service When I execute service mongod start is says : [OK] --> in green as if the service started but when I try to connect to it I find it not working. but when I try to run "mongod" from the shell normally it starts but if I closed th... | How to make MongoDB Server start on Linux Startup (CentOS) I'm using Linux CentOS 5.4, I installed MongoDB now it's availabled as a Daemon and Service When I execute service mongod start is says : [OK] --> in green as if the service started but when I try to connect to it I find it not working. but when I try to run "m... | mongodb, centos | 12 | 26,316 | 2 | https://stackoverflow.com/questions/9754809/how-to-make-mongodb-server-start-on-linux-startup-centos |
9,644,321 | Install gcc-c++ on CentOS without yum | Can I install gcc++ on CentOS 6.x without `yum install gcc-c++ ....' ? Is there any .tar or .rpm package available for download? | Install gcc-c++ on CentOS without yum Can I install gcc++ on CentOS 6.x without `yum install gcc-c++ ....' ? Is there any .tar or .rpm package available for download? | gcc, centos | 12 | 73,766 | 2 | https://stackoverflow.com/questions/9644321/install-gcc-c-on-centos-without-yum |
8,274,950 | Restarting / Autorepairing Mongodb in Production | What I want to achieve is to have an /etc/init.d script which more reliably starts Mongodb, even if it went down hard -- it should attempt an auto-repair in case the system is in a locked state. Yes, I could script this myself, but I think somebody out there must have done this already. I noticed that after a server go... | Restarting / Autorepairing Mongodb in Production What I want to achieve is to have an /etc/init.d script which more reliably starts Mongodb, even if it went down hard -- it should attempt an auto-repair in case the system is in a locked state. Yes, I could script this myself, but I think somebody out there must have do... | linux, mongodb, centos, fedora | 12 | 9,926 | 2 | https://stackoverflow.com/questions/8274950/restarting-autorepairing-mongodb-in-production |
8,131,233 | What is httpd <defunct>? | 32537 apache 16 0 87424 15m 7324 S 2.3 0.3 0:00.52 httpd 3302 mysql 15 0 156m 41m 4756 S 1.3 0.7 10:50.91 mysqld 489 apache 16 0 87016 14m 6692 S 0.7 0.2 0:00.27 httpd 990 apache 15 0 0 0 0 Z 0.7 0.0 0:00.12 httpd <defunct> 665 apache 15 0 86992 13m 5644 S 0.3 0.2 0:00.20 httpd 32218 apache 15 0 87356 14m 6344 S 0.3 0.... | What is httpd <defunct>? 32537 apache 16 0 87424 15m 7324 S 2.3 0.3 0:00.52 httpd 3302 mysql 15 0 156m 41m 4756 S 1.3 0.7 10:50.91 mysqld 489 apache 16 0 87016 14m 6692 S 0.7 0.2 0:00.27 httpd 990 apache 15 0 0 0 0 Z 0.7 0.0 0:00.12 httpd <defunct> 665 apache 15 0 86992 13m 5644 S 0.3 0.2 0:00.20 httpd 32218 apache 15 ... | http, centos, apache | 12 | 23,454 | 3 | https://stackoverflow.com/questions/8131233/what-is-httpd-defunct |
8,068,516 | How do I find out w/YUM or RPM what files it installed? | I installed Fedora 16 last night and saw it had NoMachine's NX in the repo. I did a yum install nx and it says it installed correctly, but for the life of me I can't find the .service or /etc/init.d file(s) or even the /etc configuration files for any sort of NX server. I do see nxssh nxproxy nxagent but there aren't e... | How do I find out w/YUM or RPM what files it installed? I installed Fedora 16 last night and saw it had NoMachine's NX in the repo. I did a yum install nx and it says it installed correctly, but for the life of me I can't find the .service or /etc/init.d file(s) or even the /etc configuration files for any sort of NX s... | linux, fedora, rpm, yum | 12 | 13,201 | 2 | https://stackoverflow.com/questions/8068516/how-do-i-find-out-w-yum-or-rpm-what-files-it-installed |
7,318,191 | Enable json_encode in PHP | Could someone advise on how to enable the json_encode function in PHP? I have a clean install of Centos 5.6 and have just installed Virtualmin. Does anyone know the next steps to take? | Enable json_encode in PHP Could someone advise on how to enable the json_encode function in PHP? I have a clean install of Centos 5.6 and have just installed Virtualmin. Does anyone know the next steps to take? | php, json, centos, encode | 12 | 84,269 | 4 | https://stackoverflow.com/questions/7318191/enable-json-encode-in-php |
6,104,086 | Need help setting up passenger with RVM | I'm trying to setup passenger with rvm. I keep getting this error Your RVM wrapper scripts are too old. Please update them first by running 'rvm update --head && rvm reload && rvm repair all'. I did that still same problem GNU C++ compiler... found at /usr/bin/g++ Curl development headers with SSL support... found Open... | Need help setting up passenger with RVM I'm trying to setup passenger with rvm. I keep getting this error Your RVM wrapper scripts are too old. Please update them first by running 'rvm update --head && rvm reload && rvm repair all'. I did that still same problem GNU C++ compiler... found at /usr/bin/g++ Curl developmen... | ruby-on-rails-3, rvm, fedora, ruby-1.9.2 | 12 | 5,219 | 5 | https://stackoverflow.com/questions/6104086/need-help-setting-up-passenger-with-rvm |
4,773,659 | Can't install a Python package | I'm very new to CentOS and I am trying to install the M2Crypto Python package on it. I ran: sudo python setup.py install And it appeared to go ok: (this is the end of the output) removing 'build/bdist.linux-i686/egg' (and everything under it) Processing M2Crypto-0.20.2-py2.4-linux-i686.egg Removing /usr/lib/python2.4/s... | Can't install a Python package I'm very new to CentOS and I am trying to install the M2Crypto Python package on it. I ran: sudo python setup.py install And it appeared to go ok: (this is the end of the output) removing 'build/bdist.linux-i686/egg' (and everything under it) Processing M2Crypto-0.20.2-py2.4-linux-i686.eg... | python, installation, centos | 12 | 6,409 | 4 | https://stackoverflow.com/questions/4773659/cant-install-a-python-package |
4,501,817 | Django, apache, mod_wsgi - Error: Premature end of script headers | Apache logs in mode debug: [Tue Dec 21 11:36:33 2010] [info] [client 1.53.149.114] mod_wsgi (pid=24831, process='mysite', application='mysite.com|'): Loading WSGI script '/home/anhtran/webapps/mysite.com/django.wsgi'. [Tue Dec 21 11:36:33 2010] [error] [client 1.53.149.114] Premature end of script headers: django.wsgi ... | Django, apache, mod_wsgi - Error: Premature end of script headers Apache logs in mode debug: [Tue Dec 21 11:36:33 2010] [info] [client 1.53.149.114] mod_wsgi (pid=24831, process='mysite', application='mysite.com|'): Loading WSGI script '/home/anhtran/webapps/mysite.com/django.wsgi'. [Tue Dec 21 11:36:33 2010] [error] [... | django, apache, apache2, mod-wsgi, centos | 12 | 15,432 | 6 | https://stackoverflow.com/questions/4501817/django-apache-mod-wsgi-error-premature-end-of-script-headers |
64,551,170 | Laravel The stream or file "storage/laravel.log" could not be opened in append mode: failed to open stream: Permission denied in RHEL8 | I need help here. I installed Laravel in my RHEL 8 Server But I'm getting this error. I know this question already posted many times but I tried to follow the suggestion but no luck for me so far. I have no idea why. The stream or file "/var/www/html/vpa/storage/logs/laravel.log" could not be opened in append mode: fai... | Laravel The stream or file "storage/laravel.log" could not be opened in append mode: failed to open stream: Permission denied in RHEL8 I need help here. I installed Laravel in my RHEL 8 Server But I'm getting this error. I know this question already posted many times but I tried to follow the suggestion but no luck for... | laravel, rhel8 | 11 | 41,917 | 7 | https://stackoverflow.com/questions/64551170/laravel-the-stream-or-file-storage-laravel-log-could-not-be-opened-in-append-m |
58,661,715 | How to use unison across OS X and linux? Fatal error due to ocaml version | I am trying to use unison from my OS X machine to a linux box running: CentOS release 6.10 (Final) I had to make a static compilation of unison 2.51 for the linux box. This version is: unison version 2.51.2 (ocaml 4.02.3) On the OS X machine I used "brew install unison". This gives me: unison version 2.51.2 (ocaml 4.08... | How to use unison across OS X and linux? Fatal error due to ocaml version I am trying to use unison from my OS X machine to a linux box running: CentOS release 6.10 (Final) I had to make a static compilation of unison 2.51 for the linux box. This version is: unison version 2.51.2 (ocaml 4.02.3) On the OS X machine I us... | centos, macos-sierra, unison | 11 | 3,379 | 3 | https://stackoverflow.com/questions/58661715/how-to-use-unison-across-os-x-and-linux-fatal-error-due-to-ocaml-version |
55,867,534 | How can I solve this problem of installation xampp on fedora? | When I run xampp on fedora this error is showing up on application log Starting Apache Web Server... Exit code: 8 Stdout: apache config test fails, aborting Stderr: httpd: Syntax error on line 522 of /opt/lampp/etc/httpd.conf: Syntax error on line 10 of /opt/lampp/etc/extra/httpd-xampp.conf: Cannot load modules/libphp7... | How can I solve this problem of installation xampp on fedora? When I run xampp on fedora this error is showing up on application log Starting Apache Web Server... Exit code: 8 Stdout: apache config test fails, aborting Stderr: httpd: Syntax error on line 522 of /opt/lampp/etc/httpd.conf: Syntax error on line 10 of /opt... | apache, installation, xampp, fedora | 11 | 18,119 | 2 | https://stackoverflow.com/questions/55867534/how-can-i-solve-this-problem-of-installation-xampp-on-fedora |
49,965,949 | Where is libappindicator3.so.1? | I'm trying to install Google-Chrome on CentOS7(Linux 3.10.0-514.el7.x86_64). The file (libappindicator3.so.1()(64bit)) is needed, but there is no such file on the [URL] . [leohu@SpaceX Downloads]$ rpm -ivh google-chrome-stable_current_x86_64.rpm warning: google-chrome-stable_current_x86_64.rpm: Header V4 DSA/SHA1 Signa... | Where is libappindicator3.so.1? I'm trying to install Google-Chrome on CentOS7(Linux 3.10.0-514.el7.x86_64). The file (libappindicator3.so.1()(64bit)) is needed, but there is no such file on the [URL] . [leohu@SpaceX Downloads]$ rpm -ivh google-chrome-stable_current_x86_64.rpm warning: google-chrome-stable_current_x86_... | google-chrome, centos | 11 | 23,440 | 1 | https://stackoverflow.com/questions/49965949/where-is-libappindicator3-so-1 |
49,369,065 | RHEL: This system is currently not set up to build kernel modules | I am trying to install virtualbox5.2 on a RHEL 7 VM When I try to rebuild kernels modules I get the following error: [root@myserver~]# /usr/lib/virtualbox/vboxdrv.sh setup vboxdrv.sh: Stopping VirtualBox services. vboxdrv.sh: Building VirtualBox kernel modules. This system is currently not set up to build kernel module... | RHEL: This system is currently not set up to build kernel modules I am trying to install virtualbox5.2 on a RHEL 7 VM When I try to rebuild kernels modules I get the following error: [root@myserver~]# /usr/lib/virtualbox/vboxdrv.sh setup vboxdrv.sh: Stopping VirtualBox services. vboxdrv.sh: Building VirtualBox kernel m... | virtualbox, redhat, rhel7 | 11 | 61,788 | 9 | https://stackoverflow.com/questions/49369065/rhel-this-system-is-currently-not-set-up-to-build-kernel-modules |
49,099,625 | docker error initializing graphdriver: driver not supported | I am having problems to execute an older version of docker in a CentOS 7 VM. I installed docker Docker version 17.09.1-ce because its the version that I need, I need to run some software over it and the latest version Docker version 17.12.1-ce is not compatible with that, so I need to install and older version. However... | docker error initializing graphdriver: driver not supported I am having problems to execute an older version of docker in a CentOS 7 VM. I installed docker Docker version 17.09.1-ce because its the version that I need, I need to run some software over it and the latest version Docker version 17.12.1-ce is not compatibl... | docker, centos | 11 | 34,400 | 4 | https://stackoverflow.com/questions/49099625/docker-error-initializing-graphdriver-driver-not-supported |
48,320,850 | Installing EPEL repository on Centos 7 breaks yum functionality? | so I am trying to setup up a ssh bastion server, but I have problem setting up EPEL in order to install Python3.6. I am using CentOS Linux release 7.4.1708 (Core) So I am trying to install EPEL first by using sudo yum -y install epel-release (I did of course sudo yum -y update before and it worked fine), but it told me... | Installing EPEL repository on Centos 7 breaks yum functionality? so I am trying to setup up a ssh bastion server, but I have problem setting up EPEL in order to install Python3.6. I am using CentOS Linux release 7.4.1708 (Core) So I am trying to install EPEL first by using sudo yum -y install epel-release (I did of cou... | linux, centos, yum, epel | 11 | 43,085 | 8 | https://stackoverflow.com/questions/48320850/installing-epel-repository-on-centos-7-breaks-yum-functionality |
48,160,582 | How to check apache version | CentOS 6.9 There are 2 versions of apache are existing on my CentOS. One installed by "make install httpd", another installed by "yum install httpd". How do I check what version are running | How to check apache version CentOS 6.9 There are 2 versions of apache are existing on my CentOS. One installed by "make install httpd", another installed by "yum install httpd". How do I check what version are running | centos | 11 | 41,911 | 2 | https://stackoverflow.com/questions/48160582/how-to-check-apache-version |
45,553,065 | Default python /usr/bin/python instead of /usr/local/bin/python | I have both python2.6 and python2.7 installed in my CentOS box. python2.6 is installed at /usr/bin/python and i have installed python2.7 from source at location /usr/local/bin/python after the installation my default python is changed to python2.7 instead of pythn2.6 at /usr/bin , I want to use python 2.6 at /usr/bin/p... | Default python /usr/bin/python instead of /usr/local/bin/python I have both python2.6 and python2.7 installed in my CentOS box. python2.6 is installed at /usr/bin/python and i have installed python2.7 from source at location /usr/local/bin/python after the installation my default python is changed to python2.7 instead ... | python, linux, centos, rhel | 11 | 50,057 | 3 | https://stackoverflow.com/questions/45553065/default-python-usr-bin-python-instead-of-usr-local-bin-python |
45,000,746 | Why does yarn install hang when fetching packages on CentOS? | When attempting to install the dependencies for my project with Yarn via yarn install , the process (and progress bar indicator) hangs when attempting to fetch packages. A timeout never occurs and the --verbose option gives no useful clues regarding the cause of the problem. CentOS 7 Yarn version: 0.27.5 | Why does yarn install hang when fetching packages on CentOS? When attempting to install the dependencies for my project with Yarn via yarn install , the process (and progress bar indicator) hangs when attempting to fetch packages. A timeout never occurs and the --verbose option gives no useful clues regarding the cause... | javascript, git, centos, yarnpkg | 11 | 19,457 | 2 | https://stackoverflow.com/questions/45000746/why-does-yarn-install-hang-when-fetching-packages-on-centos |
44,082,832 | cURL error 28: Resolving timed out after 5001 milliseconds | I use WordPress and I recently moved my site from the cpanel host to a Linux server with directadmin panel. Right after the transfer realized that customers have the following error when downloading via EDD plugin. cURL error 28: Resolving timed out after 5001 milliseconds I also got this error of w3_total_cache plugin... | cURL error 28: Resolving timed out after 5001 milliseconds I use WordPress and I recently moved my site from the cpanel host to a Linux server with directadmin panel. Right after the transfer realized that customers have the following error when downloading via EDD plugin. cURL error 28: Resolving timed out after 5001 ... | php, linux, curl, centos, directadmin | 11 | 46,713 | 5 | https://stackoverflow.com/questions/44082832/curl-error-28-resolving-timed-out-after-5001-milliseconds |
40,009,474 | OpenSSL hangs at CONNECTED(00000003) | I am setting up the https connection of my AEM application in a RHEL server hosted in AWS. Followed the documentation provided by Adobe. For the 1st author instance it worked successfully, but on my 2nd server and 3 server, it didnt. I tried a couple of debugging to make sure that the connectivity is working and that n... | OpenSSL hangs at CONNECTED(00000003) I am setting up the https connection of my AEM application in a RHEL server hosted in AWS. Followed the documentation provided by Adobe. For the 1st author instance it worked successfully, but on my 2nd server and 3 server, it didnt. I tried a couple of debugging to make sure that t... | ssl, openssl, aem, rhel | 11 | 18,025 | 3 | https://stackoverflow.com/questions/40009474/openssl-hangs-at-connected00000003 |
39,818,999 | PHP-FPM and Nginx: "Resource temporarily unavailable" errors in proxy_error_log | I found the following discussion that was posted 4 years ago: 502 Gateway Errors under High Load (nginx/php-fpm) Where someone had a similar issue as mine, but unfortunately I believe that the configurations he received were customized for his own server specs and I can't use the same configuration on my server. Anyway... | PHP-FPM and Nginx: "Resource temporarily unavailable" errors in proxy_error_log I found the following discussion that was posted 4 years ago: 502 Gateway Errors under High Load (nginx/php-fpm) Where someone had a similar issue as mine, but unfortunately I believe that the configurations he received were customized for ... | php, linux, apache, nginx, centos | 11 | 33,962 | 2 | https://stackoverflow.com/questions/39818999/php-fpm-and-nginx-resource-temporarily-unavailable-errors-in-proxy-error-log |
39,257,293 | Using CURL with TOR as a Proxy on CentOs | I want to use Tor as a proxy for HTTP-requests with curl or wget on a CentOS Machine. I used this How-to and I looked for some answers on stackexchange and stackoverflow. [URL] If I typing into my shell 'tor' I get this: Aug 31 21:01:29.871 [notice] Tor v0.2.8.6 running on Linux with Libevent 2.0.22-stable, OpenSSL 1.0... | Using CURL with TOR as a Proxy on CentOs I want to use Tor as a proxy for HTTP-requests with curl or wget on a CentOS Machine. I used this How-to and I looked for some answers on stackexchange and stackoverflow. [URL] If I typing into my shell 'tor' I get this: Aug 31 21:01:29.871 [notice] Tor v0.2.8.6 running on Linux... | proxy, centos, tor | 11 | 26,358 | 2 | https://stackoverflow.com/questions/39257293/using-curl-with-tor-as-a-proxy-on-centos |
36,387,338 | Unable to install php-mysqli on PHP7 | I have installed PHP 7, mysql5.7, Apache2.2, CentOS6. And I'm installing CodeIgniter3.0.6. When I use database connection, error occured and said A PHP Error was encountered Severity: Core Warning Message: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_mysqli.so' - /usr/lib64/php/modules/php_my... | Unable to install php-mysqli on PHP7 I have installed PHP 7, mysql5.7, Apache2.2, CentOS6. And I'm installing CodeIgniter3.0.6. When I use database connection, error occured and said A PHP Error was encountered Severity: Core Warning Message: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_mysql... | php, mysqli, centos | 11 | 32,853 | 2 | https://stackoverflow.com/questions/36387338/unable-to-install-php-mysqli-on-php7 |
34,342,540 | What is SystemD's default value for LimitNOFILE (on CentOS7) | It seems like a very easy question but I couldn't find, what the default for services in SystemD for LimitNOFILE is. Is there a file with global defaults? | What is SystemD's default value for LimitNOFILE (on CentOS7) It seems like a very easy question but I couldn't find, what the default for services in SystemD for LimitNOFILE is. Is there a file with global defaults? | centos, systemd, limits | 11 | 21,732 | 3 | https://stackoverflow.com/questions/34342540/what-is-systemds-default-value-for-limitnofile-on-centos7 |
32,483,036 | yum install fails with HTTP 403 trying to access repomd.xml | I'm trying to install a package on a old Fedora 20 virtual machine. yum install <the_package_name> results in a failure with an HTTP 403 error: [URL] [Errno 14] HTTP Error 403 - Forbidden My web-browser can't see anything at [URL] so I realize FC20 is no more supported (EOL) and its repository URL has changed. So I fix... | yum install fails with HTTP 403 trying to access repomd.xml I'm trying to install a package on a old Fedora 20 virtual machine. yum install <the_package_name> results in a failure with an HTTP 403 error: [URL] [Errno 14] HTTP Error 403 - Forbidden My web-browser can't see anything at [URL] so I realize FC20 is no more ... | http, proxy, fedora, yum, http-proxy | 11 | 65,716 | 4 | https://stackoverflow.com/questions/32483036/yum-install-fails-with-http-403-trying-to-access-repomd-xml |
28,739,892 | centOS 7 Can't install php-mbstring extension | i've tried to install the extension mbstring but i have the following error: Error: Package: php-mbstring-5.4.16-23.el7_0.3.x86_64 (updates) Requires: php-common(x86-64) = 5.4.16-23.el7_0.3 Installed: php-common-5.4.38-1.el7.remi.x86_64 (@remi) php-common(x86-64) = 5.4.38-1.el7.remi Available: php-common-5.4.16-21.el7.... | centOS 7 Can't install php-mbstring extension i've tried to install the extension mbstring but i have the following error: Error: Package: php-mbstring-5.4.16-23.el7_0.3.x86_64 (updates) Requires: php-common(x86-64) = 5.4.16-23.el7_0.3 Installed: php-common-5.4.38-1.el7.remi.x86_64 (@remi) php-common(x86-64) = 5.4.38-1... | php, unix, centos, installation, mbstring | 11 | 94,846 | 10 | https://stackoverflow.com/questions/28739892/centos-7-cant-install-php-mbstring-extension |
28,067,714 | Where is the STDOUT and STDERR output of a crontab job | Does any body know where is the STDOUT and STDERR of a normal crontab job output in CentOS? I checked the /var/log/cron file, but it only record the time and command of a cron job executed, no STDOUT or STDERR content found there. | Where is the STDOUT and STDERR output of a crontab job Does any body know where is the STDOUT and STDERR of a normal crontab job output in CentOS? I checked the /var/log/cron file, but it only record the time and command of a cron job executed, no STDOUT or STDERR content found there. | linux, cron, centos | 11 | 11,685 | 2 | https://stackoverflow.com/questions/28067714/where-is-the-stdout-and-stderr-output-of-a-crontab-job |
27,950,512 | Can't install libffi-devel | I am trying to install libffi-devel on RHEL, but when I try I get this message: Transaction Check Error: package libffi-3.0.5-1.el5.6.z.x86_64 (which is newer than libffi-3.0.5-1.el5.i386) is already installed I am running this command: sudo yum install -y libffi-devel And here is the full output of the command: Loaded... | Can't install libffi-devel I am trying to install libffi-devel on RHEL, but when I try I get this message: Transaction Check Error: package libffi-3.0.5-1.el5.6.z.x86_64 (which is newer than libffi-3.0.5-1.el5.i386) is already installed I am running this command: sudo yum install -y libffi-devel And here is the full ou... | yum, rhel | 11 | 43,970 | 1 | https://stackoverflow.com/questions/27950512/cant-install-libffi-devel |
27,152,703 | How to resolve Permission denied (publickey,gssapi-keyex,gssapi-with-mic)? | This question may have been asked before but I don't understand the concept. Can you please help me here? Weird issue from this morning .. see i just push my file to google cloud computing then showing below error.. I don't know where to look that error. ri@ri-desktop:~$ gcloud compute --project "project" ssh --zone "e... | How to resolve Permission denied (publickey,gssapi-keyex,gssapi-with-mic)? This question may have been asked before but I don't understand the concept. Can you please help me here? Weird issue from this morning .. see i just push my file to google cloud computing then showing below error.. I don't know where to look th... | ssh, centos, google-compute-engine, gcloud | 11 | 20,644 | 3 | https://stackoverflow.com/questions/27152703/how-to-resolve-permission-denied-publickey-gssapi-keyex-gssapi-with-mic |
25,903,980 | ERROR: Cannot write pid file to /var/run/mongodb/mongod.pid: No such file or directory inf fedora 20 | MongoDB is not starting. I have installed mongo and mongo was running but after reboot it is not running. ERROR: Cannot write pid file to /var/run/mongodb/mongod.pid: No such file or directory My system is Fedora 20 Its log archive. 2014-09-18T00:28:58.515-0300 ***** SERVER RESTARTED ***** 2014-09-18T00:28:58.522-0300 ... | ERROR: Cannot write pid file to /var/run/mongodb/mongod.pid: No such file or directory inf fedora 20 MongoDB is not starting. I have installed mongo and mongo was running but after reboot it is not running. ERROR: Cannot write pid file to /var/run/mongodb/mongod.pid: No such file or directory My system is Fedora 20 Its... | mongodb, fedora | 11 | 38,222 | 8 | https://stackoverflow.com/questions/25903980/error-cannot-write-pid-file-to-var-run-mongodb-mongod-pid-no-such-file-or-dir |
22,988,824 | Why swap needs to be turned off in Datastax Cassandra? | I am new to Datastax cassandra. While going through the installation procedure of cassandra. It is recommended that the swap area of OS should be turned off. Does anyone provide the reason for that? Will it affect any OS level operations ? | Why swap needs to be turned off in Datastax Cassandra? I am new to Datastax cassandra. While going through the installation procedure of cassandra. It is recommended that the swap area of OS should be turned off. Does anyone provide the reason for that? Will it affect any OS level operations ? | linux, cassandra, centos, swap, datastax | 11 | 6,630 | 2 | https://stackoverflow.com/questions/22988824/why-swap-needs-to-be-turned-off-in-datastax-cassandra |
22,407,612 | Installing SSL with only a .pem file | Is it possible to install SSL certificate in Centos (6.5) and apache with just a .pem file? I have been told by the client that they do not have a .crt file or a .key file. It is a wildcard certificate that I need to install in one of the subdomain. | Installing SSL with only a .pem file Is it possible to install SSL certificate in Centos (6.5) and apache with just a .pem file? I have been told by the client that they do not have a .crt file or a .key file. It is a wildcard certificate that I need to install in one of the subdomain. | apache, ssl, centos, pem | 11 | 58,863 | 1 | https://stackoverflow.com/questions/22407612/installing-ssl-with-only-a-pem-file |
20,792,829 | How to check recently installed rpms? | I am trying to find some recently installed rpms on my RedHat Linux system. Does RPM provide any way to do this? I have tried # rpm -qa But it only provides installed rpms. What are the options available for this? | How to check recently installed rpms? I am trying to find some recently installed rpms on my RedHat Linux system. Does RPM provide any way to do this? I have tried # rpm -qa But it only provides installed rpms. What are the options available for this? | linux, centos, redhat, rpm | 11 | 14,976 | 2 | https://stackoverflow.com/questions/20792829/how-to-check-recently-installed-rpms |
20,031,475 | Starting Jenkins bash: /usr/bin/java: No such file or directory | I have a CentOS server and I'm trying to run jenkins as a service with: service jenkins start I am running as root user and I'm getting this response: Starting Jenkins bash: /usr/bin/java: No such file or directory [FAILED] I have echo 'ed a few things to the command line: [root@xyz opt]# echo $JAVA_HOME /opt/jdk [root... | Starting Jenkins bash: /usr/bin/java: No such file or directory I have a CentOS server and I'm trying to run jenkins as a service with: service jenkins start I am running as root user and I'm getting this response: Starting Jenkins bash: /usr/bin/java: No such file or directory [FAILED] I have echo 'ed a few things to ... | java, bash, jenkins, centos, centos6 | 11 | 22,812 | 2 | https://stackoverflow.com/questions/20031475/starting-jenkins-bash-usr-bin-java-no-such-file-or-directory |
19,510,522 | In Centos 6.4,when configure Emacs | In Centos 6.4,when configure Emacs,it shows: configure: error: The required function `tputs' was not found in any library. The following libraries were tried (in order): libtinfo, libncurses, libterminfo, libtermcap, libcurses Please try installing whichever of these libraries is most appropriate for your system, toget... | In Centos 6.4,when configure Emacs In Centos 6.4,when configure Emacs,it shows: configure: error: The required function `tputs' was not found in any library. The following libraries were tried (in order): libtinfo, libncurses, libterminfo, libtermcap, libcurses Please try installing whichever of these libraries is most... | centos, configure, emacs24 | 11 | 8,567 | 3 | https://stackoverflow.com/questions/19510522/in-centos-6-4-when-configure-emacs |
16,900,575 | Install Mono and Monodevelop on CentOS 5.x/6.x | I am trying to install Mono and Monodevelop on a CentOS 5.9 environment. I have tried the following instructions, with no luck. [URL] Can anyone suggest an alternative to the the above link. | Install Mono and Monodevelop on CentOS 5.x/6.x I am trying to install Mono and Monodevelop on a CentOS 5.9 environment. I have tried the following instructions, with no luck. [URL] Can anyone suggest an alternative to the the above link. | linux, mono, centos, monodevelop | 11 | 29,782 | 3 | https://stackoverflow.com/questions/16900575/install-mono-and-monodevelop-on-centos-5-x-6-x |
16,598,201 | Disable rpmbuild automatic requirement finding | The default behavior of rpmbuild seems to be to scan every file in the buildroot for #! lines and add those interpreters as hard requirements. Is it possible to disable this? I've run into a situation where people are committing scripts with #!/path/to/local/install/of/something and that requirement is becoming embedde... | Disable rpmbuild automatic requirement finding The default behavior of rpmbuild seems to be to scan every file in the buildroot for #! lines and add those interpreters as hard requirements. Is it possible to disable this? I've run into a situation where people are committing scripts with #!/path/to/local/install/of/som... | centos, packaging, rpm, rpmbuild | 11 | 18,372 | 3 | https://stackoverflow.com/questions/16598201/disable-rpmbuild-automatic-requirement-finding |
15,673,492 | GCC compile fails with pthread and option std=c99 | I have an exemplar program that fails to compile with -std=c99 any help appreciated #include <pthread.h> int main(void) { pthread_rwlock_t myLock; return 0; } output of the two compiles: gcc pthread_test.c [brad@fedora17onbradsmacpro src]$ gcc pthread_test.c [brad@fedora17onbradsmacpro src]$ gcc -std=c99 pthread_test.c... | GCC compile fails with pthread and option std=c99 I have an exemplar program that fails to compile with -std=c99 any help appreciated #include <pthread.h> int main(void) { pthread_rwlock_t myLock; return 0; } output of the two compiles: gcc pthread_test.c [brad@fedora17onbradsmacpro src]$ gcc pthread_test.c [brad@fedor... | linux, gcc, pthreads, fedora | 11 | 9,563 | 1 | https://stackoverflow.com/questions/15673492/gcc-compile-fails-with-pthread-and-option-std-c99 |
13,836,307 | How to prevent PHP script running more than once? | Currently, I tried to prevent an onlytask.php script from running more than once: $fp = fopen("/tmp/"."onlyme.lock", "a+"); if (flock($fp, LOCK_EX | LOCK_NB)) { echo "task started\n"; // while (true) { // do something lengthy sleep(10); } // flock($fp, LOCK_UN); } else { echo "task already running\n"; } fclose($fp); an... | How to prevent PHP script running more than once? Currently, I tried to prevent an onlytask.php script from running more than once: $fp = fopen("/tmp/"."onlyme.lock", "a+"); if (flock($fp, LOCK_EX | LOCK_NB)) { echo "task started\n"; // while (true) { // do something lengthy sleep(10); } // flock($fp, LOCK_UN); } else ... | php, linux, cron, centos | 11 | 10,920 | 7 | https://stackoverflow.com/questions/13836307/how-to-prevent-php-script-running-more-than-once |
13,184,384 | Mono 3.0.0 build on CentOS 6 | I recently found myself needing to build Mono 3.0 for CentOS 6, with a request from my infrastructure guy to otherwise keep the system as close to CentOS as possible (i.e. no 3rd-party packages if possible). Because there are currently no Mono 3.0 RPMs that I could find, I went through the exercise of building it from ... | Mono 3.0.0 build on CentOS 6 I recently found myself needing to build Mono 3.0 for CentOS 6, with a request from my infrastructure guy to otherwise keep the system as close to CentOS as possible (i.e. no 3rd-party packages if possible). Because there are currently no Mono 3.0 RPMs that I could find, I went through the ... | build, mono, centos, rhel, centos6 | 11 | 9,352 | 2 | https://stackoverflow.com/questions/13184384/mono-3-0-0-build-on-centos-6 |
13,156,329 | Firebird JDBC driver connection character encoding | I have a JSF application running on tomcat6 in Fedora 17 using firebird as the database and all the registers coming from the database to the application are coming with a encoding problem. The language is Brazilian portuguese so I need e's and a's and c and here all of these special characters come with problems. The ... | Firebird JDBC driver connection character encoding I have a JSF application running on tomcat6 in Fedora 17 using firebird as the database and all the registers coming from the database to the application are coming with a encoding problem. The language is Brazilian portuguese so I need e's and a's and c and here all o... | java, jdbc, firebird, fedora | 11 | 19,612 | 3 | https://stackoverflow.com/questions/13156329/firebird-jdbc-driver-connection-character-encoding |
12,961,336 | I am unable to run a C++ program in Debian(Ubuntu) that works in Redhat(Centos) | TLDR: Having trouble compiling a C++ program that worked in Centos Redhat in Ubuntu Debian. Is there anything I Should be aware of between these two that would make a C++ program compiled using the same compiler not work? Hello, I'm trying to compile and run Germline ([URL] It works fine in RedHat Centos, but because C... | I am unable to run a C++ program in Debian(Ubuntu) that works in Redhat(Centos) TLDR: Having trouble compiling a C++ program that worked in Centos Redhat in Ubuntu Debian. Is there anything I Should be aware of between these two that would make a C++ program compiled using the same compiler not work? Hello, I'm trying ... | c++, ubuntu, centos, debian, redhat | 11 | 3,095 | 5 | https://stackoverflow.com/questions/12961336/i-am-unable-to-run-a-c-program-in-debianubuntu-that-works-in-redhatcentos |
12,879,406 | Linux beginner, Where to put boost libraries? | I'm not extremely familiar with the linux filesystem, having moved from windows, but I do have a decent amount of experience with C++ and the Boost libraries in windows. Having switched Fedora 17, can anyone tell me if there is a certain directory where I should install Boost to get it working the gnu compiler? Note: i... | Linux beginner, Where to put boost libraries? I'm not extremely familiar with the linux filesystem, having moved from windows, but I do have a decent amount of experience with C++ and the Boost libraries in windows. Having switched Fedora 17, can anyone tell me if there is a certain directory where I should install Boo... | c++, linux, boost, fedora | 11 | 19,475 | 4 | https://stackoverflow.com/questions/12879406/linux-beginner-where-to-put-boost-libraries |
9,468,164 | Problems installing R on Linux CentOS 6.2 | When installing R on Linux CentOS 6.2 I get the following: Error: Package: R-core-2.10.0-2.el5.x86_64 (/R-core-2.10.0-2.el5.x86_64) Requires: libtk8.4.so()(64bit) Error: Package: R-core-2.10.0-2.el5.x86_64 (/R-core-2.10.0-2.el5.x86_64) Requires: libtcl8.4.so()(64bit) There are several helps out there for this type of e... | Problems installing R on Linux CentOS 6.2 When installing R on Linux CentOS 6.2 I get the following: Error: Package: R-core-2.10.0-2.el5.x86_64 (/R-core-2.10.0-2.el5.x86_64) Requires: libtk8.4.so()(64bit) Error: Package: R-core-2.10.0-2.el5.x86_64 (/R-core-2.10.0-2.el5.x86_64) Requires: libtcl8.4.so()(64bit) There are ... | linux, r, centos | 11 | 19,983 | 3 | https://stackoverflow.com/questions/9468164/problems-installing-r-on-linux-centos-6-2 |
9,410,021 | how to install python-devel for 2.6 version? | i use centos 5.4 ,the default python version is python2.4,so i use the python2.6.2.tar.gz compile a python 2.6 version and now i want to intstall board review project it need install python-devel package,if i use yum install python-devel,it will install the python2.4 relevent version python-devel, how could i get a pyt... | how to install python-devel for 2.6 version? i use centos 5.4 ,the default python version is python2.4,so i use the python2.6.2.tar.gz compile a python 2.6 version and now i want to intstall board review project it need install python-devel package,if i use yum install python-devel,it will install the python2.4 releven... | python, centos, yum, centos5 | 11 | 34,564 | 2 | https://stackoverflow.com/questions/9410021/how-to-install-python-devel-for-2-6-version |
9,283,380 | Bad exit status from /var/tmp/rpm-tmp.ajKra4 (%prep) | I am having a weird RPM issue, I am new to it so bear with me... I have the spec file created and when I run to do the build I get an error: /var/tmp/rpm-tmp.ajKra4: line 36: cd: hero-01: No such file or directory error: Bad exit status from /var/tmp/rpm-tmp.ajKra4 (%prep) Then I check that temp file and it is trying t... | Bad exit status from /var/tmp/rpm-tmp.ajKra4 (%prep) I am having a weird RPM issue, I am new to it so bear with me... I have the spec file created and when I run to do the build I get an error: /var/tmp/rpm-tmp.ajKra4: line 36: cd: hero-01: No such file or directory error: Bad exit status from /var/tmp/rpm-tmp.ajKra4 (... | centos, rpm, rpmbuild, specifications | 11 | 35,932 | 3 | https://stackoverflow.com/questions/9283380/bad-exit-status-from-var-tmp-rpm-tmp-ajkra4-prep |
8,816,836 | Apache 403 error, (13)Permission denied: access to / denied, Fedora 16 | I've just set up apache on my Fedora 16. And i can't get my vhosts working! Though localhost/phpmyadmin works fine.. I got this in my httpd.conf <Directory /home/renat/www> AllowOverride All Options +Indexes +FollowSymLinks Order allow,deny Allow from all </Directory> NameVirtualHost *:80 <VirtualHost *:80> ServerName ... | Apache 403 error, (13)Permission denied: access to / denied, Fedora 16 I've just set up apache on my Fedora 16. And i can't get my vhosts working! Though localhost/phpmyadmin works fine.. I got this in my httpd.conf <Directory /home/renat/www> AllowOverride All Options +Indexes +FollowSymLinks Order allow,deny Allow fr... | apache, fedora | 11 | 29,334 | 5 | https://stackoverflow.com/questions/8816836/apache-403-error-13permission-denied-access-to-denied-fedora-16 |
8,442,713 | Eclipse hangs while debugging | I searched lot about this topics but can't find a proper solution. I am using eclipse 3.6 Helios version with operating system fedora15. In my application I am using GWT2.4 for front end development. Now while I work with debug mode and want to debug at some point at the same time eclipse hangs for 3-4 mins.It resumes ... | Eclipse hangs while debugging I searched lot about this topics but can't find a proper solution. I am using eclipse 3.6 Helios version with operating system fedora15. In my application I am using GWT2.4 for front end development. Now while I work with debug mode and want to debug at some point at the same time eclipse ... | eclipse, gwt, fedora | 11 | 11,126 | 5 | https://stackoverflow.com/questions/8442713/eclipse-hangs-while-debugging |
7,723,937 | Rails: wkhtmltopdf RuntimeError (Location of wkhtmltopdf unknown) | I am using Ubuntu 11.04 to develop an app in Ruby on Rails. In the app I need to generate pdf documents. So I am using the wicked_pdf and wkhtmltopdf-binary gems. In the development environment in my system everything is working fine. But once I deployed the app in production on CentOS 5.6 using Phusion Passenger, when... | Rails: wkhtmltopdf RuntimeError (Location of wkhtmltopdf unknown) I am using Ubuntu 11.04 to develop an app in Ruby on Rails. In the app I need to generate pdf documents. So I am using the wicked_pdf and wkhtmltopdf-binary gems. In the development environment in my system everything is working fine. But once I deployed... | ruby-on-rails, ruby, centos, wkhtmltopdf, wicked-pdf | 11 | 14,519 | 6 | https://stackoverflow.com/questions/7723937/rails-wkhtmltopdf-runtimeerror-location-of-wkhtmltopdf-unknown |
4,334,206 | undefined reference to pthread_create in c program on eclipse (Fedora) | I have a problem in building a c thread program. Program is giving error like "undefined reference to pthread_creat". I searched and found to use gcc options like "gcc -lpthread -o ...." But I not able to set it for eclipse. I tried to make change in makefile but every time it got replaced with default options. Please ... | undefined reference to pthread_create in c program on eclipse (Fedora) I have a problem in building a c thread program. Program is giving error like "undefined reference to pthread_creat". I searched and found to use gcc options like "gcc -lpthread -o ...." But I not able to set it for eclipse. I tried to make change i... | c, eclipse, fedora | 11 | 19,854 | 3 | https://stackoverflow.com/questions/4334206/undefined-reference-to-pthread-create-in-c-program-on-eclipse-fedora |
3,852,857 | How to access a data structure from a currently running Python process on Linux? | I have a long-running Python process that is generating more data than I planned for. My results are stored in a list that will be serialized (pickled) and written to disk when the program completes -- if it gets that far. But at this rate, it's more likely that the list will exhaust all 1+ GB free RAM and the process ... | How to access a data structure from a currently running Python process on Linux? I have a long-running Python process that is generating more data than I planned for. My results are stored in a list that will be serialized (pickled) and written to disk when the program completes -- if it gets that far. But at this rate... | python, linux, memory, fedora, disk | 11 | 2,942 | 4 | https://stackoverflow.com/questions/3852857/how-to-access-a-data-structure-from-a-currently-running-python-process-on-linux |
3,731,384 | libstdc++.so.5: cannot open shared object file - but library is installed and up-to-date | My client had some developer write a small c++ command-line app to run on their Linux servers. On one of the servers (running Fedora 11), when I execute the app I get the following error: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory Obviously the first ... | libstdc++.so.5: cannot open shared object file - but library is installed and up-to-date My client had some developer write a small c++ command-line app to run on their Linux servers. On one of the servers (running Fedora 11), when I execute the app I get the following error: error while loading shared libraries: libst... | linux, fedora, libstdc++ | 11 | 70,829 | 7 | https://stackoverflow.com/questions/3731384/libstdc-so-5-cannot-open-shared-object-file-but-library-is-installed-and-up |
66,753,276 | Unused Docker containers stuck in Removal in Progress state. Device or Resource Busy | I'm running Docker version 20.10.5 on a Centos 7 Box. I stopped my project with docker-compose down and every container had the same message - Error response from daemon: container <container ID>: driver "overlay2" failed to remove root filesystem: unlinkat /var/lib/docker/overlay2/<long number>/merged: device or resou... | Unused Docker containers stuck in Removal in Progress state. Device or Resource Busy I'm running Docker version 20.10.5 on a Centos 7 Box. I stopped my project with docker-compose down and every container had the same message - Error response from daemon: container <container ID>: driver "overlay2" failed to remove roo... | linux, docker, centos, centos7 | 11 | 20,600 | 2 | https://stackoverflow.com/questions/66753276/unused-docker-containers-stuck-in-removal-in-progress-state-device-or-resource |
38,652,295 | Java nio2 Directory is not closed. Causes "too many open files" error | I am creating a lot of temp directories for batch processing using this: Path tmp = Files.createTempDirectory("tmp-images"); The directory may contain 1-50 image files. I am deleting the directory after processing using Apache FileUtils : FileUtils.deleteDirectory(tmp.toFile()); The directory is deleted but I am runnin... | Java nio2 Directory is not closed. Causes "too many open files" error I am creating a lot of temp directories for batch processing using this: Path tmp = Files.createTempDirectory("tmp-images"); The directory may contain 1-50 image files. I am deleting the directory after processing using Apache FileUtils : FileUtils.d... | java, linux, file, tomcat, centos | 11 | 2,617 | 1 | https://stackoverflow.com/questions/38652295/java-nio2-directory-is-not-closed-causes-too-many-open-files-error |
24,669,003 | Hosting WCF service on linux | Is there Any way of hosting WCF service on Linux. I read about wine but i didn't see any example of hosting WCF service with it. P.S : I have tried mono and mod_mono but to no avail. | Hosting WCF service on linux Is there Any way of hosting WCF service on Linux. I read about wine but i didn't see any example of hosting WCF service with it. P.S : I have tried mono and mod_mono but to no avail. | wcf, mono, centos, wine, mod-mono | 11 | 21,661 | 2 | https://stackoverflow.com/questions/24669003/hosting-wcf-service-on-linux |
22,030,931 | How to rebuild dockerfile quick by using cache? | I want to optimize my Dockerfile. And I wish to keep cache file in disk. But, I found when I run docker build . It always try to get every file from network. I wish to share My cached directory during build (eg. /var/cache/yum/x86_64/6). But, it works only on docker run -v ... . Any suggestion?(In this example, only 1 ... | How to rebuild dockerfile quick by using cache? I want to optimize my Dockerfile. And I wish to keep cache file in disk. But, I found when I run docker build . It always try to get every file from network. I wish to share My cached directory during build (eg. /var/cache/yum/x86_64/6). But, it works only on docker run -... | caching, centos, docker | 11 | 10,867 | 3 | https://stackoverflow.com/questions/22030931/how-to-rebuild-dockerfile-quick-by-using-cache |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.