oracle uek linux support costs can be 7x less than rhel linux
Monthly Archives: July 2015
m$ #statisscan lets you check any URL for out-of-date libraries, layout and accessibility issues
m$ #statisscan lets you check any URL for out-of-date libraries, layout and accessibility issues
@voxox have just run out of #voip #inums but check again in a few weeks
voxox have just run out of voip inums but matt says “check again in a few weeks”
nginx 1.x php 5.6 phpmyadmin 4.x
after installing nginx, php56u and php-fpm you may need to
yum install php56u-mbstring php56u-mcrypt php56u-mysqlnd php56u-pdo
then
service php-fpm restart
cent/ouek/rhel 6.x linux 2.x nginx 1.x php 5.x phpmyadmin 4 install problem
cent/ouek/rhel nginx phpmyadmin gives me an error even after ive mkdir config and chown nginx:nginx config
Cannot load or save configuration Please create web server writable folder config in phpMyAdmin top level directory as described in documentation. Otherwise you will be only able to download or display it.
cent/ouek/rhel 6.x linux 2.x nginx 1.x php 5.x phpmyadmin 4 install howto
cent/ouek/rhel linux nginx php phpmyadmin install is NOT easy !
see http://twiwoo.com/php/how-to-install-nginx-php-fpm-on-centos-6/
first add epel repo then
yum install nginx yum install php-fpm yum install phpmyadmin
fix major problem with default php install the MISSING session subdir
cd /var/lib/php mkdir session chown nginx:nginx session change apache to nginx
vi /etc/php-fpm.d/www.conf change apache to nginx
; RPM: apache Choosed to be able to access some dir as httpd user = nginx ; RPM: Keep a group allowed to write in log dir. group = nginx
start services
service nginx start service php-fpm start
centos oracle uek red hat 5 6 7 nginx php 5.6 install howto
http://wiki.nginx.org/PHPFcgiExample
install EPEL and IUSC repos
# yum install nginx # yum install php56u-fpm
edit /etc/nginx/conf.d/default.conf and replace the default fastcgi_param value as below
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
restart nginx and php-fpm services
# service nginx start # service php-fpm start
centos oracle uek red hat desktop startup packages to disable
centos oracle uek red hat desktop startup packages to disable especially if you are running a vm
system | preferences | startup packages
disable
- bluetooth manager
- packagekit update applet (by richard hughes)
- screensaver
reboot
centos oracle uek red hat enterprise linux rpm repos for extra packages such as php 5.6
#sysadmin @webmin #webminstats historical system stats module install
centos / oracle uek / red hat enterprise / ubuntu linux sysadmin webmin webminstats historic system stats module install howto
on ed/x/ubuntu you will need to install rrdtool
# aptitude install rrdtool # aptitude install librrdtool-oo-perl
on centos/oracle uek/red hat you will need to install perl-CGI
# yum install perl-CGI
install webmin stats via webmin | webmin configuration | webmin modules | from ftp
http://downloads.sourceforge.net/webminstats/sysstats-2.12.tgz
if you are running webmin on a server behind a firewall you may need to create an ssh https tunnel before you can connect
$ ssh user@example.com -L 10000:localhost:10000 -N