05-15-2007 10:40 AM
mon_utilisateur@hlt24-vm:~$ sudo -s
Je met à jour mon Ubuntu 7.04 Serveur avec :root@xxxx:/# apt-get update
Autrement pour les mises à jour de sécurité etc.root@xxxx:/# apt-get upgrade
Etape 1root@xxxx:/# apt-get install sun-java6-jre
Installation du module Java 6.0 jdkroot@xxxx:/# apt-get install sun-java6-jdk
Installation du module Java 6.0 fontsroot@xxxx:/# apt-get install sun-java6-fonts
Installation du module sun-java6-binroot@xxxx:/# apt-get install sun-java6-bin
Vérification de la version Java installéroot@xxxx:/# update-java-alternatives -l
Voici le résultat que j'obtiens :root@xxxx:/# update-java-alternatives -l
java-6-sun 63 /usr/lib/jvm/java-6-sun
Afin de terminer et valider cette phase d'installation lancer les commandes suivantes afin d'être sur que vous obtenez une réponse du serveur :root@xxxx:/# java -version
java version "1.6.0"
Java(TM) SE Runtime Environment (build 1.6.0-b105)
Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing)
javac -helproot@xxxx:/# javac -help
Usage: javac <options> <source files>
where possible options include:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are used
-classpath <path> Specify where to find user class files and annotation processors
-cp <path> Specify where to find user class files and annotation processors
-sourcepath <path> Specify where to find input source files
-bootclasspath <path> Override location of bootstrap class files
-extdirs <dirs> Override location of installed extensions
-endorseddirs <dirs> Override location of endorsed standards path
-proc:{none,only} Control whether annotation processing and/or compilation is done.
-processor <class1>[,<class2>,<class3>…]Names of the annotation processors to run; bypasses default discovery process
-processorpath <path> Specify where to find annotation processors
-d <directory> Specify where to place generated class files
-s <directory> Specify where to place generated source files
-implicit:{none,class} Specify whether or not to generate class files for implicitly referenced files
-encoding <encoding> Specify character encoding used by source files
-source <release> Provide source compatibility with specified release
-target <release> Generate class files for specific VM version
-version Version information
-help Print a synopsis of standard options
-Akey[=value] Options to pass to annotation processors
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system
Voilà c'est terminé pour l'installation de Javaroot@xxxx:/# mkdir logiciel
root@xxxx:/# chmod 777 logiciels
Application de droits sur le fichier "apache-tomcat-6.0.10.tar.gz"root@xxxx:/logiciels# chmod 777 apache-tomcat-6.0.10.tar.gz
Dézipper TomCat 6.0.10root@xxxx:/# tar xvfz apache-tomcat-6.0.10.tar.gz
Renommer l'application"apache-tomcat-6.0.10"root@xxxx:/# mv apache-tomcat-6.0.10 tomcat
Déplacement du répertoire "tomcat"root@xxxx:/logiciels# mv tomcat /usr/local/
Liaisons JAVA_HOME and CLASSPATHroot@xxxx:/# vim ~/.bashrc
Je rajoute les 2 commentaires suivants à la fin du texte :export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00
export CLASSPATH=/usr/local/tomcat/lib/jsp-api.jar:/usr/local/tomcat/lib/servlet-api.jar
Maintenant pour valider tout cela, il faut quitter votre session et rentrer à nouveauroot@xxxx:/# sh /usr/local/tomcat/bin/startup.sh
Réponse du serveur :Using CATALINA_BASE: /usr/local/tomcat
Using CATALINA_HOME: /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME: /usr/lib/jvm/java-6-sun-1.6.0.00
Si Dieu le veux maintenant en se connectant sur une interface web depuis votre poste de travail en utilisant IE, FireFox etc. en tappant :root@xxxx:/# sh /usr/local/tomcat/bin/shutdown.sh
Edition du fichier "tomcat-users.xml"root@xxxx:/# vim /usr/local/tomcat/conf/tomcat-users.xml
Ensuite<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<user username="admin" password="mon_mot_de_passe" roles="admin,manager"/>
</tomcat-users>
Attention de bien redémarrer votre service "TomCat" afin de faire prendre les modifications apporté au fichier.root@xxxx:/logiciels# mv alfresco /opt
Peut importe la manière de le faire, le but final étant d'avoir le répertoire "alfresco" (venant du fichier zippé "alfresco-community-war-2.0.0(.tar.gz) ou (.zip)") dans le répertoire "/opt".root@xxxx:/# mysqladmin -u root password 'mon_mot_de_passe';
Je vais ensuite chercher le fichier de configuration automatique de la BD qui s'appel (db_setup.sql) en allant ici :root@xxxx:/logiciels# cd /opt/alfresco/extras/databases/mysql
Installation de la base de données SQLroot@xxx:/opt/alfresco/extras/databases/mysql# mysql -u root -p
A vous de mettre votre mot de passe configuré précédemment.mysql> source db_setup.sql
vous devriez voir ensuite :mysql> source db_setup.sql
Query OK, 1 row affected (0.01 sec)
Query OK, 0 rows affected (0.01 sec)
Query OK, 0 rows affected (0.00 sec)
Installation du connecteur SQLroot@xxxx:/logiciels# mv mysql-connector-java-5.0.5-bin.jar /usr/local/tomcat/lib/
*****ATTENTION*****dir.root=/srv/alfresco/data
db.username=alfresco
db.password=alfresco
db.pool.initial=10
db.pool.max=100
db.driver=org.gjt.mm.mysql.Driver
db.url=jdbc:mysql://localhost/alfresco
au tour du fichier "custom-hibernate-dialect.properties" en dé commentant les lignes suivantes :hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect
Etape 6root@xxxx:/# /etc/init.d/mysql start
Nous allons maintenant lancer la commande suivante afin d'activer "TomCat" :root@xxxx:/# sh /usr/local/tomcat/bin/startup.sh
Se rendre sur l'interface d'administration de "TomCat" sur l'adresse suivante avec IE, FireFox etc. :11-22-2007 02:22 PM
11-22-2007 04:03 PM
11-22-2007 04:53 PM
11-23-2007 02:11 AM
11-23-2007 12:22 PM
Error creating bean with name 'dictionaryRepositoryBootstrap'
Le fait de commenter skip-networking et de redémarrer le serveur Mysql et là j'avais bien mon port 3306 d'ouvert.. Et l'application Alfresco a pu démarrer correctement. Je ne prétend pas que ça reste la solution idéale mais pour mon cas ça a marché…et (touche du bois) ça va rester opérationnel j'espère ^^'23 nov. 2007 17:58:33 org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 3000 ms
23 nov. 2007 17:58:34 org.apache.catalina.core.StandardService start
INFO: Démarrage du service Catalina
23 nov. 2007 17:58:34 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.23
23 nov. 2007 17:58:34 org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
23 nov. 2007 17:58:35 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive alfresco.war de l'application web
17:59:31,540 WARN [remoting.rmi.RmiRegistryFactoryBean] Could not detect RMI registry - creating new one
17:59:35,481 WARN [alfresco.util.OpenOfficeConnectionTester] A connection to OpenOffice could not be established.
17:59:45,006 INFO [domain.schema.SchemaBootstrap] Schema managed by database dialect org.hibernate.dialect.MySQLInnoDBDialect.
17:59:47,268 INFO [domain.schema.SchemaBootstrap] Aucune modification na été apportée au schéma.
17:59:51,725 WARN [repo.admin.ConfigurationChecker] The Alfresco 'dir.root' property is set to a relative path './alf_data'. 'dir.root' should be overridden to point to a specific folder.
17:59:51,726 INFO [repo.admin.ConfigurationChecker] The Alfresco root data directory ('dir.root') is: ./alf_data
17:59:52,072 INFO [admin.patch.PatchExecuter] Vérification des correctifs à appliquer …
17:59:52,337 INFO [repo.module.ModuleServiceImpl] 0 module(s) trouvé(s).
17:59:52,815 ERROR [alfresco.smb.protocol] Failed to get local domain/workgroup name, using default of WORKGROUP
17:59:52,816 ERROR [alfresco.smb.protocol] (This may be due to firewall settings or incorrect <broadcast> setting)
17:59:53,050 ERROR [alfresco.ftp.protocol] FTP Socket error
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
at java.net.ServerSocket.bind(ServerSocket.java:319)
at java.net.ServerSocket.<init>(ServerSocket.java:185)
at java.net.ServerSocket.<init>(ServerSocket.java:141)
at org.alfresco.filesys.ftp.FTPNetworkServer.run(FTPNetworkServer.java:407)
at java.lang.Thread.run(Thread.java:619)
La connection avec OpenOffice n'a pas pu se faire, je recherche pourquoi mais suis également preneur de tout conseils et informations de votre part
11-23-2007 01:13 PM
12-10-2007 08:16 AM
12-10-2007 08:54 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.