Translate

15 Ağustos 2017 Salı

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu


About LAMP



LAMP stack is a group of open source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP. Since the virtual private server is already running Ubuntu, the linux part is taken care of. Here is how to install the rest.

Set Up

The steps in this tutorial require the user to have root privileges on your VPS. 

Step One—Install Apache



Apache is a free open source software which runs over 50% of the world’s web servers.

To install apache, open terminal and type in these commands:
sudo apt-get update
sudo apt-get install apache2

That’s it. To check if Apache is installed, direct your browser to your server’s IP address (eg. http://12.34.56.789). The page should display the words “It works!" like 

Step Two—Install MySQL



MySQL is a powerful database management system used for organizing and retrieving data

To install MySQL, open terminal and type in these commands:
sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql

During the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell.

Once you have installed MySQL, we should activate it with this command:
sudo mysql_install_db

Finish up by running the MySQL set up script:
sudo /usr/bin/mysql_secure_installation

The prompt will ask you for your current root password.

Type it in.
Enter current password for root (enter for none): 
OK, successfully used password, moving on...

Then the prompt will ask you if you want to change the root password. Go ahead and choose N and move on to the next steps.

It’s easiest just to say Yes to all the options. At the end, MySQL will reload and implement the new changes.
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.
 
Remove anonymous users? [Y/n] y                                            
 ... Success!
 
Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.
 
Disallow root login remotely? [Y/n] y
... Success!
 
By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.
 
Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!
 
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
 
Reload privilege tables now? [Y/n] y
 ... Success!
 
Cleaning up...
Once you're done with that you can finish up by installing PHP.

Step Three—Install PHP



PHP is an open source web scripting language that is widely use to build dynamic webpages.

To install PHP, open terminal and type in this command.
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt

After you answer yes to the prompt twice, PHP will install itself.

It may also be useful to add php to the directory index, to serve the relevant php index files:
sudo nano /etc/apache2/mods-enabled/dir.conf


PHP Modules



PHP also has a variety of useful libraries and modules that you can add onto your virtual server. You can see the libraries that are available.
apt-cache search php5-

Terminal will then display the list of possible modules. The beginning looks like this:
php5-cgi - server-side, HTML-embedded scripting language (CGI binary)
php5-cli - command-line interpreter for the php5 scripting language
php5-common - Common files for packages built from the php5 source
php5-curl - CURL module for php5
php5-dbg - Debug symbols for PHP5
php5-dev - Files for PHP5 module development
php5-gd - GD module for php5
php5-gmp - GMP module for php5
php5-ldap - LDAP module for php5
php5-mysql - MySQL module for php5
php5-odbc - ODBC module for php5
php5-pgsql - PostgreSQL module for php5
php5-pspell - pspell module for php5
php5-recode - recode module for php5
php5-snmp - SNMP module for php5
php5-sqlite - SQLite module for php5
php5-tidy - tidy module for php5
php5-xmlrpc - XML-RPC module for php5
php5-xsl - XSL module for php5
php5-adodb - Extension optimising the ADOdb database abstraction library
php5-auth-pam - A PHP5 extension for PAM authentication
[...]
Once you decide to install the module, type:
sudo apt-get install name of the module

WE can install multiple libraries at once by separating the name of each module with a space.

Step Four—RESULTS: See PHP on your Server



Although LAMP is installed, we can still take a look and see the components online by creating a quick php info page

To set this up, first create a new file:
sudo nano /var/www/info.php

Add in the following line:
<?php
phpinfo();
?>

Then Save and Exit.

Restart apache so that all of the changes take effect:
sudo service apache2 restart

Finish up by visiting your php info page (make sure you replace the example ip address with your correct one): http://localhost/info.php




Linux Directory Linux Dizinleri


The Linux Directory


/bin Essential command binaries (programs) are stored here (bash, ls, mount,
tar, etc.)

/boot Static files of the boot loader.

/dev
Device files. In Linux, hardware devices are acceessd just like other files, and
they are kept under this directory.

/etc
Host-specific system configuration files.

/home
Location of users' personal home directories (e.g. /home/susan).

/lib
Essential shared libraries and kernel modules.

/proc
Process information pseudo-filesystem. An interface to kernel data structures.

/root
The root (superuser) home directory.

/sbin
Essential system binaries (fdisk, fsck, init, etc).

/tmp
Temporary files. All users have permission to place temporary files here.

/usr
The base directory for most shareable, read-only data (programs, libraries,
documentation, and much more).

/usr/bin
Most user programs are kept here (cc, find, du, etc.).

/usr/include
Header files for compiling C programs.

/usr/lib
Libraries for most binary programs.

/usr/local
“Locally” installed files. This directory only really matters in environments
where files are stored on the network. Locally-installed files go in
/usr/local/bin, /usr/local/lib, etc.). Also often used for
software packages installed from source, or software not officially shipped
with the distribution.

/usr/sbin
Non-vital system binaries (lpd, useradd, etc.)

/usr/share
Architecture-independent data (icons, backgrounds, documentation, terminfo,
man pages, etc.).


/usr/src
Program source code. E.g. The Linux Kernel, source RPMs, etc.

/usr/X11R6
The X Window System.

/var
Variable data: mail

How to send mail with python / Python ile mail gönderimi

#!/usr/bin/env python3 import smtplib from email.mime.text import MIMEText to = ['xyz@gmail.com'] subject = 'Python ile SMTP Mail Gönderiyoruz' body = 'Bu mesajı python ile gönderdik.' account = 'herbibk@herbibk.com' password = '44j33tsPdvZ' server = smtplib.SMTP('mail.herbibk.com', 587) server.ehlo() server.starttls() server.login(account, password) mail = MIMEText(body, 'html', 'utf-8') mail['From'] = account mail['Subject'] = subject mail['To'] = ','.join(to) mail = mail.as_string() try: server.sendmail(account, to, mail) print ('Mail gönderimi başarılı') except: print ('Mail gönderimi başarısız')

18 Nisan 2013 Perşembe


Evet,  arkadaşlar ilk Blok’um da sizlerle c dili konularını ele almaya ve elimden geldiğince anlatmaya çalışacağım. Umarım benim için ve yeni başlayanlar için yararlı olur. Görüşmek üzere

Evet c dili  bilgisayar dünyasındaki yeri ile başlayalım c dili  ASCI  dilinden sonra makineye hükmetmekte en iyi dildir popülaritesini son yıllarda kaybetmiş gibi gözükse de tüm diller c dili üzerine kurulmuş geliştirilmiştir. C++, C#, Java. C dili taşınabilir bir dildir küçük değişler  yapılarak tüm işletim sistemleri üzerinde çalışır tam bu konuda Java ile aynı konseptte sahiptir. Avantajı  daha hızlı dezavantajı  ise görsel bir programla dili değildir. Eğer hedefimiz bir masa üstü programı yazmaksa c dili ile işimiz yok bunu diğer görsel programlama dilleri ile daha güzel ve çabuk yapabiliriz. Burada  sizlere elimden geldiğince programlamanın algoritmasını anlatmaya çalışacağım eyer ki bilgisayar yahut  elektronik  makinaya hükmetmekse   c dili ile dost olmaya bakalım.

Yavaş yavaş  programlama ya   girelim  programları yazmak için dev c++  derleyicisini kullana biriz  ilk açılışta  
file > New> project  gelen pencereden consol  aplication  ve c dili kısmı seçelim ok butonuna tıklayalım  dosya 
İçin uygun bir seçtikten sonra ilk ekranımız.

//  bu iki çizgi tek satırlık acıkma eklememize yardımcı olur  derleyici tarafından yorumlanmaz 

#include <stdio.h>    // standar girdi çıktı  klavye ve ekran  için bu kütüphaneyi programsıza eklememiz gerekli
#include <stdlib.h>   // bellek yönetimi, ortamla etkileşim, tamsayı aritmetiği, arama, sıralama, dönüştürme 
int main()                   //  main kısmı   programın gövdesi ve bir fonksiyondur  arkadaşlar
{
  
  system("PAUSE");                // bu kod program çalıştıktan sonra bizden girdi ister ki programı bitirsin
  return 0;                               //  programın hatasız çalıştığı demektir   
}

Açtığımız her parantez  kapatmak  zorundayız ve  derleyiciler bu parantezleri blok halinde işler. Eyer geçek bir yazılımcı  olmak istiyorsak c ile birlikte Linux öğrenmek zorundayız.

------------------------------------------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>

int main()
{
 int a=5;
 printf(" %d cet \n",a); 
 scanf("%d",&a);
 printf(" %d cet \n",a); 
 system("PAUSE"); 
 return 0;
}



printf ekrana yazdırmak için scanf ise klavye den girdi almak için kullanacagımız  foksiyonlardır stdio.h  kütüphanesinde bulunur arkadaşlar.
     printf   Parantez içindeki yazıyı direk ekrana yazar eger değişken üzerinden deger yazdırmak istiyorsan türünü ve değişkenin ismini de yazarız.
değişken içerisinde deger tutbileceğimiz geçici bellek alanlarıdır sayı ıle baslayamaz aynı isimle aynı düzeyde bulunamaz ve cok uzun olmalı dır.

int   tamsayı  degerleri   
char harf degerlerini
float  ondalıklı sayıları
şimdilik bunları kullanmamız yeterli olucaktır .

a isminde int türünde bir değişken tanımladık değerinide 5 verdik
int a;  da tanımla yapar arkadaslar ancak başlangıcta deger vermememiz için boş olacagı anlamına gelmez dilide rasgele bellekten yer ayırdıgı için o an alan içerisinde deyer varsa  değişkenimiz degeri olur bunu onlemek için başlangıc değeri atamalıyız



















if else deyimi sıra geldi galiba  bu deyim mantıksal karar vermesine yardımcı olur programın örnekler üzerinde  bakalım en basit kullanımı



#include <stdio.h>
#include <stdlib.h>
int main()
{
    int a=5,b=15;
    if (a<=b){
    printf("1. deger 2. degerden kucuktur..");
}
    else{
 
     printf("1. deger 2. degerden buyuktur..");
}
  system("PAUSE");
  return 0;
}


Başlangıcta 2 değişken tanımladık ve degerlerini atadık.  if yapısına geldıgınde program karar verme aşamasına geldı eger dogru ise ilk blogun icerisindeki işlemleri yapacak  "{ }" ilk blog başlagıc ve bitiş yerleri değilse diyer  blogu  işletecek  bura "{}" süslü parentezleri kullanmamız blogun başlangıc ve bitişlerini belirtir .

if yapısını daha  detaylarına girmeden önce for döngüsüne girelim ve ikisini beraber örnekleyelim.
 for(i=5;i<10;i++){
}
for yapısında integer deyer atamamıza izin veriyor noktalı virgülden sonra if deyimine benzer bir karar verme noktası bulunmaktadır ve en son degerde degişkenin deyerlerini  artıra biliriz
i++ demek i degerini bir artır demektir i=i+1   ve i+=1  ile aynı anlama gelir
aynı şekilde i-- ifadesine deyerleri bir bir azaltmak için kullanılır
burada en önemli nokta for döngüsü  öncelikler i degerine 5 i atar  sonra i 10 dan küçükse işlemleri yapar ve i artırır. işlem bittikten sonra i degerine 2. kere atama yapmaz .


#include <stdio.h>
#include <stdlib.h>

int main()
{
int i;
for(i=1;i<15;i++){
if(i%2==0)
printf("%d Sayisi cifttir. \n",i);
else
printf("%d Sayisi tektir. \n",i);
}
  system("PAUSE");
  return 0;
}
 ewet arkadaşlar burada i%2 ifadesi  i degerini  sürekli olarak 2 ye böler kalanından sayının çift yada tek oldugu anlarız 

kullanıcının girdigi  degere kadar olan çift sayıları topllatmak için  

#include <stdio.h>
#include <stdlib.h>
int main()
int i, toplam=0;
int b;
scanf("%d",&b);
for(i=1;i<b;i++){
if(i%2==0)
toplam=i+toplam;
else 
printf("%d Toplam\n",toplam);
}
printf("%d ",toplam);
  system("PAUSE");
  return 0;
}
------------------------------------------------------------------------------------------------------------

#include <stdio.h>
#include <stdlib.h>
int main()
{
int i, toplam=0;
int b;
scanf("%d",&b);
for(i=1;i<b;i++){
if(i%2==0)
toplam=i+toplam;
}

printf("%d ",toplam);
  system("PAUSE");
  return 0;
}


sanırım bügünlük yeter  en kısa zamanda diğer konulara gecmek ümidi ile..

Future I will continue with small note of english language


I want to talk about while loop it s similar to for loop but 2 different case it is include. first  we must sent a value to the variable before the loop process beginnig
have to increase the value in loop to exit

while döngüsü for döngüsüne cok benzer ancak atama işleme döngüden önce yapmalıyız ve döngüden cıkmak için karsılastırdıgımız deger i artırmak zorundayız

aslında ikisinin farkı for döngüsünde belirli bir sayı rakam yada eşitlik saglanıncaya kadar sürer while döngüsünde istediğimiz sartlar saglanıncaya kadar..
Fakat ikisi de bir birrinin yerine kullanılabilinir..




#include <stdio.h>
#include <stdlib.h>
int main()
{
int i=0;
int a;
printf("20 den kucuk 10 sayi giriniz.\n");
while (i<10)
{
printf("lutfen bir sayi giriniz\n");
scanf("%d",&a);
if (a<20) {
printf("%d. Sayiyi girdiniz. ",i+1);
i++;
}
else
printf("Bu sayi 20 buyuktur.");
}
  system("PAUSE");
  return 0;
}
------------------------------------------------------------------------------------------------------------
today I try to explain do while loop it is a litle bit different to other because this loop work least once time see on example


#include <stdio.h>

main()
{
   int sayi;
   printf("\t 0 girerseniz program sonlanacak\n");
   do
   {
      printf("Bir sayi girin : ");
      scanf("%d",&sayi);
      printf("iki kati       : %d\n",2*sayi);

   }while( sayi>0 );   /* koşul */

 return 0;
}

1 month after the file operations, data types will continue to
if you wish available with e-mail 4 more example