Centos 7 Hostname Güncelleme

0

Centos 7 ile birlikte komut sisteminde 'de değişiklik oluşdu. Centos 7 kurarken hostname belirleyebiliyorsunuz. Lakin bunu atlarsanız daha sonra ssh üzerinden root yetkisi ile bağlandıktan sonra hostnamectl komutu ile var olan hostname adresini görüntüleyebilirsiniz.

Centos 7 hostname değiştirmek için kokut satırı üzerinden hostnamectl set-hostname YENI-HOST-NAME komutu ile güncellemeyi gerçekleştirebilirsiniz.

 

Linux Plesk Gzip Aktifleştirmek

0

Plesk panel kurulu linux sunucularda (apache) gzipi aktif etmek için sırasıyla aşağıdaki işlemleri yapmak yeterki olacaktır.

# cd /etc/httpd/conf
# cp httpd.conf httpd.conf.bak
# nano httpd.conf

nano ile açtoğımız dosyanın en altına aşağıdaki kodları ekliyoruz.

####
# Deflate output configuration
####
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/js
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

 

dosyayı kaydedip çıktıktan sonra web servisimizi yeniden başlatıyoruz.

service httpd restart

 

Yaptıoğımız işlemlerin aktif olup olmadığı kontrol etmek için http://www.whatsmyip.org/http_compression/ adresini kullanabilirsiniz.

 

Linux Plesk Postfix 587 Ayarı

0

Merhaba,

Centos plesk panel kurulu sunucunuz üzerinde postfix mail servisini kullanıyor ve eğer outlook üzerinde mail gönderirken hata alıyorsanız aşağıdaki işlemleri yaparak sorunu çözebilirsiniz.

SSH bağlanın.

# nano /etc/postfix/master.cf

submission inet n – n – – smtpd -o smtpd_enforce_tls=yes -o smtpd_tls_security_level=encrypt -o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticated,reject -o smtpd_sender_restrictions=

encrypt değerini bularak aşağıdaki şekilde değiştirin.

submission inet n – n – – smtpd -o smtpd_enforce_tls=yes -o smtpd_tls_security_level=may -o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticated,reject -o smtpd_sender_restrictions=

 

Centos Dosya Silme İşlemleri

0

Disk Üzerinde Yer Açma
tune2fs -m 1 /dev/sda3

Klasör boyutlarını listeleme (Ana Dizin)
cd /
du -sh ./*

Klasöre girerek dosya boyutlarını görme
cd /<suspiciously large dir>
du -s ./* | sort -n

 

Exchange 2010 OWA beyaz sayfa

0

Exchange server 2010 üzerinde bazen servislerin durması hatalar ile karşılaşmanıza neden olabiliyor.

Bunlardan birisi de Exchange 2010 OWA üzerinden giriş yaptığınız zaman beyaz sayfa göstermesidir (blank page, boş sayfa)

Bu hatanın çözümü ise oldukça basittir.

Exchange 2010 OWA beyaz sayfa hatasını ise "Microsoft Exchange Forms-Based Authentication Service". servisini başlatmanızdır.

 

 

Creating a static copy of a dynamic website

0

Creating a static copy of a dynamic website


At work we have several websites that we develop with Plone, but each year we make a new version and we want to keep an archive of the old version.

Since it takes a lot of memory to keep a Zope instance for these old websites that probably won’t need to be edited ever again, it makes sense to make a static copy of the website. It also eliminates the work needed to update the instance when security patches come out (and eliminates security risks, in cases of old versions that are no more maintained).

There are some tools that can help in this case; I chose to use wget, which is available in most Linux distributions by default.

 

The command line, in short…
wget -k -K  -E -r -l 10 -p -N -F –restrict-file-names=windows -nH http://website.com/

…and the options explained

-k : convert links to relative
 -K : keep an original versions of files without the conversions made by wget
 -E : rename html files to .html (if they don’t already have an htm(l) extension)
 -r : recursive… of course we want to make a recursive copy
 -l 10 : the maximum level of recursion. if you have a really big website you may need to put a higher number, but 10 levels should be enough.
 -p : download all necessary files for each page (css, js, images)
 -N : Turn on time-stamping.
 -F : When input is read from a file, force it to be treated as an HTML file.
 -nH : By default, wget put files in a directory named after the site’s hostname. This will disabled creating of those hostname directories and put everything in the current directory.
 –restrict-file-names=windows : may be useful if you want to copy the files to a Windows PC.

Possible problems
»  wget download the homagepage, robots.txt then stops!
 Your robots.txt file probably denies access to your site to search engines. Yes, in recursive mode, wget will respect the robots.txt file, so you will need to remove it before making the copy. Don’t forget to put it back in the static site if that’s what you want.
» Stylesheets : if you have @import stylesheet imports, wget won’t see them, and won’t download them :( You might want to change them to <link rel=”stylesheet” … /> imports, which wget will see and download.
» Stylesheet images : wget won’t download background-images referenced in CSS files. For most websites that should not be too long to download those images manually.
» Be sure that you CSS files and with “.css”! Apache won’t send the correct mime-type if your file extension is not .css, and Firefox will not use the stylesheet.
 (test.css?color=blue won’t work, change it to test.css?color=blue&ext=.css)
 The same problem may happen with other files types that need to have a proper mimetype set (video files, for instance)
» LinguaPlone specific problems »  To prevent having several duplicated files with the set_language parameter, you could setup one subdomain for each language, and force the set_language= in the Apache redirect rule.
»  I also recommand to change the language link so it points to the main page instead of the current page.
»  You have several possibilities here, but by just doing a wget without changing anything, you may end up with pages where languages are a bit fucked up.

» <base> tag problem : If you pages contains a base tag (which is true for Plone sites), wget will empty it’s value but leave the base tag there ([base href="" /]). That works in Firefox, but it will confuse IE, which won’t load any images, CSS or links.To fix it, you can remove the base tag completely with this command : find | grep html$ | xargs perl -i -p -e 's/<base href=\"\" \/>//g'


Downsides
» Most file names will change (bad for SEO)
» May take some manual work to have a working static copy

After taking care of all the possible problems, you should have a working static site! Be sure to check with both IE and Firefox (at least), because some problems happen in only one browser.
 Then, you can shut down your CMS and server the static content using a standard webserver.

Don’t forget to put a nice 404 page pointing to your main page, since your URLs probably changed, and several visitors will get a 404 error if they come from search engines or bookmarks.

 

Alıntı : https://www.quora.com/How-do-you-export-a-WordPress-site-to-a-static-HTML

Linux Plesk Sitelerin Toplu IP Adresi Değiştirme

0

Merhaba,

Kullanıcıların çok sık karşılaştığı ve bir çok hatalı durumların ortaya çıktığı plesk 'de bütün sitelerin ip adresini toplu olarak değiştirmek için aşağıdaki komut işinizi görecektir.

 

mysql -Ns -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e 'select name from domains' | awk '{print "/usr/local/psa/bin/domain –update " $1 " -ip <IP ADRESİNİZ>"}' | sh

Bu komutu çalıştırdıktan sonra ssh konsol ekranında sitelerin ip adresinin değiştiğini göreceksiniz. Sitelerin sayısına göre işlemin tamamlanması zaman almaktadır.

Son olarak aşağıdaki komutu çalıştırarak plesk panelin kendisine gelmesini sağlıyoruz.

cd /usr/local/psa/bootstrapper/pp11.0.9-bootstrapper/
./bootstrapper.sh repair

EK bilgilendirme olarak,

pp11.0.9-bootstrapper >> plesk sürümüne göre değişiklik gösterebilir.

 

 

 

WHM / cPanel Exim Mail Kuyruğunu Temizlemek

0

Bekleyen mail sayısını görmek

exim -bp

Bekleyen mail ID sini girerek maili silmek

exim -Mrm {message-id}

Bekleyen mailleri silebileceğiniz 1. komut

exim -bp | awk '/^ *[0-9]+[mhd]/{print "exim -Mrm " $3}' | bash

Bekleyen mailleri silebileceğiniz 2. komut

exim -bp | exiqgrep -i | xargs exim -Mrm

Cpanel SSH Support access ID Öğrenme

0

Merhaba,

Cpanel 'e ticket açarken veya farklı ihtiyaçlarda kullanabilmek adına bazen whm panelinize erişemediğiniz durumlarda aşağıdaki kod ile ssh üzerinden Support access ID numaranızı öğrenebilirsiniz.

 

/usr/local/cpanel/cpanel -S

Esxi Sunucuları Listeleme

0

Merhabalar,

Vmware Esxi kurulu sunucularda bazen sorunlar yaşarız ve bütün sanal sunucuları listemek gerekebilir. Aşağıdaki komutla ile sunucuya SSH ile bağlanıp bu komutu çalıştırdığınız zaman sunucuların listesini görebilirsiniz.

 

esxcli vm process list

Go to Top