Dell PowerEdge C6220 설치 매뉴얼 - 페이지 15
{카테고리_이름} Dell PowerEdge C6220에 대한 설치 매뉴얼을 온라인으로 검색하거나 PDF를 다운로드하세요. Dell PowerEdge C6220 26 페이지. Lamp reference architecture centos 6.2
Dell PowerEdge C6220에 대해서도 마찬가지입니다: 기술 매뉴얼 (35 페이지), 포트폴리오 매뉴얼 (27 페이지)
Dell PowerEdge C6220 and CentOS 6.2: A LAMP Reference
Architecture
mysql> CREATE DATABASE helloworlddb;
mysql> CREATE USER testappuser@localhost IDENTIFIED BY
'Password1';
mysql> GRANT ALL ON helloworlddb.* TO
testappuser@localhost;
mysql> FLUSH PRIVILEGES;
5. Exit the mysql client utility.
6. Using the mysql client, login as the test application user to the newly
created database and create a sample schema definition. In our case, this is
just one table with one column.
mysql --user testappuser –-password=Password1
mysql> USE helloworlddb;
mysql> CREATE TABLE tbl_hello_world (testcol CHAR(100));
mysql> INSERT INTO tbl_hello_world (testcol) VALUES
("Hello World");
7. Exit the mysql client utility.
8. In the Apache Web data directory, located by default on CentOS at
/var/www/html/, create a new file named helloworld.php that will query
the database and print the results. See
contents.
9. Start the Web server.
service httpd start
chkconfig httpd on
10. From another machine, verify the page is operational by visiting
http://server_ip_address/helloworld.php
SUMMING IT ALL UP
The Dell PowerEdge C6220 server and the Linux-based CentOS operating system
provide the power and features you need to deploy multiple, enterprise-class workloads
in a large-scale cloud services environment. By increasing rack density, eliminating
downtime with hot-swappable server nodes, and removing the cost of OS licenses and
upgrade fees, running CentOS on the Dell PowerEdge C6220 can have a great effect on
your organization's bottom line, all while delivering top-of-the-line workload
performance for your cloud and SaaS users. As we have shown in this guide, deploying
the Dell PowerEdge C6220 with CentOS is a simple, straightforward task that can bring
many benefits to your cloud environment.
Appendix D
for this sample PHP file
Principled Technologies, Inc. 15