Home  >  Article  >  PHP Framework  >  How to configure server workerman

How to configure server workerman

藏色散人
藏色散人Original
2020-04-12 10:59:105921browse

How to configure server workerman

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!

Statement:
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