国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home Backend Development PHP Tutorial xampp的裝配和thinkphp的部署

xampp的裝配和thinkphp的部署

Jun 13, 2016 pm 12:24 PM
php protected redis root xampp

xampp的安裝和thinkphp的部署

一、xampp的安裝

1、xampp的下載:

https://www.apachefriends.org/zh_cn/index.html

xampp for linux v5.6.12

下載的文件為:xampp-linux-x64-5.6.12-0-installer.run

2、安裝

?其他權(quán)限無法安裝。切換到linux的root權(quán)限下,執(zhí)行 ./xampp-linux-x64-5.6.12-0-installer.run

3、啟動(dòng)xampp

? ??[[email?protected] lampp]# /opt/lampp/lampp start

Starting XAMPP for Linux 5.6.12-0...

XAMPP: Starting Apache...ok.

XAMPP: Starting MySQL...ok.

XAMPP: Starting ProFTPD...ok.

? ?

4、訪問xampp

? ? http://localhost/

?

? ? 外部訪問還要關(guān)掉防火墻 service iptables stop

? ? http://192.168.0.106/

? ? phpinfo : ? http://192.168.0.106/dashboard/phpinfo.php

?

二、thinkphp的部署

? ? 1、下載thinkphp的liunux安裝文件

? ? ?http://www.thinkphp.cn/ ?下載thinkphp_3.2.3_full.zip

? ? 2、部署到xampp中

? ? 解壓到/opt/lampp/htdocs/thinkphp

? ? 3、給thinkphp目錄下的Application添加權(quán)限

? ? 如果不添加權(quán)限訪問thinkphp會(huì)出現(xiàn)如下提示:應(yīng)用目錄[./Application/]不可寫,目錄無法自動(dòng)生成!

? ??[[email?protected] lampp]# chmod a+w Application/

? ? 4、訪問thinkphp?

? ? ?http://192.168.0.106/thinkphp

? ?

?三、php安裝redis插件

? ? 1、下載redis插件

? ? ?http://www.redis.io/clients

? ? ?下載php語言的插件phpredis:phpredis-develop.zip

? ? ?解壓到cd /home/hadoop/temp/phpredis-develop

? ? ?2、生成安裝文件并安裝

? ? ?2.1 生成configure文件:/opt/lampp/bin/phpize

? ? 可能需要安裝m4和autoconf文件,詳見http://blog.csdn.net/21aspnet/article/details/7471574

? ? ?2.2 make

? ? ?2.3 make install

? ? ?[[email?protected] phpredis-develop]# make install

? ? ?Installing shared extensions: ? ? /opt/lampp/lib/php/extensions/no-debug-non-zts-20131226/

? ? ? 2.4 查看生成的redis插件

? ? ??

[[email protected] phpredis-develop]# cd /opt/lampp/lib/php/extensions/no-debug-non-zts-20131226/[[email protected] no-debug-non-zts-20131226]# lltotal 2148-rwxr-xr-x. 1 root root   49312 Aug 25 08:52 mssql.so-rwxr-xr-x. 1 root root  156856 Aug 25 08:52 oci8.so-rwxr-xr-x. 1 root root  143976 Aug 25 08:52 opcache.so-rwxr-xr-x. 1 root root   20496 Aug 25 08:52 pdo_dblib.so-rwxr-xr-x. 1 root root  132480 Aug 25 08:52 pgsql.so-rwxr-xr-x. 1 root root   42960 Aug 25 08:52 radius.so-rwxr-xr-x. 1 root root 1423553 Aug 29 19:47 redis.so-rwxr-xr-x. 1 root root  206408 Aug 25 08:52 xdebug.so[[email protected] no-debug-non-zts-20131226]# 
? ?其中,redis.so就是生成的redis插件。

?

? ?3、配置redis插件

? ??[[email protected] etc]# pwd

? ? /opt/lampp/etc

? ? [[email protected] etc]# vi php.ini

? ? 添加:extension=“redis.so”

? ?4、重啟 php(xampp)。

? ?

[[email protected] lampp]# ./xampp restartRestarting XAMPP for Linux 5.6.12-0...XAMPP: Stopping Apache...ok.XAMPP: Stopping MySQL...ok.XAMPP: Stopping ProFTPD...ok.XAMPP: Starting Apache...ok.XAMPP: Starting MySQL...ok.XAMPP: Starting ProFTPD...ok.[[email protected] lampp]# 

? ? 5、查看redis插件是否安裝成功

? ? ?http://192.168.0.106/dashboard/phpinfo.php

? ? ?可以看出列出了redis的列表

? ? 6、安裝redis程序,寫demo測(cè)試。

? ? redis的安裝這里不再贅述,自行查閱安裝。默認(rèn)端口即可。

? ? htdocs/demo/redisdemo.php:

<?php$redis = new Redis();$redis->connect("127.0.0.1");$redis->set("name","leh");$data=$redis->get("name");echo($data);

? ??

? ? 測(cè)試:http://192.168.0.106/demo/redisdemo.php

? ? leh

?

?四、安裝thrift,實(shí)現(xiàn)php訪問hbase

? ? ? 1、下載thrift。

? ? ? thrift-0.9.2.tar.gz

? ? ?2、安裝配置thrift

? ? ?首先運(yùn)行根目錄下的 $ ./bootstrap.sh,用于生成configure腳本?

? ? ?如果下載的直接是一個(gè)tarball,則跳過此步驟,直接運(yùn)行軟件根目錄下的configure腳本?

? ??

./bootstrap.sh./configuremakemake install

? ??3、復(fù)制thrift-0.9.2/lib/php到相應(yīng)的php web目錄htdocs/demo/hbasethrift

? ? 4、生成php與hbase接口文件

#/home/hadoop/software/thrift/bin/thrift --gen php /home/hadoop/temp/hbase/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift

#(根據(jù)自己的目錄設(shè)置)

生成目錄文件: /home/hadoop/temp/gen-php/Hbase

? ?有文件: Hbase.php,Hbase_types.php

? ?把Hbase.php,Hbase_types.php copy到:web目錄/opt/lamp/php/hbasethrift/libs/packages/Hbase/

?

?

?

?

?

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to get the current session ID in PHP? How to get the current session ID in PHP? Jul 13, 2025 am 03:02 AM

The method to get the current session ID in PHP is to use the session_id() function, but you must call session_start() to successfully obtain it. 1. Call session_start() to start the session; 2. Use session_id() to read the session ID and output a string similar to abc123def456ghi789; 3. If the return is empty, check whether session_start() is missing, whether the user accesses for the first time, or whether the session is destroyed; 4. The session ID can be used for logging, security verification and cross-request communication, but security needs to be paid attention to. Make sure that the session is correctly enabled and the ID can be obtained successfully.

PHP get substring from a string PHP get substring from a string Jul 13, 2025 am 02:59 AM

To extract substrings from PHP strings, you can use the substr() function, which is syntax substr(string$string,int$start,?int$length=null), and if the length is not specified, it will be intercepted to the end; when processing multi-byte characters such as Chinese, you should use the mb_substr() function to avoid garbled code; if you need to intercept the string according to a specific separator, you can use exploit() or combine strpos() and substr() to implement it, such as extracting file name extensions or domain names.

How do you perform unit testing for php code? How do you perform unit testing for php code? Jul 13, 2025 am 02:54 AM

UnittestinginPHPinvolvesverifyingindividualcodeunitslikefunctionsormethodstocatchbugsearlyandensurereliablerefactoring.1)SetupPHPUnitviaComposer,createatestdirectory,andconfigureautoloadandphpunit.xml.2)Writetestcasesfollowingthearrange-act-assertpat

How to split a string into an array in PHP How to split a string into an array in PHP Jul 13, 2025 am 02:59 AM

In PHP, the most common method is to split the string into an array using the exploit() function. This function divides the string into multiple parts through the specified delimiter and returns an array. The syntax is exploit(separator, string, limit), where separator is the separator, string is the original string, and limit is an optional parameter to control the maximum number of segments. For example $str="apple,banana,orange";$arr=explode(",",$str); The result is ["apple","bana

JavaScript Data Types: Primitive vs Reference JavaScript Data Types: Primitive vs Reference Jul 13, 2025 am 02:43 AM

JavaScript data types are divided into primitive types and reference types. Primitive types include string, number, boolean, null, undefined, and symbol. The values are immutable and copies are copied when assigning values, so they do not affect each other; reference types such as objects, arrays and functions store memory addresses, and variables pointing to the same object will affect each other. Typeof and instanceof can be used to determine types, but pay attention to the historical issues of typeofnull. Understanding these two types of differences can help write more stable and reliable code.

Using std::chrono in C Using std::chrono in C Jul 15, 2025 am 01:30 AM

std::chrono is used in C to process time, including obtaining the current time, measuring execution time, operation time point and duration, and formatting analysis time. 1. Use std::chrono::system_clock::now() to obtain the current time, which can be converted into a readable string, but the system clock may not be monotonous; 2. Use std::chrono::steady_clock to measure the execution time to ensure monotony, and convert it into milliseconds, seconds and other units through duration_cast; 3. Time point (time_point) and duration (duration) can be interoperable, but attention should be paid to unit compatibility and clock epoch (epoch)

How does PHP handle Environment Variables? How does PHP handle Environment Variables? Jul 14, 2025 am 03:01 AM

ToaccessenvironmentvariablesinPHP,usegetenv()orthe$_ENVsuperglobal.1.getenv('VAR_NAME')retrievesaspecificvariable.2.$_ENV['VAR_NAME']accessesvariablesifvariables_orderinphp.iniincludes"E".SetvariablesviaCLIwithVAR=valuephpscript.php,inApach

How to pass a session variable to another page in PHP? How to pass a session variable to another page in PHP? Jul 13, 2025 am 02:39 AM

In PHP, to pass a session variable to another page, the key is to start the session correctly and use the same $_SESSION key name. 1. Before using session variables for each page, it must be called session_start() and placed in the front of the script; 2. Set session variables such as $_SESSION['username']='JohnDoe' on the first page; 3. After calling session_start() on another page, access the variables through the same key name; 4. Make sure that session_start() is called on each page, avoid outputting content in advance, and check that the session storage path on the server is writable; 5. Use ses

See all articles