Basic system instalation
From PlcWiki
(Difference between revisions)
(Created page with '=== Install CentOS minimal === === Install some good tools === # yum install openssh-clients # yum install mc # yum install setuptool # yum install system-config-network-t…') |
|||
Line 28: | Line 28: | ||
=== Configure Network === | === Configure Network === | ||
Set correct values tu /etc/hosts | Set correct values tu /etc/hosts | ||
+ | |||
+ | === Set CLEVER commands executable everywhere === | ||
+ | |||
+ | echo "export PATH=$PATH:/usr/local/plc/bin" > /etc/profile.d/plc_add_bin_path.sh | ||
+ | |||
=== [[Install Tomcat]] === | === [[Install Tomcat]] === |
Revision as of 17:01, 3 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 CLEVER commands executable everywhere
echo "export PATH=$PATH:/usr/local/plc/bin" > /etc/profile.d/plc_add_bin_path.sh