How to start, enable disable service in CentOS8/RHEL8 Penguin Technology - 15:41 0 Edit Start service in CentOS 8/RHEL8 # systemctl start httpd Enable service permanently in CentOS 8/RHEL8 # systemctl enable httpd Disable...
CentOS8/RHEL8 check service status active/inactive or enable/disable Penguin Technology - 15:27 0 Edit Check service status running not not Syntax: systemctl status service-name # systemctl status sshd # systemctl is-active sshd activ...
sed command remove white space end of line Md. Shahzad Alam - 14:02 0 Edit Command to remove while space end of line in linux sed 's/ *$//'
Create user in MySQL with full database previleges Md. Shahzad Alam - 22:59 0 Edit Create user in MySQL with DB full right CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PR...
Create user in MySQL with read only database right Md. Shahzad Alam - 22:55 0 Edit Create user in MySQL with readonly right CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; GRANT S...