Hanging at “Running Transaction Test” when trying to install php-soap
Clash Royale CLAN TAG#URR8PPP
I have here a CentOS 5 and I'm trying to run yum install php-soap
but the installer hangs on and the last step is Running Transaction Test
.
I found out that NFS shares are the problem. See here or here or here. I tried to unmount everything which came up when entering cat /etc/mtab | grep nfs
. I also tried to use umount -a -t nfs
. Then I run the install command. But I can't get this working.
strace yum -y update
show me many lines, but I can't get a sense out of it.
Furthermore I tried
/bin/rm /var/lib/rpm/__db.*
cd /var/cache/yum
/bin/rm -rf *
yum clean all
yum update
but still hangs on.
Do I have to remove the mounts from the other server to this machine?
centos mount software-installation yum upgrade
add a comment |
I have here a CentOS 5 and I'm trying to run yum install php-soap
but the installer hangs on and the last step is Running Transaction Test
.
I found out that NFS shares are the problem. See here or here or here. I tried to unmount everything which came up when entering cat /etc/mtab | grep nfs
. I also tried to use umount -a -t nfs
. Then I run the install command. But I can't get this working.
strace yum -y update
show me many lines, but I can't get a sense out of it.
Furthermore I tried
/bin/rm /var/lib/rpm/__db.*
cd /var/cache/yum
/bin/rm -rf *
yum clean all
yum update
but still hangs on.
Do I have to remove the mounts from the other server to this machine?
centos mount software-installation yum upgrade
NFS mounts themselves are not necessarily the problem. Stale NFS mounts can be a problem, as mentioned in the links you provided. Ifdf
doesn't hang, and doesn't mention stale NFS mounts, then that is not likely the cause of your problem. Can you provide the last 10-20 or so lines of thestrace
output?
– Lars Rohrbach
Mar 23 '12 at 4:29
add a comment |
I have here a CentOS 5 and I'm trying to run yum install php-soap
but the installer hangs on and the last step is Running Transaction Test
.
I found out that NFS shares are the problem. See here or here or here. I tried to unmount everything which came up when entering cat /etc/mtab | grep nfs
. I also tried to use umount -a -t nfs
. Then I run the install command. But I can't get this working.
strace yum -y update
show me many lines, but I can't get a sense out of it.
Furthermore I tried
/bin/rm /var/lib/rpm/__db.*
cd /var/cache/yum
/bin/rm -rf *
yum clean all
yum update
but still hangs on.
Do I have to remove the mounts from the other server to this machine?
centos mount software-installation yum upgrade
I have here a CentOS 5 and I'm trying to run yum install php-soap
but the installer hangs on and the last step is Running Transaction Test
.
I found out that NFS shares are the problem. See here or here or here. I tried to unmount everything which came up when entering cat /etc/mtab | grep nfs
. I also tried to use umount -a -t nfs
. Then I run the install command. But I can't get this working.
strace yum -y update
show me many lines, but I can't get a sense out of it.
Furthermore I tried
/bin/rm /var/lib/rpm/__db.*
cd /var/cache/yum
/bin/rm -rf *
yum clean all
yum update
but still hangs on.
Do I have to remove the mounts from the other server to this machine?
centos mount software-installation yum upgrade
centos mount software-installation yum upgrade
edited Mar 23 '12 at 3:34
Kevin
27.5k1064101
27.5k1064101
asked Feb 23 '12 at 18:29
testingtesting
2593716
2593716
NFS mounts themselves are not necessarily the problem. Stale NFS mounts can be a problem, as mentioned in the links you provided. Ifdf
doesn't hang, and doesn't mention stale NFS mounts, then that is not likely the cause of your problem. Can you provide the last 10-20 or so lines of thestrace
output?
– Lars Rohrbach
Mar 23 '12 at 4:29
add a comment |
NFS mounts themselves are not necessarily the problem. Stale NFS mounts can be a problem, as mentioned in the links you provided. Ifdf
doesn't hang, and doesn't mention stale NFS mounts, then that is not likely the cause of your problem. Can you provide the last 10-20 or so lines of thestrace
output?
– Lars Rohrbach
Mar 23 '12 at 4:29
NFS mounts themselves are not necessarily the problem. Stale NFS mounts can be a problem, as mentioned in the links you provided. If
df
doesn't hang, and doesn't mention stale NFS mounts, then that is not likely the cause of your problem. Can you provide the last 10-20 or so lines of the strace
output?– Lars Rohrbach
Mar 23 '12 at 4:29
NFS mounts themselves are not necessarily the problem. Stale NFS mounts can be a problem, as mentioned in the links you provided. If
df
doesn't hang, and doesn't mention stale NFS mounts, then that is not likely the cause of your problem. Can you provide the last 10-20 or so lines of the strace
output?– Lars Rohrbach
Mar 23 '12 at 4:29
add a comment |
1 Answer
1
active
oldest
votes
Just do this steps :
1. Kill all RPM and yum processes (rhn_check, yum, rpm, rhn-applet):
ps -axwww | grep rpm
n the list of processes, the first number on each line is the PID. For all PIDs listed except for the one associated with grep:
kill -9
Repeat the above steps for each of the programs listed.
- Remove any RPM lock files (/var/lib/rpm/__db*):
rm -rf /var/lib/rpm/__db*
- Rebuild the RPM database:
rpm --rebuilddb
Have Nice time.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f32509%2fhanging-at-running-transaction-test-when-trying-to-install-php-soap%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just do this steps :
1. Kill all RPM and yum processes (rhn_check, yum, rpm, rhn-applet):
ps -axwww | grep rpm
n the list of processes, the first number on each line is the PID. For all PIDs listed except for the one associated with grep:
kill -9
Repeat the above steps for each of the programs listed.
- Remove any RPM lock files (/var/lib/rpm/__db*):
rm -rf /var/lib/rpm/__db*
- Rebuild the RPM database:
rpm --rebuilddb
Have Nice time.
add a comment |
Just do this steps :
1. Kill all RPM and yum processes (rhn_check, yum, rpm, rhn-applet):
ps -axwww | grep rpm
n the list of processes, the first number on each line is the PID. For all PIDs listed except for the one associated with grep:
kill -9
Repeat the above steps for each of the programs listed.
- Remove any RPM lock files (/var/lib/rpm/__db*):
rm -rf /var/lib/rpm/__db*
- Rebuild the RPM database:
rpm --rebuilddb
Have Nice time.
add a comment |
Just do this steps :
1. Kill all RPM and yum processes (rhn_check, yum, rpm, rhn-applet):
ps -axwww | grep rpm
n the list of processes, the first number on each line is the PID. For all PIDs listed except for the one associated with grep:
kill -9
Repeat the above steps for each of the programs listed.
- Remove any RPM lock files (/var/lib/rpm/__db*):
rm -rf /var/lib/rpm/__db*
- Rebuild the RPM database:
rpm --rebuilddb
Have Nice time.
Just do this steps :
1. Kill all RPM and yum processes (rhn_check, yum, rpm, rhn-applet):
ps -axwww | grep rpm
n the list of processes, the first number on each line is the PID. For all PIDs listed except for the one associated with grep:
kill -9
Repeat the above steps for each of the programs listed.
- Remove any RPM lock files (/var/lib/rpm/__db*):
rm -rf /var/lib/rpm/__db*
- Rebuild the RPM database:
rpm --rebuilddb
Have Nice time.
answered Feb 6 at 8:54
shervin haririshervin hariri
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f32509%2fhanging-at-running-transaction-test-when-trying-to-install-php-soap%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
NFS mounts themselves are not necessarily the problem. Stale NFS mounts can be a problem, as mentioned in the links you provided. If
df
doesn't hang, and doesn't mention stale NFS mounts, then that is not likely the cause of your problem. Can you provide the last 10-20 or so lines of thestrace
output?– Lars Rohrbach
Mar 23 '12 at 4:29