Issue You are trying to mount an NTFS partition and the console is throwing the below error. Let’s see how to fix this. The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Failed to mount '/dev/sda3': Operation not permitted The NTFS partition is in an unsafe state. ...
We are a big fan of OpenVPN when it comes to security. Many organizations have already switched to OpenVPN from PPTP etc. NixVPN is my favorite VPN software to host it on a standalone instance. But what if, if you already have a server protected with CSF firewall, and you want to install OpenVPN by ...
Lets see how we can configure a secure FTP server on CentOS RHEL 6 / 7 First, you need to install the vsftp package on your server yum install -y vsftpd Once installed, lets start editing the configuration file, vim /etc/vsftpd/vsftpd.conf Line #12 disable anonymous FTP access, with the below configuration change. anonymous_enable=NO Chroot / Jail FTP ...
Some times you need to disable sudo su – access on your environment so that the users will use sudo command always and they will not switch to any other users account unnecessarily Lets see how to do it Edit the /etc/suoders by running visudo visudo Add the below Command Alias Cmnd_Alias BLOCKSU = /bin/su ...
Sometimes it’s necessary to log all the sudo commands run in your environment. Let”s see how to achieve this. Edit the sudoers file by running visudo visudo Add the below line to the Defaults section Defaults logfile=/var/log/sudo Now all the commands from a sudo user will be logged in /var/log/sudo file. [[email protected] ~]# cat /var/log/sudo Jan 11 ...
AWS has announced immediate availability of the new Europe (London) Region. The London Region joins Ireland and Frankfurt as AWS’ third European location, and provides the customer with a new option for hosting applications benefiting from infrastructure located in Europe. AWS is now operating sixteen regions worldwide, bringing the total number of AWS Availability Zones ...
How to clear memcache and redis without restarting service. Clear Memcache telnet 172.25.16.191 11211 Trying 172.25.16.191... Connected to 172.25.16.191. Escape character is '^]'. flush_all OK quit Connection to localhost closed by foreign host. Clear Redis Cache [[email protected] ~]# redis-cli -h 172.25.16.191 172.25.16.191:6379 > flushall OK Jobin Josephnixhive.com/
Dropbox is sending out the below email to all Dropbox users with new MacOS Sierra. The mail is received by those who are using Dropbox folder in MacOS Documents. You have 2 options to avoid any dataloss. Disable iCloud Sync of Documents Folder Move your Dropbox folder from Documents to home directory. Sample email below Hi Admin, ...
Today we had an issue with our Master-Master replication. Master2 was throwing the below error and the replication was stopped Last_SQL_Errno: 145 Last_SQL_Error: Error 'Table './exampledb/exampletable' is marked as crashed and should be repaired' on query. Default database: 'livewbmy_db'. Query: 'INSERT INTO `exampletable` (`challenge`, `response`, `hashkey`, `expiration`) VALUES ('XBUL', 'xbul', 'a9e0f4e3dxxxxxccccccc0c8f8f1', '2016-09-29 21:10:03')' Since its ...