Linux_LAMP 最强大的动态网站解决方案
目录
LAMP
Linux+Apache+Mysql/MariaDB+Perl/PHP/Python一组常用来搭建动态网站或者服务器的开源软件,本身都是各自独立的程序,但是因为常被放在一起使用,拥有了越来越高的兼容度,共同组成了一个强大的Web应用程序平台。随着开源潮流的蓬勃发展,开放源代码的LAMP已经与J2EE和.Net商业软件形成三足鼎立之势,并且该软件开发的项目在软件方面的投资成本较低,因此受到整个IT界的关注。从网站的流量上来说,70%以上的访问流量是LAMP来提供的,LAMP是最强大的网站解决方案.
Install LAMP via YUM
yum groupinstall -y "mysql数据服务器" "PHP支持"
yum install -y php-mysql
service httpd start
service mysqld start
Install LAMP via ResourceCode
Apache
Port:TCP80 TCP443
logFile:/var/log/httpd/
step1. Install Apache
rpm -e httpd -nodeps #move system pre-installed httpd software.
tar zxvf http-XXX -C /var/src
./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite && make && make install
/usr/local/apache2/bin/apachectl start
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
step2. Addition service to chkconfig
vim /etc/init.d/httpd
#!/bin/sh
#chkconfig:35 12 32
#description:httpd server
#12 --> priority
#32 --> close priority
step3. Start the chkconfig service
chkconfig --add httpd
chkconfig httpd on
step4. Edit the httpd service config file
vim /usr/local/apache2/conf/httpd.conf
#Global
ServerRoot "URL" #Directory for store the config file
Timeout 60 #connect timeout
PidFile run/httpd.pid #the directory for store pid file
listen 80 #listen into port
user XXX #httpd default users:will use 'apache' user when you install via YUM, otherwise you have to create the 'daemon' user to run the httpd service when you install resource.
group XXX #httpd service default group
keepAlive on #one connect much transfer data
MaxkeepAliveRequests 500 #Max connection count.
keepAliveTimeout 50 #keep connect alive timeout
prefork #work model to small web
work #work model to big web
Server Admin:ManagerMail
ServerName:www.domain.com:80
DocumentRoot "[websiteUrl]" #VirtualHost more preferential a.yum install: /var/www/html b.resource install:/usr/local/apache2//htdocs
DirectoryIndex: #set welcome page
#Set welcome page example:
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
AddDefaultCharset UTF-8 #add character set
#Locality:
<Directory "/var/www/html[websiteUrl]">
Options
AllowOverride
Order
Deny from
</Directory>
step5. Httpd Stress testing
ab -c X httpdServerIP #X:Sub-requent requests count
ab -n X httpdServerIP #X:Total requests count
Forexample:
ab -c 2000 -n 4000 http://www.domain.com/ #2000 times PV(PageView) at the same time.
ulimit -n 2000 #Change the max supervene access count. Because the max supervene access count have to less than 1024 in the linux file.
ulimit -a #Check all limit
Apache Virtual Machine Type
- Virtual Machine type:
(1) DomainName-based virtual hosting
(2) IP address-based
(3) Port-based
Use name-based virtual hosting(the same of ip and port)
step1
mkdir htdocs/baidu htdocs/sina
echo www.baidu.com > htdocs/baidu/index.html
echo www.sina.com > htdocs/sina/index.html
step2. Open virtual machine function
vim httpd.conf
#Virtual Hosts
Include conf/extra/httpd-vhosts.conf
vim conf/extra/httpd-vhosts.conf #Define virtual machine domain
For example:
NameVirtualHost \*:80 #specify virtual machine to name-based hosts.
#Attention: "*:80" have to same as below sections.
<VirtualHost *:80>
ServerAdmin jmilk@fan.com
DocumentRoot "/usr/local/apache2/htdoes/baidu"
ServerName Jmilk.fan.com
ErrorLog "logs/baidu-error_log"
CustomLog "logs/baidu-access_log" common
<Directory "/usr/local/apache2/htdoes/baidu"> #Setup website access permission
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin jmilk@fan.com
DocumentRoot "/usr/local/apache2/htdoes/sina"
ServerName Jmilk.fan.com
ErrorLog "logs/sina-error_log"
CustomLog "logs/sina-access_log" common
</VirtualHost>
vim /etc/hosts
10.20.0.210 www.baidu.com www.sina.com
service httpd restart
Use IP-based virtual hosting
Much step of setup the IP-based virtual hosting as same as the name-based virtual hosting,but different as below.
step1. Comments the “NameVritualHost *:80”
step2. Specify the different IP in the sections of <VirtualHost IP:80>
Use Post-based virtual hosting
step1. Add the Listen port
vim httpd.conf
Listen 80
Listen 81
step2. Comments the “NameVritualHost *:80”
step3. Specify the different IP in the sections of <VirtualHost IP:Post>
Create personal page.
vim httpd.conf #open home directory
#User home directories
Include conf/extra/httpd-userdir.conf
vim httpd-userdir.conf
userDir public_html --> Create Public_html file in the home directory.
Login the personal page
chmod o+x /home/user
http://IP/~userName
Security access https
step1. Install Apache by resource and enable ssl protocol
yum -y install mod_ssl
rpm -qa |grep openssl
./configure --enable-so --enable-rewirte --enable-ssl && make && make install
step2. Edit the Apache config file to enable ssl function module
vim httpd.conf
LoadModule ssl_module modules/mod_ssl.so
# Secure (SSL/TLS) connections
Include conf/extra/httpd-ssl.conf
setp3. Create ssl cert
cd conf/ and Running the cert script as below
#certcreate.sh
#!/bin/bash
read -p "文件名称前缀:" name
openssl genrsa -des3 -out ${name}a.key 1024
openssl rsa -in ${name}a.key -out ${name}.key
openssl req -new -key ${name}.key -out ${name}.csr
openssl x509 -req -days 1000 -in ${name}.csr -signkey ${name}.key -out ${name}.crt
step4. Specify virtual machine which used security(ssl) cert and ssl cert’s store directory url.
vim extra/httpd-ssl.conf
Listen 443
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
SSLPassPhraseDialog builtin
SSLSessionCache "shmcb:/usr/local/apache2//logs/ssl_scache(512000)"
SSLSessionCacheTimeout 300
SSLMutex "file:/usr/local/apache2//logs/ssl_mutex"
NameVirtualHost *:443
<VirtualHost *:443>
DocumentRoot "/usr/local/apache2//htdocs/baidu"
ServerName jmilk.fan.com:443
ServerAdmin jmilk@fan.com
ErrorLog "/usr/local/apache2//logs/baidu_error_log"
TransferLog "/usr/local/apache2//logs/baidu_access_log"
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL -->列出运行客户端协商的密码
SSLCertificateFile "/usr/local/apache2//conf/server.crt"
SSLCertificateKeyFile "/usr/local/apache2//conf/server.key"
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory "/usr/local/apache2//cgi-bin">
SSLOptions +StdEnvVars
</Directory>
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog "/usr/local/apache2//logs/ssl_request_log" \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
step4. restart httpd service
service httpd restart
Access control
Only permission user who can access this web pager.
step1. Install awstats software.
unzip awstats-7.0.zip #Program by Analytic language ,so don't need to compile.
cd /usr/local/awstats-7.0/tools
./awstats_configure.pl #Install of interactive mode
service httpd restart #The entry into force of awstats plugin
step2. Edit the awstats plugin configure file.
vim /etc/awstats/awstats.jmilk.fan.com.conf(awstats.domain.com.conf)
LogFile="/usr/local/apache2/logs/baidu-access_log"
mkdir /var/lib/awstats
http://localhost/awstats/awstats.pl #access awstats software
step3. Edit apache configure file to add awstats plugin
vim httpd-vhosts.conf #change the CustomLog type from “common” to “combined”
CustomLog "logs/sina-access_log" common --> CustomLog "logs/baidu-access_log" combined
service httpd restart
step4. setting awstats’s access limit
vim httpd.conf
#Add section below for example:
#This is to permit URL access to scripts/files in AWStats directory.
#
<Directory "/usr/local/awstats-7.0/wwwroot">
Options None
AllowOverride None
Order allow,deny
Allow from all
AuthName "AWSTATS"
AuthType Basic
AuthUserFile /usr/local/awstats/wwwroot/.htpasswd
require valid-user
</Directory>
step5. Create htpasswd user by htpasswd tool
cd /usr/local/apache2/bin/htpassed
htpasswd -c /usr/local/apache2/conf/.htpasswd userName1 #In frist create user,you have to use option -c to specify the htpasswd file store url
htpasswd userName2
service httpd restart
MySQL
Port: TCP 3306
step1. install Mysql
step1. Install MySQL via resource
tar zxvf mysql-XXX -C /var/src
useradd mysql -s /sbin/nologin -M #-M --> have not home directory
./configure --prefix=/usr/local/mysql --sysconfdir=/etc/ && make && make install
step2. Initialization Mysql configure.
cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf
/usr/local/mysql/bin/mysql-install-db --user=mysql
chown -R root:mysql /usr/local/mysql
chown -R mysql:mysql /usr/local/mysql/var
ln -s /usr/local/mysql/bin/* /usr/local/bin
vim /etc/profile
PATH=${PATH}/usr/local/mysql/bin
step3. Start mysql service
mysql_safe --user=mysql &
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
chmod a+x /etc/init.d/mysqld
echo "/usr/local/mysql/lib/mysql" >> /etc/ld.so.conf --> setup mysql interface
ldconfig #Refresh the ld.so.conf file.
service mysqld start
chkconfig mysqld on
step4. Setup mysql’s user and password.
mysqladmin -u root password '123' #setting password
mysql -u root -p123 #login mysql
#or
mysql_secure_installation --> Basic secure setting
step5. Check the Mysql install
mysal -u root -p123
show databases;
use mysql;
show tables;
step6. Mysql usage
a. list user’s table field information
describe user;
b. create database and create file in the /usr/local/mysql/var/
create database world;
c. create table
create table tableName(id int not null,name char(16) not null,password char(16) not null default '123',primany key(id));
d. delete table
drop table table DBName.tableName;
delete fro tableName where id=3;
e. select table info or select table item info.
select * from tableName;
select * from tableName where price > 10; #selece by condition
select * from tableName order by price; #from small to big sort
select * from tableName order by price desc; #from big to small sort. desc 降序
select avg(price) from tableName; #average value
select sum(price) from tableName; #summation; or use function min() max() count():output notes conunt.
select type,avg(price) from tableName group by type;
type,avg(price) #every type's average price
select type,avg(price) from tableName group by type having avg(price) > 10; #use where before grouping, use having after grouping.
f. select from much table.
select table1Name.name,table2Name.nation from table1Name,table2Name where table1Name.id=table2Name.id; #内链接查询
select table1Name.name,table2Name.nation from table1Name left join table2Name on table1Name.id=table2Name.id; #左链接(left join)查询,以左表为主,左表必须全列出符合的记录,右表若没有对应的记录时,以null补全
select table1Name.name,table2Name.nation from table1Name right join table2Name on table1Name.id=table2Name.id; #右链接(right join)
select table1Name.name,table2Name.nation from table1Name cross join table2Name; #全链接查询,交叉查询(cross join)笛卡儿积
g. Insert item into table
insert into tableName(id,name,password) values(1,'userName','123');
h. Update the table item info.
update tableName set password=encrypt('123') where id=1;
b.Mysql date backup and recover:
(1) Backup:
mysqldump -u root -p123 databaseName > tableName.sql --> backup a database
mysqldump -u root -p123 --all-databases > all.sql --> backup all database
(2) Recover:
mysql -u root -p123 tableName < tableName.sql
mysql -u root -p123 < all.sql --> resover all the database
PHP
step1. Install php support
tar zxvf libmcrypt -C /usr/local
tar zxvf mhach -C /usr/local
tar zxvf mcrypt -C /usr/local #libmcrypr,mhach annd mcrypt combine to secure encrypt deal with.
cd /usr/local/libmcrypt
./configure && make && make install
echo "/usr/local/lib" >> /etc/ld.so.conf
ldconfig
cd /usr/local/mhach
./configure && make && make install
ldconfig
cd /usr/local/mcrypt
./configure && make && make install
tar zxvf php-XXX.tar.gz -C /usr/local
mv php-XXX PHP5
cd /usr/local/php5
./configure --prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apx5 --with-mysql=/usr/local/mysql --with-mcrpyt --with-config-file-path=/usr/local/php5 --enable-mbstring && make && make install
step2. Edit php Configure file
cp /usr/local/php5/php.ini-development /usr/local/php5/php.ini
vim /usr/local/apache2/conf/httpd.conf #add php plugin to apache
<IfModule mime_module> #加入.PHP后缀识别模块
AddType application/x-httpd-php .php
</IfModule>
<IfModule dir_module> #加入PHP欢迎页面
DirectoryIndex index.html index.php
</IfModule>
step3. Test the php module
vim TestPHP.php
<?php
phpinfo()
?>
step4. Install phpMyAdmin manager paper.
tar phpMyAdmin -C /usr/local/apache2/htdocs/baidu
mv phpMyAdmin pma
cp pma/confg.sample.inc.php pma/config.inc.php
step5. Install Discuz
unzip Discuz
cd Discuz
mv upload /usr/local/apache2/htdoes/bbs
chown -R daemon:daemon /usr/local/apache2/htdoes/bbs
http://localhost/bbs #enter installtation pager
Linux_LAMP 最强大的动态网站解决方案的更多相关文章
- Linux进阶之LAMP和LNMP动态网站搭建
一.什么是LAMP LAMP=Linux Apache Mysql/MariaDB PHP/Perl/Python 这些软件都是开源免费的软件,几个程序各自是独立的,经常为了达到我们需要的效果而协同工 ...
- React和动态网站接口的经济学
来自: React and the economics of dynamic web interfaces 自从2000开始我就一直在做web开发,曾见过很多以各种库和框架的起起落落,这些库和框架作为 ...
- 编程语言 : Java的动态Web解决方案泛谈
文章概述 最近发现很久前一股脑地学习框架,发觉越发迷糊.知道了框架只是暂时的,重点是基础的技术.该文大篇幅回顾Servlet技术栈和简要的MVC框架. 至于为什么学J2EE,额,大家都用框架,可框架也 ...
- Linux中什么是动态网站环境及如何部署
当谈论起网站时,我们可能听说过静态和动态这两个词,但却不知道它们的含义,或者从字面意思了解一些却不知道它们的区别. 这一切可以追溯到网站和网络应用程序,Web应用程序是一个网站,但很多网站不是Web应 ...
- nginx详解反向代理、负载均衡、LNMP架构上线动态网站(week4_day1_part1)-技术流ken
nginx介绍 Nginx是俄罗斯人编写的十分轻量级的HTTP服务器,Nginx,它的发音为“engine X”,是一个高性能的HTTP和反向代理服务器,同时也是一个IMAP/POP3/SMTP 代理 ...
- 《Linux就该这么学》培训笔记_ch20使用LNMP架构部署动态网站环境
<Linux就该这么学>培训笔记_ch20使用LNMP架构部署动态网站环境 文章最后会post上书本的笔记照片. 文章主要内容: 源码包程序 LNMP动态网站架构 配置Mysql服务 配置 ...
- 编译LNMP部署动态网站环境
LNMP动态网站部署架构是由一套 Linux+Nginx+MySQL+PHP 组成的动态网站系统解决方案. 以下配置环境为:Linux=RHEL7 --> Nginx=1.13 --> M ...
- 编译LAMP部署动态网站环境
LAMP动态网站部署架构是由一套 Linux+Apache+MySQL+PHP 组成的动态网站系统解决方案. 以下配置环境为:Linux=RHEL7 --> Apache=2.4.33 --&g ...
- nginx详解反向代理,负载均衡,LNMP架构上线动态网站
1.nginx介绍 nginx.org Nginx是俄罗斯人编写的十分轻量级的HTTP服务器,Nginx,它的发音为“engine X”,是一个高性能的HTTP和反向代理服务器,同时也是一个IMAP/ ...
随机推荐
- CSP2019
$CSP\space S$ 格雷码 $solution:$ 直接模拟即可. 时间复杂度 $O(n)$ . #include<iostream> #include<cstring> ...
- C++ delete仍可访问的问题
C++ delete和置为NULL 先上一段代码: class Object { public: explicit Object(int num) : m_num(num){} void functi ...
- python学习笔记(2):科学计算及数据可视化入门
一.NumPy 1.NumPy:Numberical Python 2.高性能科学计算和数据分析的基础包 3.ndarray,多维数组(矩阵),具有矢量运算的能力,快速.节省空间 (1)ndarray ...
- localStorage的使用和vuex的拆分
问题1:在隐身模式.或者用户未启用的情况下,使用localStorage可能会导致浏览器直接报错,怎么办? 方法:使用try-catch包裹 代码示例: store.jsimport Vue from ...
- DEV控件的分页控件,实现勾选复选框
/// <summary> /// 单元格的点击事件 /// </summary> /// <param name="sender"></ ...
- Linux架构之Nginx 高可用
第53章 Nginx之高可用Keepalived 一.Keepalived高可用基本概述 1.1)什么是高可用 一般是指2台机器启动着完全相同的业务系统,当有一台机器down机了,另外一台服务器就能快 ...
- CCPC-Wannafly Winter Camp Day1 (Div2) 吃豆豆 (DP)
题目描述 wlswls在玩一个游戏. wlswls有一个nn行mm列的棋盘,对于第ii行第jj列的格子,每过T[i][j]T[i][j]秒会在上面出现一个糖果,第一次糖果出现在第T[i][j]T[i] ...
- 将pip源更换到国内镜像
将pip源更换到国内镜像用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s.幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2M ...
- 3--面试总结-es6
es6文档:http://es6.ruanyifeng.com/1.es6新特性 let/const 变量的解构赋值(数组的解构赋值,对象的解构赋值,字符串的解构赋值,数值和布尔值的解构赋值,函数参数 ...
- bzoj4810 [Ynoi2017]由乃的玉米田 莫队+bitset(+数论)
题目传送门 https://lydsy.com/JudgeOnline/problem.php?id=4810 题解 看数据范围和题目名字应该是根号算法. 因为询问除了区间外,还有第 \(3\) 个参 ...