Most software needs other software to work. Those "other softwares" are dependencies.
Questions tagged [dependencies]
202 questions
2
votes
2 answers
Installation of gearmand fails on libevent dependency
I've installed the PostgreSQL yum repo and have PostgreSQL running for some time now, but now when I try to install gearmand I get the following errors:
Transaction Check Error:
file /usr/bin/event_rpcgen.py from install of…

PeeHaa
- 221
- 4
- 18
2
votes
2 answers
Windows Service dependencies
I have a Windows service A that depends on service B.
According to this Microsoft KB article I can add a registry key to tell Windows to wait until B starts before starting A.
Can I therefore expect service A to be shut down before B when I shut…

Ed Guiness
- 267
- 6
- 13
2
votes
2 answers
Start/stop Windows Service A also Start/stop Windows service B
I created two Windows services A and B, and would like to add dependency between them
so that I can:
Start service A (service B starts automatically)
Stop service A (service B stops automatically)
However, the command sc config ServiceA depend=…

Sean
- 21
- 2
2
votes
2 answers
Is there a convential way to manage Ruby on Rails server dependencies?
We use Chef to set up our servers, but I'm looking for a way to consolidate our server dependencies into a single config file that lives in source control.
We use capistrano for deployments, a custom build script for continuous integration, and now…

ndbroadbent
- 310
- 2
- 13
2
votes
2 answers
dpkg-checkbuilddeps?
I'm trying to build an application from source on a Debian machine; the source code includes a 'debian' directory with all the files required to build the package (control/rules etc.).
When I run dpkg-buildpackage, it fails because I don't have the…

mikewaters
- 1,175
- 1
- 14
- 27
2
votes
1 answer
Dependency Hell trying to install GCC on CentOS4
I have a production CentOS 4.4 box running Virtuozzo VPSes, and I'm trying to install GCC inside one of them so I can install the latest PHP from source. I downloaded gcc and its dependencies from a CentOS mirror and I was able to get some of them…

Ian Dunn
- 194
- 13
2
votes
3 answers
How can I set default versions of MySQL, Postgres, Apache, etc. prior to installing anything from ports in FreeBSD?
When I install software from ports on a FreeBSD system, sometimes rather outdated versions of Apache/MySQL/Perl/etc are installed as dependencies. Is there any way to set the versions of these ports beforehand so that if they're ever required, the…

Eugene Yarmash
- 2,433
- 5
- 34
- 54
2
votes
2 answers
What tool for tracking application/db/service installations and dependencies?
In our organisation, we have 4 layers of environments (DEV, INT, UAT, PROD). In each layer there are 1-3 sets of the following SOA environment (one per GUI application project):
Around 5-10 physical/virtual servers
4 oracle databases
5 web services…

Richard Dingwall
- 123
- 5
2
votes
0 answers
apt-get: libc6 upgrade needed but can't be installed; Kernel update needed but can't be done like anything else
Hello serverfault community!
After upgrading to Debian Buster apt doesn't seem to work in any way. I've read and tried several solutions but none of these worked.
Output when I try to install any package or execute apt dist-upgrade:
Building…

Orca37
- 21
- 1
- 3
2
votes
2 answers
libc6 dependency mismatch in Debian 9.12 stretch
I have the following libc6 dependency problem in Debian 9.12 stretch.
sudo apt install libc6-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you…

klor
- 344
- 4
- 8
- 25
1
vote
2 answers
Dependency error when Install PHPMyAdmin
I have a small VPS that managed via ISPCONFIG3 and CENTOS, recently I try to update its PHP version from 5.4 to 5.6 and 7.2 for Wordpress installation. I had a lot of errors but finally done. after that, my PHPMYADMIN didn't work. so I try to…

Mohammad Ali Nekouie
- 11
- 1
- 3
1
vote
1 answer
Server / service reboot order
I have a couple of servers that run several services. These services are depending on the availability of services on other servers.
Example
ServerA/webservice is depending on ServerB/sqlservice and ServerC/blobservice
When scheduling updates /…

Birger
- 113
- 4
1
vote
0 answers
Debian Jessie : locales / unmet dependencies
So I've got a VPS and, to be totally honest I have to admit, at some point I did a mess with apt sources and packages. :)
Now I'm trying to get a clean system, almost there, but I still have a little problem : I can't install the package locale.
My…

Bonswouar
- 131
- 5
1
vote
2 answers
How to run different role for different hosts in single ansible playbook?
I have 3 ansible playbook.
my_ansible
├── hosts
├── play1.yaml
├── play2.yaml
├── play3.yaml
└── roles
├── role1
├── role2
└── role3
hosts
[play1]
host1
[play2]
host2
[play3]
host3
Now, when I run play3, I want to run play2(role2) on…

Nilesh
- 255
- 1
- 6
- 18
1
vote
1 answer
Is there a minimal php5ts.dll?
I've completed my web app and am using mongoose to serve the php pages. The whole app & mongoose is less then 2MB.
The php5ts.dll is almost 5MB so that really adds bloat. Also, my app is very minimal so I don't need many of the php features, ie.…

shaiss
- 337
- 2
- 6
- 20