一、安裝msyql+PHP
1庭敦、系統(tǒng)centos6.5
2、安裝 開發(fā)軟件包
步驟1:安裝開發(fā)工具
yum -y groupinstall "Development Tools"
yum groupinsall group1 安裝程序組group1
步驟2:安裝相關(guān)工具
yum -y install libxml2* curl curl-devel libjpeg* libpng* libmcrypt* freetype-devel
Libxml2:是個C語言的XML程式庫薪缆,能簡單方便的提供對XML文件的各種操作秧廉,并且支持XPATH查詢,及部分的支持XSLT轉(zhuǎn)換等功能
curl:是利用URL語法在命令行方式下工作的開源文件傳輸工具
libjpeg庫是專門用于jpeg圖片格式解壓和壓縮的庫
libpng庫是專門用于png圖片格式解壓和壓縮的庫
libmcrypt:This is a modular version of libmcrypt, that uses dynamic loading. It is usefull where adding/removing of algorithms at run-time is necessary.
如果沒有修改成163的源可以直接安裝 如果已經(jīng)改成了163的源需要執(zhí)行下面的代碼
echo $?檢查是否有報錯
官網(wǎng)不自帶 libmcrypt libmcrypt-devel
wget http://www.atomicorp.com/installers/atomic 下載這個yum源
執(zhí)行 sh ./atomic
yum -y install libmcrypt libmcrypt-devel
步驟3:安裝mysql:
yum -y install mysql mysql-server mysql-devel
步驟4:下載PHP-5.6.2 wget
http://cn2.php.net/distributions/php-5.6.2.tar.gz
解壓 tar -xvf php-5.6.2.ta.rgz
1. cd php-5.6.2
2. 編譯安裝php
步驟5:./configure
二種情況 mysql的rpm包用這種方式編譯
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=mysqlnd --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=/usr/local/services/mysql --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --disable-ipv6 --with-pear --with-curl --with-openssl --enable-bcmath --enable-sockets
第二種情況 你使用yum來安裝mysql
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --disable-ipv6 --with-pear --with-curl --with-openssl --enable-bcmath --enable-sockets
configure注釋:
configure拣帽,這一步一般用來生成 Makefile疼电,為下一步的編譯做準(zhǔn)備,你可以通過在 configure 后加上參數(shù)來對安裝進(jìn)行控制减拭,比如代碼:./configure –prefix=/usr 意思是將該軟件安裝在 /usr 下面蔽豺,執(zhí)行文件就會安裝在 /usr/bin (而不是默認(rèn)的 /usr/local/bin),資源文件就會安裝在 /usr/share(而不是默認(rèn)的/usr/local/share)。同時一些軟件的配置文件你可以通過指定 –sys-config= 參數(shù)進(jìn)行設(shè)定拧粪。有一些軟件還可以加上 –with修陡、–enable沧侥、–without、–disable 等等參數(shù)對編譯加以控制魄鸦,你可以通過允許 ./configure –help 察看詳細(xì)的說明幫助宴杀。
步驟6:make && make install
運(yùn)行 make && make install
make與make install是兩個命令,在你./configuration生成了Makefile之后執(zhí)行編譯安裝拾因;
與&&一起的還有||婴氮,不過意思不一樣,&&是與盾致,||是或;
make && make install的意思就是執(zhí)行make如果沒有發(fā)生錯誤就執(zhí)行make install
步驟7:修改php配置文件
將相應(yīng)的文件復(fù)制到自己將使用的地方
cp php.ini-production /usr/local/php/etc/php.ini
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
cp /opt/php-5.6.2/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
對文件php-fpm.conf進(jìn)行權(quán)限修改
chmod +x /etc/init.d/php-fpm
--注意--
如果出現(xiàn)未安裝的錯誤一般使用yum安裝即可 記得別忘記libcurl*
1. 出現(xiàn)找不到文件路徑的情況下 用 find / -name 'name'去查找一下
2. 出現(xiàn)warning的謦欬下大多是因?yàn)榘姹疽约澳J(rèn)安裝了荣暮,可以去掉該行
3. 啟動php 等安裝完nginx后才啟動
3庭惜、安裝nginx
yum -y install nginx
修改 vim /etc/nginx/nginx.conf
user nginx nginx;
worker_processes 16;
#日志存放地
#error_log /data/logs/nginx_error.log crit;
error_log /var/log/nginx_error.log crit;
#pid /usr/local/services/nginx/nginx.pid;
pid /var/run/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 65535;
events
{
use epoll;
worker_connections 65535;
}
http
{
include mime.types;
default_type application/octet-stream;
#charset gb2312;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
#limit_zone crawler $binary_remote_addr 10m;
log_format www '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
server
{
listen 80;
server_name vagrant-centos65.vagrantup.com;
index start.php index.htm index.html index.php pengyou.php weibo.php qzone.php;
root /usr/share/nginx/html;
#limit_conn crawler 20;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index start.php;
# include fcgi.conf;
include fastcgi.conf;
}
location ~ .*.(svn|git|cvs)
{
deny all;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
}
}
步驟8:啟動服務(wù)
1、啟動php-fpm
#修改user和group
vim /usr/local/php/etc/php-fpm
user=nginx
group=nginx
2穗酥、啟動php-fpm
/etc/init.d/php-fpm start
3护赊、啟動nginx
/etc/init.d/nginx start
4、編寫php文件測試砾跃,服務(wù)是否正常
vim /usr/share/nginx/html/cc.php
<?php
phpinfo();
?>
虛擬機(jī)IP/cc.php 例如:192.168.1.115/cc.php
LNMP安裝完成
二骏啰、wiki安裝部署
1、首先登錄進(jìn)入mysql數(shù)據(jù)庫
#進(jìn)入到數(shù)據(jù)庫的命令行模式
mysql -uroot
2抽高、創(chuàng)建一個wiki庫
#創(chuàng)建wiki數(shù)據(jù)庫
create database wiki charset utf8;
#對數(shù)據(jù)庫進(jìn)行權(quán)限賦予
grant all on wiki.* to wiki@'localhost' identified by 'wiki';
#刷新MySQL的系統(tǒng)權(quán)限相關(guān)表
flush privileges;
下載wiki軟件
http://kaiyuan.hudong.com/
#創(chuàng)建hdwiki的文件夾
touch hdwiki
#下載HDWiki UTF的壓縮包,上傳后解壓縮
unzip HDWiki-v6.0UTF8-20170209.zip
#將文件夾內(nèi)解壓縮的文件移到我們的環(huán)境下
mv hdwiki/* /usr/share/nginx/html/
瀏覽器http://192.168.1.115/hdwiki直接進(jìn)行配置就可以了
三判耕、需要的相關(guān)技術(shù)
1、vim
Vim是一個類似于Vi的著名的功能強(qiáng)大翘骂、高度可定制的文本編輯器壁熄,在Vi的基礎(chǔ)上改進(jìn)和增加了很多特性。[1] VIM是自由軟件碳竟。
安裝 yum -y install vim
2草丧、上傳下載功能
安裝 yum -y install lrzsz
使用方法:
sz命令發(fā)送文件到本地:
# sz filename
rz命令本地上傳文件到服務(wù)器:
# rz
執(zhí)行該命令后,在彈出框中選擇要上傳的文件即可莹桅。
3昌执、mysql相關(guān)命令
設(shè)置初始密碼或修改密碼
1蚊丐、mysql -uroot
2圣勒、use mysql;
3、update user set password=password("123456") where user="root";
4液样、flush privileges;
5铐达、exit
4委粉、修改文件權(quán)限
語法:
chmod [who] [+ | - | =] [mode] 文件名
命令中各選項的含義為
u 表示“用戶(user)”,即文件或目錄的所有者娶桦。
g 表示“同組(group)用戶”贾节,即與文件屬主有相同組ID的所有用戶汁汗。
o 表示“其他(others)用戶”。
a 表示“所有(all)用戶”栗涂。它是系統(tǒng)默認(rèn)值知牌。
操作符號可以是:
+ 添加某個權(quán)限。
- 取消某個權(quán)限斤程。
= 賦予給定權(quán)限并取消其他所有權(quán)限(如果有的話)角寸。
設(shè)置mode所表示的權(quán)限可用下述字母的任意組合:
r 可讀。
w 可寫忿墅。
x 可執(zhí)行扁藕。
X 只有目標(biāo)文件對某些用戶是可執(zhí)行的或該目標(biāo)文件是目錄時才追加x 屬性。
s 在文件執(zhí)行時把進(jìn)程的屬主或組ID置為該文件的文件屬主疚脐。方式“u+s”設(shè)置文件的用戶ID位亿柑,“g+s”設(shè)置組ID位。
t 保存程序的文本到交換設(shè)備上棍弄。
u 與文件屬主擁有一樣的權(quán)限望薄。
g 與和文件屬主同組的用戶擁有一樣的權(quán)限。
o 與其他用戶擁有一樣的權(quán)限呼畸。
實(shí)例
修改文件可讀寫屬性的方法:
#把index.html 文件修改為可寫可讀可執(zhí)行:
chmod 777 index.html
#把目錄 /images/xiao 修改為可寫可讀可執(zhí)行
chmod 777 /images/xiao
#修改目錄下所有的文件夾屬性
chmod 777 *
#要修改目錄下所有文件屬性可寫可讀可執(zhí)行:
chmod 777 *.*