This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
CentOS 7 Problems / Re: How to Fix Http Error within Wordpress & Centos Web Panel Media Upload
« on: March 29, 2020, 09:40:00 PM »
After days of searching, finally found this. Thanks man
2
CentOS 7 Problems / Re: Unable to login into User Account
« on: August 29, 2019, 09:03:47 PM »
I've found what cwp is using for File system lock. Its chattr utility of linux.
I fixed it by
SSH into server using root
Ran this command
-R is for recursive, means it will apply changes to everything inside directory
-i is for removing the i flag which is actually what locks the file system (+i is for adding the flag)
{USER} is the username of the account you want to unlock.
For example if the username of an account is marcus, you will use something like this
To read more about chattr, go to http://man7.org/linux/man-pages/man1/chattr.1.html
Once you unlock the file system using chattr, you will be able to login into User Account.
I fixed it by
SSH into server using root
Ran this command
Code: [Select]
chattr -R -i /home/{USER}/
-R is for recursive, means it will apply changes to everything inside directory
-i is for removing the i flag which is actually what locks the file system (+i is for adding the flag)
{USER} is the username of the account you want to unlock.
For example if the username of an account is marcus, you will use something like this
Code: [Select]
chattr -R -i /home/marcus/
To read more about chattr, go to http://man7.org/linux/man-pages/man1/chattr.1.html
Once you unlock the file system using chattr, you will be able to login into User Account.
3
CentOS 7 Problems / Re: Unable to login into User Account
« on: August 29, 2019, 08:13:44 PM »
Facing the same issue, no solution so far. Have you solved this issue?
Any help will be appreciated.
Any help will be appreciated.
Pages: [1]