To install on Fedora:
yum install php-opcache
To turn on the opcache module, restart httpd service:
/bin/systemctl restart httpd.service
You will be able to see opcache running information in phpinfo.php.
A Linux blog by ioMeWeekly, includes tutorials, news, help, programming, tips and how-to guides for opensource applications.
yum install php-opcache
/bin/systemctl restart httpd.service
[root@F20-64 ~]# service sshd status
Redirecting to /bin/systemctl status sshd.service
sshd.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
[root@F20-64 ~]# yum install openssh-server
[root@F20-64 ~]# service sshd status
Redirecting to /bin/systemctl status sshd.service
sshd.service - OpenSSH server daemon
Loaded: loaded (/usr/lib/systemd/system/sshd.service; disabled)
Active: inactive (dead)
[root@F20-64 ~]# chkconfig sshd on
Note: Forwarding request to 'systemctl enable sshd.service'.
ln -s '/usr/lib/systemd/system/sshd.service' '/etc/systemd/system/multi-user.target.wants/sshd.service'
[root@F20-64 ~]# service sshd start
Redirecting to /bin/systemctl start sshd.service