cd /etc/sshd vi sshd_config PermitRootLogin yes /etc/rc.d/sshd restart
|
Archive for September, 2008cd /etc/sshd vi sshd_config PermitRootLogin yes /etc/rc.d/sshd restart (0) Comments Installer JDK 1.6 sous Mac OSXPosted by niu789
Salut, j’ai trouvé cette procédure pour installer un JDK 1.6 sous Mac OSX : http://rorblog.techcfl.com/2008/02/26/installing-the-jdk-16-on-mac-os-x/ Pages des présentation de phy335Posted by niu789
In PHY335
4Sep 08 Pour ceux qui cherche les présentation de phy335 avec Tony Rivard et qui tomberait par hazard sur ma page, voici le lien : Installing Apache2.2/Tomcat5.5 on a debian from sourcePosted by niu789
Voici un copié-collé d’une procédure de compilation/configuration/installation d’Apache 2.2 en concert avec Tomcat 5.5 que j’ai à utilisé de temps en temps dans mon travail. Si ça peux vous être utile. Si vous êtes l’auteur de cette procédure n’hésitez pas à me le dire pour que je vous cite, j’ai oublié d’où provient ces informations. (If you are this procedure’s author, please do not hesitate to tell me so I can quote you). First, install this: apt-get install ssh vim ntpdate apt-get install bison bzip2 dnsutils flex g++ libssl-dev lynx make nmap openssl tcpdump tethereal traceroute unzip STEP1 – downloads scp [email protected]:/usr/src/j2sdk-1_4_2_11-linux-i586.bin /usr/src Latest Apache2 from http://httpd.apache.org. Get the tar of the source. This is the latest version (2.2.0) on 20060403 ./configure –prefix=/usr/local/apache-2.2.0 –enable-ssl –enable-cgi –enable-so –enable-rewrite –enable-proxy –enable-proxy-ajp If you want to know what the options do, run ./configure –help Also, please make sure that the prefix fits your version of apache and that you are NOT overwriting anything. Finally, make sure that the configure command completed successfully and that you are not lacking any libraries (see above for libraries you might need). make Now, go to /usr/local/ and make a Symbolic Link on the new apache install called apache: ln -s apache-2.2.0 apache installing Tomcat tar -zxvf /usr/src/jakarta-tomcat-5.5.16.tar.gz This will create a new directory called jakarta-tomcat-5.5.16 in /usr/local/. You want to make a Symbolic Link to that directory called tomcat (look at the example in step a to see how to create a symlink) JAVA_HOME=/usr/local/java It is sometimes necessary to add but you should be sure you need it! Don’t add this unless you are sure you have to. chmod +x j2sdk-1_4_2_11-linux-i586.bin Now go to /usr/local/ and run the executable by typing the following (don’t change directories!): /usr/src/j2sdk-1_4_2_11-linux-i586.bin This will create a new directory called j2sdk1.4.2_11 in /usr/local/. |
|