Allow phpMyAdmin remote access on xampp
xampp server only allow access to phpMyAdmin from localhost. This is because root password is set to blank by default. If you…
xampp server only allow access to phpMyAdmin from localhost. This is because root password is set to blank by default. If you…
CentOS 8 comes with PHP 7.2. To install PHP 7.3, you need to enable remi repo. You can download remi-release rpm file…
Allow phpMyAdmin remote access on xampp Restart Services in Xampp Linux To auto start XAMPP on boot on Ubuntu, create file vi…
First disable SELinux by editing file vi /etc/selinux/config Find SELINUX=enforcing Replace with SELINUX=disabled Now restart the server. reboot Verify SELinux is disabled…
KernelCare allow you to update Linux Kernel with out rebooting your server. You can find more info at https://www.kernelcare.com To install KernelCare,…
mongoimport allow you to restore mongodb backups. mongoimport –db DB_NAME –collection COLLECTION_NAME –file COLLECTION_BACKUP.json Example mongoimport –db direct_db –collection image_settings –file image_settings.json…
Create a directory for Vagrant project mkdir -p ~/vagrant/centos8 cd ~/vagrant/centos8 vagrant init generic/centos8 This will create a file with name “Vagrantfile”…
When login to CentOS 8 using SSH, you get a message asking you to enable web console. Activate the web console with:…
NextCloud is a private file storage, share, and sync platform like DropBox. It is a fork of OwnCloud. Both software is OpenSource.…
To install NextCloud desktop client on Ubuntu, add PPA sudo add-apt-repository ppa:nextcloud-devs/client sudo apt-get update Now run sudo apt install nextcloud-client After…
dnf is package manager for RHEL/CentOS 8. This is improved version of yum. To search for a package, use dnf search PACKAGE_NAME…
CentOS 8 provide 2 type of ISO. One that ends with boot.iso, this is 534 MB. This only include essential files to…