安裝php

Installation Guidelinephp

 

yum install perlhtml

 

yum install net-toolsmysql

 

yum install libaiolinux

 

1st.Mysql5.6git

wget https://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-5.6.36-1.rhel5.x86_64.rpm-bundle.targithub

 

wget https://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-5.6.35-1.rhel5.x86_64.rpm-bundle.tarredis

 

wget  https://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-5.6.35-1.linux_glibc2.5.x86_64.rpm-bundle.tarsql

 

wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.16-1.el7.x86_64.rpm-bundle.tar數據庫

 

 

phpvim

 

gd:

wget http://rpms.famillecollet.com/enterprise/7/php56/x86_64/repoview/php-gd.html

rpm -ivh php-gd-5.6.30-1.el7.remi.x86_64.rpm

 

igbinary:

igbinary-master.zip

 

/usr/bin/phpize

./configure --with-php-config=/usr/local/php/bin/php-config

./configure --with-php-config=/usr/bin/php-config

make

make install

 

libevent:

yum install libevent-devel

pecl install channel://pecl.php.net/libevent-0.1.0 //提示libevent installation [autodetect]: 時按回車

echo extension=libevent.so > /etc/php.d/libevent.ini

 

php-redis:

2.2.4.tar.gz

wget https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz

tar -zxvf 2.2.4.tar.gz

cd phpredis-2.2.4/

/usr/bin/phpize

./configure --with-php-config=/usr/bin/php-config

make

make install

 

workman:

curl -Ss http://www.workerman.net/check.php | php

 

PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/libevent.so'

 

   按照workerman官網的安裝步驟安裝完workerman後, 使用過程當中包瞭如下警告:

 

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/libevent.so' - /usr/lib/php/modules/libevent.so: undefined symbol: php_sockets_le_socket in Unknown on line 0

 

緣由:

 

php加載sockets 和libevent模塊的順序致使。

 

解決方法:

 

vim /etc/php.d/libevent.ini

註釋掉:extension = libevent.so

 

vim /etc/php.d/sockets.ini

註釋掉:extentsion = sockets.so

 

 

 

而後在php.ini中添加這兩個擴展的引用

 

vim /etc/php.ini

extension = sockets.so

extension = libevent.so

 

將上面內容添加到php.ini中,注意添加順序。

 

CentOS 7中安裝Redis 3.2.8 

 

文章環境:

CentOS 7 biuld 1611最小化安裝@VMware

Redis 3.2.8

安裝步驟:

 

#安裝gcc

yum -y install gcc

#下載redis

curl -O  http://download.redis.io/releases/redis-3.2.8.tar.gz

#解壓

tar -zxvf redis-3.2.8.tar.gz

#轉換目錄

cd redis-3.2.8/deps/

#編譯依賴

make geohash-int hiredis jemalloc linenoise lua

#轉換目錄

cd ..

#編譯Redis

make && make install

#轉換目錄

cd utils/

#使用腳本安裝服務

./install_server.sh

#啓動服務

systemctl start redis_6379

systemctl status redis_6379

#好了,就這些,嘗試一下吧。

 

簡單提示:

  1. 當前版本中須要編譯的依賴有五項,更早或將來的版本可能會有不一樣。若是您沒有編譯這些項目,編譯Redis會遇到錯誤。 fatal error: jemalloc/jemalloc.h: No such file or directory
  2. cc: error: ../deps/hiredis/libhiredis.a: No such file or directory
  3. cc: error: ../deps/lua/src/liblua.a: No such file or directory
  4. cc: error: ../deps/geohash-int/geohash.o: No such file or directory
  5. cc: error: ../deps/linenoise/linenoise.o: No such file or directory
  6. 在使用腳本安裝服務的過程當中,您能夠一路【Enter】完成安裝。以後您能夠再次運行腳本文件,並經過輸入不一樣的端口號創建多個Redis服務。

 

 

 

Selected config:

Port           : 6379

Config file    : /etc/redis/6379.conf

Log file       : /var/log/redis_6379.log

Data dir       : /var/lib/redis/6379

Executable     : /usr/local/bin/redis-server

Cli Executable : /usr/local/bin/redis-cli

Is this ok? Then press ENTER to go on or Ctrl-C to abort.

Copied /tmp/6379.conf => /etc/init.d/redis_6379

Installing service...

Successfully added to chkconfig!

Successfully added to runlevels 345!

Starting Redis server...

Installation successful!

[root@vultr utils]# pwd

/usr/local/redis/redis-3.2.8/utils

[root@vultr utils]#

 

 

Step A: Install CentOS7.3 DVD

 

Step B: su root

 

Step C:

一、安裝依賴庫

yum -y update

yum install iptables-services

yum install telnet

Step D:

systemctl status firewalld.service #檢測是否開啓了firewall

 

systemctl stop firewalld.service #關閉firewall

 

systemctl disable firewalld.service #禁止firewall開機自啓

 

vim /etc/sysconfig/iptables

 

-A INPUT -p tcp -m state --state NEW -m tcp --dport 21 -j ACCEPT

-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT

-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT

-A INPUT -p tcp -m state --state NEW -m tcp --dport 8080 -j ACCEPT

-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT

-A INPUT -p tcp -m state --state NEW -m tcp --dport 4449 -j ACCEPT

 

systemctl restart iptables.service  

systemctl enable iptables.service

 

Step E關閉SELINUX

至於爲何關閉selinux,請看知乎網友的回答 GO  

vi /etc/selinux/config

#SELINUX=enforcing #註釋掉

#SELINUXTYPE=targeted #註釋掉

SELINUX=disabled #Added

:wq! #保存退出 

setenforce 0 #使配置當即生效

 

[root@vultr www]# ls

MySQL-client-5.6.35-1.rhel5.x86_64.rpm  MySQL-server-5.6.35-1.rhel5.x86_64.rpm

[root@vultr www]# rpm -Uvh mysql-community-release-rhel5-5.noarch.rpm^C

[root@vultr www]# rpm -Uvh MySQL-server-5.6.35-1.rhel5.x86_64.rpm

警告:MySQL-server-5.6.35-1.rhel5.x86_64.rpm: 頭V3 DSA/SHA1 Signature, 密鑰 ID 5072e1f5: NOKEY

錯誤:依賴檢測失敗:

/usr/bin/perl 被 MySQL-server-5.6.35-1.rhel5.x86_64 須要

libaio.so.1()(64bit) 被 MySQL-server-5.6.35-1.rhel5.x86_64 須要

libaio.so.1(LIBAIO_0.1)(64bit) 被 MySQL-server-5.6.35-1.rhel5.x86_64 須要

libaio.so.1(LIBAIO_0.4)(64bit) 被 MySQL-server-5.6.35-1.rhel5.x86_64 須要

net-tools 被 MySQL-server-5.6.35-1.rhel5.x86_64 須要

 

Step F:

//1 wget http://dev.mysql.com/get/mysql-community-release-rhel5-5.noarch.rpm

//2 rpm -Uvh mysql-community-release-rhel5-5.noarch.rpm

 

wget MySQL-server-5.6.35-1.linux_glibc2.5.x86_64.rpm 

 

二、添加MySQL YUM倉庫

wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-server-5.6.35-1.rhel5.x86_64.rpm

MySQL-client-5.6.31-1.linux_glibc2.5.x86_64.rpm

 

yum install perl

 

yum install net-tools

 

yum install libaio

 

rpm -Uvh MySQL-server-5.6.35-1.rhel5.x86_64.rpm

wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-client-5.6.35-1.rhel5.x86_64.rpm

 

3、添加/etc/yum.repos.d/mysql-community.repo

A. vim /etc/yum.repos.d/mysql-community.repo

B. 添加內容

 

4、用yum安裝MySQL

  1. yum install mysql-community-server

 

yum install mysql-community-server

 

#開機啓動

systemctl enable mysqld.service

 

 systemctl start mysqld.service

 

grep "temporary password" | /var/log/mysqld.log //清除臨時密碼

 

建立用戶密碼

create user 'root'@'%' identified by 'crystal!#$86883448$#!';

grant all privileges on *.* to 'root'@'%' identified by 'crystal!#$86883448$#!' with grant option;

flush privileges;

 

5、清除舊數據庫文件

  1. mv /var/lib/mysql /var/lib/mysql-bak

 

6、啓動MySQL

  1. systemctl start mysqld.service

 

7YUM安裝MySQL目錄說明

  1. /var/log/mysqld.log #MySQL日誌目錄
  2. /var/lib/mysql #MySQL數據文件目錄
  3. /usr/share/mysql/ #MySQL配置文件目錄
  4. /usr/bin/ #MySQL啓動腳本目錄

 

8、設置用戶

  1. CREATE user test_user;
  2. USE mysql;
  3. UPDATE user SET password=PASSWORD("TEST_PASSWORD") WHERE user='test_user';
  4. GRANT ALL ON *.* TO 'test_user'@'%';
  5. FLUSH PRIVILEGES;

 

9、設置默認字符編碼

①、添加my.cnf(若存在此文件,請忽略此步驟)

  1. cp /usr/share/mysql/my-default.cnf /etc/my.cnf

 

②、查詢數據庫編碼

  1. show variables like 'character_set_%';

 

③、修改/etc/my.cnf

添加內容:

  1. character_set_server=utf8

 

2nd. Apache Httpd

 

A.

 yum -y install httpd

 

B.

systemctl start httpd.service

 

systemctl stop httpd.service

 

systemctl restart httpd.service

 

systemctl enable httpd.service

 

3rd.  php

php

yum -y install php*

php組件支持mysql

//yum install php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-bcmath php-mhash

 

yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mcrypt.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64

 

添加源

yum install epel-release

rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

查看源

yum list --enablerepo=remi --enablerepo=remi-php56 | grep php

安裝php

yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof

 

yum --enablerepo=remi install php php-fpm

 

systemctl restart mysqld.service

 

systemctl restart httpd.service

 

systemctl restart php-fpm

systemctl enable php-fpm

相關文章
相關標籤/搜索