Basic system instalation
From PlcWiki
(Difference between revisions)
Line 1: | Line 1: | ||
- | + | == Install CentOS minimal == | |
- | + | == Install some good tools == | |
# yum install openssh-clients | # yum install openssh-clients | ||
Line 11: | Line 11: | ||
# yum install vim-enhanced | # yum install vim-enhanced | ||
- | + | == Disable firewall == | |
# chkconfig ip6tables off | # chkconfig ip6tables off | ||
Line 18: | Line 18: | ||
# service iptables stop | # service iptables stop | ||
- | + | == Disable SELinux == | |
In /etc/selinux/config change line | In /etc/selinux/config change line |
Revision as of 08:33, 7 February 2012
Contents |
Install CentOS minimal
Install some good tools
# yum install openssh-clients # yum install mc # yum install setuptool # yum install system-config-network-tui # yum install ntsysv # yum install vim-enhanced
Disable firewall
# chkconfig ip6tables off # chkconfig iptables off # service ip6tables stop # service iptables stop
Disable SELinux
In /etc/selinux/config change line SELINUX=enforcing to SELINUX=disabled and reboot server.
Configure Network
Set correct values tu /etc/hosts
Set Timeserver (ntpd)
Prosím někoho kdo ví jaká jsou pravidla pro řízení času aby to tu popsal
Set CLEVER commands executable everywhere
echo "export PATH=$PATH:/usr/local/plc/bin" > /etc/profile.d/plc_add_bin_path.sh
Install Tomcat
# yum install java-1.6.0-openjdk-devel # yum install tomcat6 # yum install tomcat6-docs-webapp # yum install tomcat6-admin-webapps # chkconfig tomcat6 on # service tomcat6 start