ServerworkermanHow to configure?
Alibaba Cloud-workerman server environment Configuration
1. Purchase Alibaba Cloud centos server
2. Download the Linux one-click installation web environment and copy it to the server
3. Execute the one-click installation package (./install.sh) will automatically clean up the environment where the one-click installation package has been installed before.
4. Select the corresponding software version as needed
5. Check the password:
Standard version: cat /alidata/account.log
Professional version: cat /root/sh-1.5.4/account.log
Note: It may not be here, but in the download directory
6. Install phpwind and phpmyadmin
Enter your domain name or IP directly into the browser. If this is the first time you visit phpwind, it will automatically jump to the installation page.
7. 6. Environment directory and related operation commands
Website directory:/alidata/www Server software directory:/alidata/serverMysql directory/alidata/server/mysql Php directory/alidata/server /php
Tomcat directory/alidata/server/tomcat7
If nginx is selected, there will be an nginx directory in /alidata/server/nginx/
The Nginx configuration file is in/ alidata/server/nginx/conf
To add Nginx virtual host, you can modify /alidata/server/nginx/conf/vhosts/phpwind.conf
If you select apache, there will be an httpd directory in /alidata/server/httpd
The apache configuration file is in /alidata/server/httpd/conf
To add the apache virtual host, you can modify /alidata/server/httpd/conf/vhosts/phpwind. conf
Summary of each service operation command:
nginx: /etc/init.d/nginx start/stop/restart/reload) apache: /etc/init.d/httpd start/stop/restart/… mysql: /etc/init.d/mysqld start/stop/restart/… php-fpm:/etc/init.d/php-fpm start/stop/restart/… Tomcat: /etc/init.d/tomcat7 start/stop/restart/… ftp: /etc/init.d/vsftpd start/stop/restart/… 比如启动 nginx: /etc/init.d/nginx start
8. Install the workerman environment
http://www.workerman.net/install
1. Run curl -Ss http:/ in the command /www.workerman.net/check.php | php detects whether the local environment satisfies workerman.
This software package does not have the pcntl extension, so I need to install it myself. The installation of this extension gave me a headache for a day. But today I suddenly got the idea. It's actually very simple, but I was pretty clueless before and kept making mistakes.
First you need to enter the pcntl directory of the php source code package,
[root@iZ25pkurrazZ etc]# cd /mnt/sh-1.4.5/php-5.5.7/ext/pcntl/
Then
/alidata/server/php-5.5.7/bin/phpize && ./configure && make install,
Note: If an error is reported: configure: error: Cannot find php-config. Please use --with-php-config=PATH
, then you need to find php- config, find / -name php-config,
Find /alidata/server/php-5.5.7/bin/php-config,
So it should be:
/alidata/server/php-5.5.7/bin/phpize && ./configure --with-php-config=/alidata/server/php-5.5.7/bin/php-config && make install
Add the extension to php.ini and that's it. The previous error was because it was written in the wrong place. The php.ini of this software package is in /alidata/server/php/etc/php.ini
, so we have to write here too
[root@iZ25pkurrazZ pcntl]# echo "extension=pcntl.so" >> /alidata/server/php/etc/php.ini
If it is php-5.5.7, it is:
echo "extension=pcntl.so" >> /alidata/server/php-5.5.7/etc/php.ini
, done! ! !
By the way, remember to restart php and the server, apache or nginx
Restart
nginx [root@iZ25pkurrazZ pcntl]# /etc/init.d/nginx restart
Restart php [root@iZ25pkurrazZ pcntl]# /etc/init.d/php -fpm restart
When using php -m, I found that PDO and pcntl extensions are available, and then use curl -Ss http://www.workerman.net/check.php | php to check it.
9. Open phpmyadmin, create a database, and import the database file.
10. Modify the project database username and password.
11. Add and modify the xx.conf virtual host file
12. To enable phpinfo, you need to close it in php.ini; short_open_tag = Off and restart it
Related recommendations: " workermanTutorial》
The above is the detailed content of How to configure server workerman. For more information, please follow other related articles on the PHP Chinese website!

workerman 对比 swoole 实际开发项目中,你会选择哪个?对于新手学哪个较好,有什么建议吗?

如何利用Workerman实现PHP和Unity3D的跨平台游戏联机功能随着移动游戏的兴起,跨平台游戏联机功能成为游戏开发者关注的焦点之一。PHP作为一种广泛应用于Web开发的语言,而Unity3D作为一款强大的跨平台游戏引擎,如何实现二者之间的联机功能成为了开发者们思考的问题。本文将介绍如何利用Workerman实现PHP和Unity3D的跨平台游戏联机功

如何利用PHP和Unity3D开发基于Workerman的实时多人游戏随着游戏行业的不断发展,实时多人游戏成为了一种趋势。而PHP作为一种广泛使用的服务器端脚本语言和Unity3D作为一种流行的游戏开发引擎,如果能够结合起来开发实时多人游戏,将会带来更加丰富的玩法和用户体验。本文将详细介绍如何利用PHP和Unity3D开发基于Workerman的实时多人游戏

PHP和Unity3D如何利用Workerman实现服务器端推送功能在现代的网络应用中,服务器端推送功能(ServerPush)显示了它的强大威力。它可以实时地将信息推送给客户端,而无需客户端不停地向服务器发起请求。在本文中,我们将讨论如何使用PHP和Unity3D结合使用Workerman框架来实现服务器端推送功能。Workerman是一个使用纯PHP编

如何使用Workerman实现PHP和Unity3D的数据统计和分析功能引言:随着互联网的快速发展,数据统计和分析变得愈发重要。在PHP和Unity3D开发过程中,我们经常需要收集和分析用户的行为数据,以便进行产品改进和决策制定。本文将介绍如何使用Workerman这个高性能的PHP开发框架实现PHP和Unity3D之间的数据统计和分析功能。一、Worker

如何使用Workerman实现PHP和Unity3D的多人在线拼图游戏概述:多人在线游戏一直是游戏开发领域的一个热门话题,而拼图游戏作为一种简单、有趣的休闲游戏,也在线上游戏中广受欢迎。本文将介绍如何使用Workerman搭建服务器,并使用PHP和Unity3D开发一个简单的多人在线拼图游戏,实现实时的游戏互动。搭建服务器首先,我们需要搭建一个服务器来提供网

如何使用Workerman实现PHP和Unity3D的多人协同编辑功能引言:在现如今的互联网时代,多人协同编辑已经成为一个非常重要和常见的功能需求。无论是团队合作中的文档编辑,还是多人在线游戏中的场景编辑,都需要实现多人同时编辑同一个文件或场景的功能。本文将介绍如何使用Workerman框架实现PHP和Unity3D的多人协同编辑功能,并提供代码示例。一、什

PHP、Unity3D和Workerman:如何打造一个多平台的游戏开发框架引言:随着移动设备的快速普及,游戏开发变得越来越重要。不同平台上的游戏开发也成为一个挑战。本文将介绍如何利用PHP、Unity3D和Workerman打造一个多平台游戏开发框架,帮助开发者更高效地开发游戏。一、为什么选择PHP、Unity3D和Workerman?在选择开发框架时,首


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor
