Linux-Installationsanweisungen (hier nicht erklärt)
MySQL-Installationsanweisungen
Diese Beschreibung verwendet mysql4.0.14
Shell>groupadd mysql
Shell>useradd -g mysql mysql
Shell>tar xvf XXXXmysql.tar.gz
Shell>cd /usr/mysql
shell>ln -s /PATH-to-mysql mysql
Shell>cd mysql
shell>scripts/mysql_install_db --user=mysql
Shell>chown -R root .
Shell>chown -R MySQL-Daten
Shell>chgrp -R mysql .
shell>bin/mysqld_safe --user=mysql &
Apache-Installationsanweisungen
Diese Beschreibung verwendet http2.0.54
Shell>cd /usr/
Shell>tar xvfz httpd-2.0.54.tar.gz
Shell>cd httpd-2.0.54
Shell>./configure --prefix=/usr/Apache --enable-module=so
Shell>make
Shell>make install
Shell>/usr/Apache/conf
Shell>vi ./httpd.conf
Ändern Sie „Hören 80“ in „Hören :80“.
Ändern Sie ServerName in ServerName:80
Fügen Sie index.jsp in DirectoryIndex hinzu
Shell>cd /usr/Apache/bin/
shell>./apachectl configtest
Wenn Syntax ok angezeigt wird, ist die Installation erfolgreich.
Shell>./apachectl start
Starten Sie den Apache-Dienst, greifen Sie auf Port 80 des lokalen Computers zu und prüfen Sie, ob der Port normal ist
Shell>./apachectl stop
PHP-Installationsanweisungen
Diese Installation verwendet Version php4.4.0
Shell>tar zxvf php4.4.0.tar.gz
Shell>cd php4.4.0
Shell>./configure --prefix=/usr/php --with-apxs2=/usr/Apache/bin/apxs --with-xml --with-mysql=/usr/mysql
Shell>make
Shell>make install
Shell>vi /usr/apache/conf/httpd.conf
Hinzufügen zu
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
Shell>cp -rf /PAHT-to-php4.4.0/php.ini.dist /usr/php/lib/php.ini
Shell>vi php.ini
Ändern Sie register_globals = On
Starten Sie den Apache-Server neu
Schreiben Sie ein PHP-Testdokument unter /usr/apache/htdocs <?php phpinfo( ?>).
Wenn es normal funktioniert, bedeutet dies, dass die Installation korrekt ist.
Installation des Datenbanktools phpmyadmin
Diese Installation verwendet Version phpMyAdmin2.6.4
Shell>cd /usr/Apache/htdocs
Shell>tar zxvf phpMyAdmin2.6.4.tar.gz
Shell>mv phpMyAdmin2.6.4 phpAdmin
Shell>vi config.inc.php
Benutzernamen und Passwort ändern
$cfg['Servers'][$i]['port'] ='80';(port)
$cfg['Servers'][$i]['user'] = 'root';(Benutzername)
$cfg['Servers'][$i]['password'] = '';
Kontrollieren Sie die Zugriffsberechtigungen der Benutzer
Shell>vi /usr/apache/conf/httpd.conf
Überarbeiten
AllowOverride All
Shell>cd /usr/Apache/bin
shell>htpasswd -c /usr/apache/htdocs/phpAdmin/.htpasswd luodexing (Hinweis: luodexing ist der Benutzername beim Anmelden bei phpmyadmin)
Shell>cd /usr/Apache/htdocs/phpAdmin
Shell>vi.htaccess
Hinzufügen zu
AuthName „Benutzeranmeldung“
AuthType Basic
AuthUserFile /usr/apache/htdocs/phpAdmin/.htpasswd
erfordert Benutzer-Luodexing
Starten Sie Apache neu
Java-Installation
Diese Installation verwendet die Version jdk1.5.0
Shell>cd /usr
Shell>tar zxvf jdk1.5.0.tar.gz
Shell>vi /etc/profile
Hinzufügen zu
JAVA_HOME=/usr/jdk1.5.0
CLASSPATH=/usr/jdk1.5.0/dt.jar:/usr/jdk1.5.0/tools.jar
JAVA_HOME CLASSPATH exportieren
prüfen
Shell>javac
Wenn der Befehl „Befehl nicht gefunden“ nicht angezeigt wird, ist die Java-Installation in Ordnung.
Tomcat-Installation
Diese Installation verwendet Version tomcat5.5.9
Shell>cd /usr
Shell>tar zxvf tomcat5.5.9.tar.gz
Shell>ln -s /usr/tomcat5.5.9 tomcat5
Shell>vi /usr/tomcat5/bin/catalina.sh
Hinzufügen zu
JAVA_HOME=/usr/jdk1.5.0
Shell>/usr/tomcat5/bin/start.sh startet den Dienst
JK-Installation
Diese Installation verwendet Version 1.2.14src
Shell>tar xvf XXXXXX1.2.14.src.tar.gz
Shell>cd XXXXX1.2.14
Shell>chmod 755 buildconf.sh
Shell>./buildconf.sh
Shell>./configure --with-apxs=/usr/Apache/bin/apxs
Shell>make
Shell>make install
Shell>vi /usr/apache/conf/httpd.conf
Nach dem Dokument hinzufügen
LoadModule jk_module module/mod_jk.so
JkWorkersFile conf/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel-Debug
JkMount /*.jsp worker1
Schreiben Sie das Workers.properties-Dokument (unter conf)
ps=/
worker.list=worker1
worker.worker1.port=8009
worker.worker1.host=localhost
worker.worker1.type=ajp13
worker.worker1.lbfactor=1
An diesem Punkt ist der gesamte Vorgang abgeschlossen und ein LAMPJT-System wird ausgegeben.
Hinweis: Das von mir verwendete Betriebssystem ist Linux-Core 4. Wenn Sie also die Variable JAVA_OPTS im Startskript catalina.sh von Tomcat nicht ändern möchten, Bitte verwenden Sie jdk1.5