Table of Contents
Install Dreamweaver CMS on Linux server, Linux server Dreamweaver cms
Home Backend Development PHP Tutorial Install Dreamweaver CMS on Linux server, Linux server Dreamweaver cms_PHP tutorial

Install Dreamweaver CMS on Linux server, Linux server Dreamweaver cms_PHP tutorial

Jul 12, 2016 am 08:50 AM

Install Dreamweaver CMS on Linux server, Linux server Dreamweaver cms

Installation

Step 1: Configure the firewall (By default, ports 80 and 3306 are denied access, configure them on the firewall):

  1. vi /etc/sysconfig/iptables (Add the following two sentences on the line above "COMMIT")
  2. -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT (allow port 80 through the firewall)
  3. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT (allow port 3306 through the firewall)

Then restart the firewall to make the configuration take effect:

  1. /etc/init.d/iptables restart

Step 2: Install Apache

Install Apache using the following command:

  1. yum install httpd

If the following statement appears, it means that Apache has been installed and there is no need to reinstall it:

After installation, restart Apache: /etc/init.d/httpd restart

Then set Apache to start at boot: chkconfig httpd on. (This step eliminates the need to manually start the httpd service every time the server is restarted)

To check the startup status of the httpd service, you can use the command: chkconfig --list httpd (the startup status of httpd at each level will be displayed)

Step 3: Install MySQL

1. Use the following command to install MySQL:

  1. yum install mysql mysql-server

Similarly, if there is a prompt that it has been installed, it means that MySQL is installed on the system. You can skip this step, otherwise, the system will automatically install MySQL.

After the installation is complete, start MySQL: /etc/init.d/mysql start

Set MySQL to start at boot: chkconfig mysqld on
Finally, copy the configuration file: cp /usr/share/mysql/my-medium.cnf /etc/my.cnf (there is my.cnf under /etc. cnf file, just overwrite it directly)

2. Use the following command to set the password for the root account

  1. mysql_secure_installation

Enter the password twice according to the prompts and the setting is successful. Note that during the setup process, you will be prompted whether to delete anonymous users, whether to deny root remote access, whether to delete the test database, etc. These all need to be selected according to your actual situation. Finally, it appears: Thanks for using MySQL!, and the password is set successfully.

Restart MySQL: /etc/init.d/mysqld restart

Step 4: Install PHP

1. Use the following command to install PHP:

  1. yum install php

Just follow the prompts to install. After installation, restart Apache: /etc/init.d/httpd restart
2. Install the PHP component, which is PHP that supports MySQL

You can use the command: yum search php to view PHP components and select the required modules for installation:

yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt

After installation, restart Apache: /etc/init.d/httpd restart

Restart MySQL: /etc/init.d/mysqld restart

At this step, AMP in LAMP has been installed, but the web server cannot be accessed at this time, because to access the server, Apache and PHP need to be configured accordingly.

Configuration

Step 1: Configure Apache

Modify the Apache configuration file: vi /etc/httpd/conf/httpd.conf, and find the following line in the file and modify it (to search, you can enter "/the character to be searched for" in the general mode of vi to search ):

ServerTokens OS   Modified to:   ServerTokens       (Do not display the name of the server operating system when an error page appears) (Do not display the Apache version in the error page)
Options Indexes FollowSymLinks Modified to: Options Includes ExecCGI FollowSymLinks (Allow the server to execute CGI and SSI, prohibit directory listing)
#AddHandler cgi-script .cgi Modified to: AddHandler cgi-script .cgi .pl                                                                                                                                                                                                                                                                                  to CGI script running)
AllowOverride None Modify to: AllowOverride All (Allow .htaccess) AddDefaultCharset GB2312 (Add GB2312 as the default encoding)

Options Indexes MultiViews FollowSymLinks Modified to Options MultiViews FollowSymLinks (Do not display the tree directory structure on the browser)

DirectoryIndex index.html index.html.var Modified to: DirectoryIndex index.html index.htm Default.html Default. htm index.php default.php index.html.var (setting the default homepage file, adding index.php)

Keepalive OFF modification: Keepalive On (allowed programmed online) 100 Modified to: MaxkeepaliveRequests 1000 ( Increase the number of simultaneous connections)


After modification, save the configuration and restart Apache: /etc/init.d/httpd restart

It is recommended to delete the default test page: rm -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html

Step 2: Configure PHP

Modify the PHP configuration file: vi /etc/php.ini. The location of the following lines that need to be modified can be found through the vi search command:

date.timezone = PRC                     #Remove the semicolon in front and change it to date.timezone = PRC

disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru, stream_socket_server,escape shellcmd,dll,popen ,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_ getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid ,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname

#Lists the functions that can be disabled in PHP. If some programs need to use this function, it can be deleted and undisabled.

expose_php=Off

display_errors = OFF                                                                                                                                                                            #Turn on magic_quotes_gpc to prevent SQL injection
log_errors = On                                 #Record error logs  
error_log = / var/log/php/error_log.log #Set the error log storage directory. The file must allow the apache user and group to have write permissions (note that the file /var/log/php/error_log.log must be created before modification. Then modify its properties so that it belongs to the apache user and user group chown apache /var/log/php/error_log.log and chgrp apache /var/log/php/error_log.log)

open_basedir = .:/tmp/                                                                                                                                                                                                                                                                                         

After installation and configuration, the web server has basically been set up and can be accessed.

Test Chapter

Under the directory /var/www/html: cd /var/www/html

Create php file: vi index.php

phpinfo();

?>


Then, when you enter the local address in the browser, you can access the index.php web page file you just created.

Note:

The default program directory of apache is: /var/www/html, and webpage files can be accessed here. You need to ensure that this directory belongs to user apache and user group apache.

The database directory of MySQL is: /var/lib/mysql

Writing this, LAMP is installed and configured. As long as the browser enters the IP address or domain name of the server, it will be able to access the web page files on the server.

If there are any errors or omissions, you are welcome to point out your comments for revision at any time. Thank you for your support.

Commonly used commands in Linux systems:

1. Common Linux commands

1.1. Permission allocation chmod command

chmod 777 dir/file

1.2. Reference link
1. http://blog.sina.com.cn/s /blog_3fe048830100gp0e.html
2. Common operating commands for mysql database
2.1. Modify the MySQL character set
1. Modify my.cnf
vi /etc/my.cnf
in [client] Add
default-character-set=utf8
under [mysqld]. Add
default-character-set=utf8
2. Restart MySQL
service mysqld restart
3. View character set settings
show variables like 'character_set_%';
2.2. Some other setting methods
1. Modify the character set of the database
mysql>use mydb
mysql>alter database mydb character set utf-8;
2. Create a database and specify the character set of the database
mysql>create database mydb character set utf-8;
3. Modify through the MySQL command line
set character_set_client=utf8;
set character_set_connection=utf8;
set character_set_database=utf8;
set character_set_results=utf8;
set character_set_server=utf8;
set character_set_system=utf8;
set collation_connection=utf8;
set collation_database=utf8;
set collation_server=utf8;
2.3. Back up and restore database
1. Back up
mysqldump -u root -p voice>voice.sql;
2. Restore
source voice.sql;
mysql -u root -p voice2.3. Reference link
1.http://blog.chinaunix.net/uid-26727991-id-4742248 .html


Reference link: http://www.linuxidc.com/Linux/2012-06/63847.htm

http://www.bkjia.com/PHPjc/1134601.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1134601.htmlTechArticleInstall Dreamweaver CMS on Linux server, first step of Linux server Dreamweaver CMS installation: Configure firewall (default) Below, ports 80 and 3306 are denied access, configure them on the firewall):...
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

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.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles