centor6.4 系统怎么配置环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centor6.4 系统怎么配置环境相关的知识,希望对你有一定的参考价值。

参考技术A   一、准备工作   上pkgs/download/nginx-1/download/nginx-1206/get/php-5.4.14.tar.gz/from/this/mirror   // 解压   [root@pangou php]# tar -zxvf php-5.4.14.tar.gz   安装依赖包   [root@pangou php]# yum install -y libxml2-devel libjpeg-devel libpng-devel freetype-devel openssl-devel libcurl-devel libmcrypt-devel   编译php   [root@pangou php]# ls   php-5.4.14 php-5.4.14.tar.gz   [root@pangou php]# cd php-5.4.14   [root@pangou php-5.4.14]# pwd   /root/Downloads/php/php-5.4.14   [root@pangou php-5.4.14]# ls   acinclude.m4 CREDITS ltmain.sh NEWS README.MAILINGLIST_RULES README.TESTING stamp-h.in   aclocal.m4 ext main pear README.namespaces README.TESTING2 stub.c   build EXTENSIONS makedist php5.spec.in README.NEW-OUTPUT-API README.UNIX-BUILD-SYSTEM svnclean.bat   buildconf footer Makefile.frag php.gif README.PARAMETER_PARSING_API README.WIN32-BUILD-SYSTEM tests   buildconf.bat generated_lists Makefile.gcov php.ini-development README.PHP4-TO-PHP5-THIN-CHANGES run-tests.php TSRM   CODING_STANDARDS genfiles Makefile.global php.ini-production README.REDIST.BINS sapi UPGRADING   config.guess header makerpm README.EXTENSIONS README.RELEASE_PROCESS scripts UPGRADING.INTERNALS   config.sub INSTALL missing README.EXT_SKEL README.SELF-CONTAINED-EXTENSIONS server-tests-config.php vcsclean   configure install-sh mkinstalldirs README.GIT-RULES README.STREAMS server-tests.php win32   configure.in LICENSE netware README.input_filter README.SUBMITTING_PATCH snapshot Zend   [root@pangou php-5.4.14]# ./configure --prefix=/opt/php --with-config-file-path=/opt/php/etc --with-mysql=/usr/ --with-mysqli=/usr/bin/mysql_config --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-discard-path --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-fastcgi --enable-fpm --enable-force-cgi-redirect --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --with-mime-magic   // 编译时间可能有点长。。。   // 编译成功后,安装   [root@pangou php-5.4.14]# make && make install   // 安装时间也比较长   安装成功后,php的位置就应该在/opt/php目录下,接下去就是配置   // 复制配置文件到配置目录下   [root@pangou php-5.4.14]# cp /root/Downloads/php/php-5.4.14/php.ini-production /opt/php/etc/php.ini   [root@pangou php-5.4.14]# cp /opt/php/etc/php-fpm.conf.default /opt/php/etc/php-fpm.conf   [root@pangou php-5.4.14]# cd /opt/php/etc/   [root@pangou etc]# ls   php-fpm.conf php-fpm.conf.default php.ini   // 然后配置nginx的配置文件,让其可以运行php   [root@pangou etc]# cd /opt/nginx/conf/   [root@pangou conf]# ls   fastcgi.conf fastcgi_params koi-utf mime.types nginx.conf scgi_params uwsgi_params win-utf   fastcgi.conf.default fastcgi_params.default koi-win mime.types.default nginx.conf.default scgi_params.default uwsgi_params.default   [root@pangou conf]# vim nginx.conf   1、去掉 #user nobody; 的#号, 变成 user nobody;   2、去掉   #location ~ .php$   # root html;   # fastcgi_pass 127.0.0.1:9000;   # fastcgi_index index.php;   # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;   # include fastcgi_params;   #   之前的#号,   并修改   fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;   为   fastcgi_param SCRIPT_FILENAME /opt/nginx/html$fastcgi_script_name;   最终修改后的内容为:   location ~ .php$   root html;   fastcgi_pass 127.0.0.1:9000;   fastcgi_index index.php;   fastcgi_param SCRIPT_FILENAME /opt/nginx/html$fastcgi_script_name;   include fastcgi_params;      重启nginx服务,并开启php-fpm   [root@pangou ~]# /opt/nginx/sbin/nginx   [root@pangou ~]# /opt/php/sbin/php-fpm   // 创建phpinfo文件   [root@pangou ~]# vim /opt/nginx/html/phpinfo.php   内容为   phpinfo();   ?>   访问127.0.0.1/phpinfo.php   安装成功。mysql,mysqli等扩展都有。   这边有一点偷懒,并没有编译安装mysql,而是使用yum安装的mysql。

腾讯云window系统怎么配置php环境

从一开始选购到配置的整个过程,需要一个 win中的php面板就能够轻松搭建了。

win服务器我建议从2核4g起步,低于这个配置都会卡顿、缓慢等。

买完后会给你发远程账号密码,拿到后使用远程桌面登陆程序,就可以成功连接到 server服务器上了。然后在服务器上就跟你自己的本地电脑一样,开始搭建环境,部署网站了。

以前人都是自己手动配置 IIS,很麻烦还容易出错。现在有了一键php包,就方便多了。具体安装配置过程比较多,或者你去看看快速配置 Windows 云服务器文档,那里面写的很详细的,比我说的这些更具体。

参考技术A CentOS系统我们可以直接使用 yum install 的方式进行软件安装,腾讯云有提供软件安装源,是同步CentOS官方的安装源,包涵的软件都是当前最稳定的版本,因此直接安装即可

yum install -y httpd php php-fpm mysql mysql-server php-mysql

2、将相应服务启动

我们安装的apache php mysql这些软件都是以服务的形式在服务器中的,注意这里通常我们所说的web服务都是指的apache,而不是服务器本身

service httpd start
service mysqld start
service php-fpm start

这三个命令输入完毕之后代表网站的环境基本已经完成,接下来执行 netstat -tunlp 来检查服务的运行情况。

这样我们可以看到httpd(也就是apache服务)监听80端口,mysql监听3306端口,php-fpm监听9000端口,并且都已经正常启动。

这时,我们的环境已经基本搭建好了,大家已经可以在浏览器中访问服务器的外网ip,可以看到apache的测试页面,就说明你已经成功了。为了保险起见,也建议大家进入到apache的web根目录:/var/www/html 中自己写一个最简单的php页面

cd /var/www/html
touch test.php
vi test.php 进入到了控制模式之后再摁下键盘字母 i 进入到编辑模式,将如下代码复制粘贴到编辑模式中
<?php
echo "hello Jim";
?>

3、最后20%问题来自mysql的简单配置

因为discuz论坛要用到mysql数据库,因此我们要为mysql设置相应的用户去访问管理,之前我们已经启动了mysqld服务,因此此时我们需要给mysql设定一个初始的root密码,可以让root用户去访问数据库

mysqladmin -u root password "XXXXXXXX"

这样我们就设置好了mysql的密码,可以输入 mysql -u root -p ,然后再输入刚刚设定好的密码,就可以进入到数据库中。

有了这些之后,就可以通过外网ip地址,访问服务器了。
参考技术B 无论是阿里云还是腾讯云,都是可以安装php的。
既然是服务器,自己可以搭建php环境啊。百度下,php环境搭建程序,一搜一大把
例如:phpstudy 这个工具,WINDOWS可安装,LINUX也可以用
我的就是阿里云主机,windows系统(linux我不会用),PHP用的好好的,一点问题都没有

php只是搭建环境,和你的操作系统没关系的。本回答被提问者采纳

以上是关于centor6.4 系统怎么配置环境的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse怎么配置运行环境?

WIN7怎么配置环境变量JAVAHOME

jmeter3.3环境变量怎么配置

腾讯云window系统怎么配置php环境

win10怎么配置adb环境变量

ubuntu系统怎么配置环境变量