Wenn Sie Linux mit VirtualBox erstellen, können Sie es vorerst einfügen
# vi /etc/sysconfig/network-scripts/ifcfg-eth1
IPADDR=192.168.56.102
BOOTPROTO=static
ONBOOT=yes
Angenommen, der Proxyserver ist proxy.ex.co.jp, Port 8080
# vi /etc/environment
http_proxy="http://proxy.ex.co.jp:8080/"
HTTP_PROXY="http://proxy.ex.co.jp:8080/"
https_proxy="https://proxy.ex.co.jp:8080/"
HTTPS_PROXY="https://proxy.ex.co.jp:8080/"
ftp_proxy="ftp://proxy.ex.co.jp:8080/"
FTP_PROXY="ftp://proxy.ex.co.jp:8080/"
Gibt es einen Netzwerkneustart (oder ifup / down)?
# service network restart
# yum -y install wget gzip perl lsof sysstat
yum -y nc bind-utils yum-utils ntc
# setenforce 0
# vi /etc/selinux/config
SELINUX=disabled
# yum -y install ntp
# vi /etc/ntp.conf
centos.Kommentieren Sie den Pool aus und geben Sie ihn in das NICT ein
server ntp.nict.jp
# chkconfig ntpd on
# service ntpd start
# ntpq -p
# date +"%Y-%m-%d %H:%M:%S %Z"
Java
https://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html#javasejdk
Die URL kann sich ändern. Vorerst die JDK-Download-Seite Da Sie es manuell akzeptieren müssen, legen Sie es auf Ihrem Terminal ab und senden Sie den SCP
# rpm -i jdk-8u191-linux-i586.rpm
Pfad hinzufügen
# vi /etc/profile
export JAVA_HOME=/usr/java/default
export PATH=$PATH:$JAVA_HOME/bin
export
CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar
Ich werde wütend, dass tool.jar nicht gut gefunden wird
Ruby
# yum -y install ruby
Wenn Sie rbenv verwenden möchten, besuchen Sie die offizielle Website
# yum -y install httpd
# chkconfig httpd on
# iptables -A INPUT -p tcp --sport 80 -j ACCEPT
# /etc/init.d/iptables restart
# service httpd start
# yum -y install mysql-server
# chkconfig mysqld on
# iptables -A INPUT -p tcp --sport 3306 -j ACCEPT
# /etc/init.d/iptables restart
# service mysqld start
# yum -y install net-snmp net-snmp-utils
# yum -y install httpd php php-mysql mysql wget
# chkconfig httpd on
# chkconfig mysqld on
# chkconfig --list | grep -e httpd -e mysql
httpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
#
# vi /etc/php.ini
Zeitzone"Asia/Tokyo"ändern
# service httpd start
# service mysqld start
# vi /var/www/html/phpinfo.php
<?php
phpinfo();
?>
Erstellen Sie ein geeignetes WordPress-Schema und einen Benutzer für MySQL
# mysql -uroot -p
mysql > CREATE DATABASE wordpress
mysql > GRANT ALL PRIVILEGES ON wordpress.* TO wpuser@localhost
Legen Sie das WordPress-Paket irgendwo in / tmp ab (die Version finden Sie unter http://ja.wordpress.org/releases/).
# wget https://ja.wordpress.org/wordpress-4.9.8-ja.tar.gz
# tar zxf wordpress-4.9.8-ja.tar.gz
# cp -r wordpress /var/www/
# chown -R apache.apache /var/www/wordpress
# vi /etc/httpd/conf/httpd.conf
Dokument Root"/var/www/wordpress"Zu
Verzeichnis-Tag-Attribute"/"Zu"/var/www/wordpress"Zu
Bearbeiten Sie AllowOverride im selben Tag auf Alle
# service httpd restart
Sie müssen lediglich die Datenbank über den Webbildschirm festlegen
--Tombot-Installation, Apache-Integration ~~ Ich kann es in letzter Zeit nicht tun ~~