Skip to main content

Liferay 7 installation process

1. Go to portal home ( cd portal_home_directory/ )
2. Go to server directory ( cd server_directory/bin/ )
3. Start server ( ./catalina.sh start )
4. If see log ( tail -f ../logs/catalina.out )

Wait until server is satrted ...
Once portal server successfully started then it will automatically open the browser and we have to complete the basic configuration page. Once portal is started then you can see the message in server console says that sever started and minutes the took to start server.
If portal automatically not open in the browser then use following local host to see portal page. The default port of tomcat server is 8080

When the first time portal is started then we have to complete the basic configuration steps and its only one time.
Basic configuration page
 If you would like to change the details like portal name, first name, last name and email you can fill in the form otherwise we can go with default populated details in the form.

Liferay default database is Hypersonic that we can observed in the database section. If we would like to change to other data base click on change link then it will ask database connection details.
Before you change default database you have to create a database if not exist.
1. Database name : Replace lportal with your_database_name in database connection link.
2. Database username : your_database_username Ex. root
3. Database password : your_database_password Ex. 123

Click on Finish Configuration to save the configuration. The configuration has saved in portal_home_directory/portal-setup-wizard.properties
 
Now restart the portal.
1. Stop server ( ./catalina.sh stop )
2. Start server ( ./catalina.sh start )

Comments

Popular posts from this blog

Create ofbiz Component / Plugin

Plugins are standard OFBiz components that reside in the specialpurpose directory. Plugins can be added manually or fetched from a maven repository. The standard tasks for create new plugin is giving below. To Create a new plugin. The following project parameters are passed: - pluginId : mandatory - pluginResourceName : optional, default is the Capitalized value of pluginId - webappName : optional, default is the value of pluginId - basePermission : optional, default is the UPPERCASE value of pluginId Enter following command below to create component/plugin, ./gradlew createPlugin -PpluginId= myplugin or ./gradlew createPlugin -PpluginId= myplugin -PpluginResourceName= MyPlugin -PwebappName= mypluginweb -PbasePermission= MYPLUGIN` The above commands achieve the following: - create a new plugin in /specialpurpose/myplugin - add the plugin to /specialpurpose/component-load.xml Once the component is created, you should load its data (required to grant access rights to t

Set ANT_OPTS on Ubuntu

1. See the error :  Please set the environment variable ANT_OPTS to the recommended value of "-Xmx1024m -XX:MaxPermSize=512m". 2. It recommend you a value "-Xmx1024m -XX:MaxPermSize=512m" 3. Open terminal and execute     sudo nano .bashrc [open .bashrc file in edit mode] 4. Add this two lines at the end of the file     ANT_OPTS="-Xmx1024m -XX:MaxPermSize=512m"     export ANT_OPTS   5. Now save the file. 6. source .bashrc Note: Don't do that using "fish" or other terminal. Always use Ubuntu default terminal.

Install and Configure JAVA on Ubuntu

Installing the Default JRE/JDK First, update the package index. $ sudo apt-get update Next, install Java. Specifically, this command will install the Java Runtime Environment (JRE). $ sudo apt-get install default-jre There is another default Java installation called the JDK (Java Development Kit). The JDK is usually only needed if you are going to compile Java programs or if the software that will use Java specifically requires it. The JDK does contain the JRE, so there are no disadvantages if you install the JDK instead of the JRE, except for the larger file size. You can install the JDK with the following command: $ sudo apt-get install default-jdk Installing the Oracle JDK First, add Oracle's PPA, then update your package repository. $ sudo add-apt-repository ppa:webupd8team/java $ sudo apt-get update Then, depending on the version you want to install, execute one of the following commands: $ sudo apt-get install oracle-java6-installer $ sudo apt-get install ora