02-12-2020, 06:16 AM
(02-11-2020, 06:34 PM)huuthi95 Wrote: In using centos-7-x86_64-minimal sir, before i have install CyberPanel but then my VPS was re install and now i have that trouble
@
The command should have worked! Did you check what's in the /var/log/installLogs.txt file as @'Hidden Refuge' suggested ?
I would think, assuming your system status is OK, that's another seLinux related issue. Thus, first check if it's enabled (hopefully it is.)
Code: (Select All)
sestatus
To rule it out, try to temprarily disable it, like so:
Code: (Select All)
echo 0 > /selinux/enforce
Then run your command, preferably use -Uvh to install your package since it works fine even when there are no previous versions of the package installed.
Code: (Select All)
rpm -Uvh .....
Whatever the result, reenable your seLinux, please, like this:
Code: (Select All)
echo 1 > /selinux/enforce
Without additional input, no one can second guess your issue.
Good luck!