Install Pleasanter on AlmaLinux Using the Installer
Overview¶
This procedure is for building a Pleasanter operating environment using the "Installer". You can also install it using the previous procedure of manually placing modules and setting parameters. Please refer to the following for manual installation procedures.
Install Pleasanter on AlmaLinux
| Target | Body |
|---|---|
| OS | AlmaLinux 9.7/10.1 |
| DB | PostgreSQL 18 or MySQL 8.4 |
| Web server | nginx 1.20.1 |
| Platform | .NET 10.0 |
| Pleasanter | Pleasanter 1.5.0.0 or later |
Notes¶
- MySQL can be used from version 1.4.9.0 onwards. Pleasanter versions earlier than version 1.4.9.0 do not support MySQL.
- If you want to separate the web server and DB server in MySQL, please refer to "Configure the Web Server and DB Server to Use MySQL Separately".
Limitations¶
Installation using the "Installer" is for version 1.4.0.0 and later. If you are installing version 1.3.50.2 or earlier, please refer to the manual installation procedure.
Install Pleasanter on AlmaLinux
Prerequisites¶
- We will not describe how to set up the OS. We assume that the OS has already been set up.
- For details on the operating environment and specifications, please check here.
FAQ: I want to know the operating environment and recommended specifications - Please decide in advance which user will start Pleasanter. The <User who will execute Pleasanter> described in the procedure refers to this user.
- This procedure explains the case where .NET is installed in /usr/local/bin. If you install .NET in a different directory because you need multiple versions of .NET in the same environment, change the directory specified in ExecStart when running CodeDefiner or creating a script for the Pleasanter service to match the installation destination.
Procedure¶
The construction procedure is as follows.
1. Set up .NET
1. Set up Database:
Perform the following setup for either PostgresSQL or MySQL.
*The following may not match the order of configuration.
1. Install DB
1. Set up DB administrator user
1. Set DB log output
1. Enable DB service and automatic startup
1. Set for allowing external access to DB
1. Install the installer
1. Set up Pleasanter
1. Run installer
1. Check Pleasanter startup
1. Create script for Pleasanter service
1. Register as service and start service
1. Set up Reverse proxy (nginx)
1. Change SELinux settings
1. Install nginx
1. Reverse proxy settings
1. Allow access to Http(80)
1. Check Pleasanter operation
1. Set Up .NET¶
Run the following command to install .NET.
sudo wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
sudo chmod +x ./dotnet-install.sh
sudo ./dotnet-install.sh -c 10.0 -i /usr/local/bin
dotnet --version
For details, please refer to the official page below Installation by script.
https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install
In addition, there are cases where an error occurs regarding a specific file when executing the dotnet command. In that case, please refer to the following page.
https://learn.microsoft.com/en-us/dotnet/core/install/linux-package-mixup?pivots=os-linux-redhat
2. Set Up the Database¶
Refer to either "Setting up PostgreSQL" or "Setting up MySQL" below to set up the database.
1. Set up PostgreSQL¶
The setup procedure for PostgreSQL is as follows.
(Click here to open/close the details)
1. Install PostgreSQL¶
Run the following command to install PostgreSQL.
sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm
sudo dnf install -y postgresql18-server postgresql18-contrib
2. Initialize the PostgreSQL database¶
Run the following command to initialize the database. * -A: Specify authentication method, -W: Option to display password prompt
After execution, a password prompt will be displayed, so enter your password. The password set here will be used in step 3.2, so be sure to write it down so you don't forget it.
3. Set PostgreSQL log output¶
Open /var/lib/pgsql/18/data/postgresql.conf and edit the following settings.
4. Restart the PostgreSQL service and make it a service¶
Execute the following command to restart the PostgreSQL service and enable automatic service startup.
5. Settings to allow external access to the database¶
- Uncomment the following two lines in /var/lib/pgsql/18/data/postgresql.conf and set them as follows.
# - Connection Settings -
listen_addresses = '*' # what IP address(es) to listen on;
port = 5432 # (change requires restart)
- Add the following lines to /var/lib/pgsql/18/data/pg_hba.conf. In the Address field, specify the range of IP addresses to allow access.
- After the settings, run the following command to restart the PostgreSQL service.
2. Set up MySQL¶
The steps to set up MySQL are as follows.
(Click here to open/close the details)
1. Install MySQL¶
- Run the following command to install the MySQL package and server.
sudo dnf install -y https://dev.mysql.com/get/mysql84-community-release-el9-1.noarch.rpm
sudo dnf install mysql-community-server
The URL specified in the command is the same as the URL specified in the official repository below.
https://dev.mysql.com/downloads/repo/yum/
- Execute the command to display the status of the service.
- Confirm that the service is stopped by displaying the message "Active: inactive (dead)" as shown below.
○ mysqld.service - MySQL Server
Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; preset: disabled)
Active: inactive (dead)
Docs: man:mysqld(8)
http://dev.mysql.com/doc/refman/en/using-systemd.html
2. Enable automatic startup of MySQL service¶
- Run the following command to start the MySQL service.
- Run the following command to enable automatic startup of MySQL service.
3. Set MySQL user¶
- Add the following setting under [mysqld] in /etc/my.cnf.
The path of the configuration file may differ depending on the OS or MySQL version.
- Run the following command to restart the MySQL service.
- Run the following command to log in to MySQL with the root account (without password).
- Run the following SQL to set the password for the MySQL root account.
flush privileges;
alter user 'root'@'localhost' identified by '<New password for MySQL root account※>';
*The default settings for MySQL installed in this procedure require a password that is 8 characters or more, and contains uppercase letters, lowercase letters, numbers, and special characters.
- Run the following command to log out of the root account from MySQL.
- Delete the description added under [mysqld] in /etc/my.cnf. Do not delete [mysqld].
- Execute the following command to restart the MySQL service.
- Execute the following command to confirm that you can log in to MySQL with the root account.
- Execute the following command to log out of the root account from MySQL.
4. Set MySQL log output¶
Error log output is enabled by default in MySQL. If you do not want to change the default output destination, the following steps do not need to be performed.
- Check the path of the log file listed in log-error under [mysqld] in /etc/my.cnf.
The path of the configuration file may differ depending on the OS or MySQL version.
- If you want to change the output destination of the error log, edit the my.cnf file and then run the following command to restart the MySQL service.
5. Settings for Allowing External Access to the Database¶
Follow the steps in the manual below to add a MySQL user:
・Configure the Web Server and DB Server to Use MySQL Separately
If the web server and the database server are not separated, this step is unnecessary.
3. Install the Installer¶
Run the following command to install the installer. To install Pleasanter version 1.5.0.0 or later, please use the latest installer.
(If you are installing Pleasanter version 1.4.23.0 or earlier, please refer to this page)
dotnet tool install -g Implem.PleasanterSetup
echo 'export PATH="$PATH:~/.dotnet/tools"' >> ~/.bashrc
echo 'export DOTNET_ROOT=/usr/local/bin' >> ~/.bashrc
echo 'export PATH=$PATH:$DOTNET_ROOT' >> ~/.bashrc
source ~/.bashrc
If you are not connected to a network environment, install it using the following procedure.¶
(Click here to open/close the details)
-
Open the Nuget Gallery for Implem.PleasanterSetup from here and download the .nupkg file from “Download package”.

-
Run the command below to create a folder of your choice to place the .nupkg file.
*This procedure explains how to create /dotnet-tools.
-
Place the .nupkg file downloaded in 3.1 in /dotnet-tools.
- Run the following command to install the installer.
4. Pleasanter Setup¶
1. Run the Installer¶
By using the installer, the latest version resources are automatically downloaded and the values of Service.json and Rds.json are automatically set based on the values entered.
The procedure when using PostgreSQL is as follows.¶
(Click here to open/close the details)
- Run the following command to run the installer.
If you are not connected to a network environment, please follow the steps below
(Click here to open/close the details)
-
Download the latest version of Pleasanter from the Download Center and place it in "/web/".
-
Execute the following command.
/web/ Make sure that the configuration under the directory is as follows.
/web/Pleasanter_1.4.x.x.zip
pleasanter-setup -r /web/Pleasanter_1.4.x.x.zip
-
Enter the directory where you want to install Pleasanter.
If you want to install it in "/web/pleasanter", leave it blank and press Enter.

-
Enter the service name.
If you are using "Implem.Pleasanter", leave it blank and press the Enter key.

-
Enter the number corresponding to the DBMS you are using.
Here, enter "2" and press the Enter key.

-
Enter the port number to be used.
If it is the default port number of the DBMS, leave it blank and press the Enter key.

-
Enter the value to be set for Server in the connection string.
If it is "localhost", leave it blank and press the Enter key.

-
Enter the value to be set for UID in SaConnectionString.
If it is "postgres", leave it blank and press the Enter key.

-
Enter the value to be set for PWD in SaConnectionString.
*The password will be displayed in a masked state.

-
Enter the value to be set for PWD in OwnerConnectionString.
*The password will be displayed in a masked state.

-
Enter the value to be set for PWD in UserConnectionString.
*The password will be displayed in a masked state.

-
Enter the "Default language".
Enter the number of the corresponding language.

-
Enter the time zone for "Default time zone".
Enter the number of the corresponding time zone.
*If you entered "3", enter the time zone available in the OS you are using.

-
The summary screen will be displayed.
If the entered values are correct, enter y after "Shall I install Pleasanter with this content? Please enter 'y(yes)' or 'n(no)'. : " and press Enter.
*The password is masked.

-
When "Type "y" (yes) if the license is correct, otherwise type "n" (no)" is displayed, enter y and execute.
-
When setup is complete, a web browser will launch and display the Enterprise Edition trial information page.
The procedure when using MySQL is as follows.¶
(Click here to open/close the details)
- Execute the following command to run the installer.
If you are not connected to a network environment, please follow the steps below
(Click here to open/close details)
-
Download the latest version of Pleasanter from the Download Center and place it in "/web/".
-
Execute the following command.
/web/ Make sure that the configuration under the directory is as follows.
/web/Pleasanter_1.4.x.x.zip
pleasanter-setup -r /web/Pleasanter_1.4.x.x.zip
-
Enter the directory where you want to install Pleasanter.
If you want to install it in "/web/pleasanter", leave it blank and press Enter.

-
Enter the service name.
If you want to install it in "Implem.Pleasanter", leave it blank and press Enter.

-
Enter the number that corresponds to the DBMS you want to use.
Here, enter "3" and press Enter.

-
Enter the port number to be used.
If you want to use the default port number for the DBMS, leave it blank and press Enter.

-
Enter the value to be set in Server in the connection string.
If you want to use "localhost", leave it blank and press Enter.

-
Enter the value to be set in UID of SaConnectionString.
If you want to use "root", leave it blank and press Enter.

-
Enter the value to be set for PWD in SaConnectionString.
*The password will be displayed in a masked state.

-
Enter the value to be set for PWD in OwnerConnectionString.
*The password will be displayed in a masked state.

-
Enter the value to be set for PWD in UserConnectionString.
*The password will be displayed in a masked state.

-
Enter the "Default language".
Enter the number of the corresponding language.

-
Enter the "Default time zone".
Enter the number of the corresponding time zone.
*If you entered "3", enter a time zone that can be used with the OS you are using.

-
The summary screen will be displayed.
If the entered values are correct, enter y after "Shall I install Pleasanter with this content? Please enter ‘y(yes)' or 'n(no)'. : " and press Enter to execute.
*Password is masked.

-
When "Type "y" (yes) if the license is correct, otherwise type "n" (no)" is displayed, enter y and execute.
-
When setup is complete, a web browser will launch and display the Enterprise Edition trial information page.
2. Check that Pleasanter is running¶
- Run the following command to start Pleasanter with a predefined user.
cd /web/pleasanter/Implem.Pleasanter
sudo -u <User who will execute Pleasanter> /usr/local/bin/dotnet Implem.Pleasanter.dll
- While Pleasanter is running, run the following command in another terminal to check that Pleasanter is running. Exit with "Ctrl+C".
* Execute command
* Execution result
* Trying ::1:5000...
* Connected to localhost (::1) port 5000 (#0)
> GET / HTTP/1.1
> Host: localhost:5000
> User-Agent: curl/7.76.1
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 302 Found
< Content-Length: 0
< Date: Tue, 25 Jul 2023 11:33:38 GMT
< Server: Kestrel
< Location: http://localhost:5000/users/login?ReturnUrl=%2F
< X-Frame-Options: SAMEORIGIN
< X-XSS-Protection: 1; mode=block
< X-Content-Type-Options: nosniff
<
* Connection #0 to host localhost left intact
3. Create a script for the Pleasanter service¶
Create /etc/systemd/system/pleasanter.service with the following content. For User below, specify the user who will start Pleasanter.
[Unit]
Description = Pleasanter
Documentation =
Wants=network.target
After=network.target
[Service]
ExecStart = /usr/local/bin/dotnet Implem.Pleasanter.dll
WorkingDirectory = /web/pleasanter/Implem.Pleasanter
Restart = always
RestartSec = 10
KillSignal=SIGINT
SyslogIdentifier=dotnet-pleasanter
User = <User who launch Pleasanter>
Group = root
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false
[Install]
WantedBy = multi-user.target
4. Register as a service and start the service¶
Execute the following command to enable the Pleasanter service start and automatic service start.
5. Set Up a Reverse Proxy (nginx)¶
Set up the reverse proxy so that it can be accessed through Port 80, the same as a normal web server.
1. Change SELinux settings¶
Execute the following command.
a. If "Command 'getenforce' not found," "Permissive," or "Disabled" is displayed¶
Proceed to "2. Install nginx."
b. If "Enforcing" is displayed¶
Execute the following command.
*Changing the above boolean value of SELinux will allow all network connections by scripts and modules on the server in question.
2. Install nginx¶
Execute the following command to install nginx.
3. Reverse proxy settings¶
- Create /etc/nginx/conf.d/pleasanter.conf with the following contents. In the server_name line, specify the hostname or IP address of the server you want to access.
server {
listen 80;
server_name 192.168.1.100;
client_max_body_size 100M;
location / {
proxy_pass http://localhost:5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
2. After creating the file, run the following command to restart the service.
3. Permission to access Http(80)¶
Execute the following command to set permission to access Http (port:80) to allow clients to access the web service.
6. Check the operation of Pleasanter¶
-
After starting Pleasanter, enter "Login ID: Administrator" and "Initial password: pleasanter" on the Pleasanter login screen and click the "Login" button.

-
After logging in, you will be asked to change the "Administrator" user password, so enter a password of your choice and click the "Change" button.

If redirection is not correct¶
Check that your nginx settings are correct. Small differences such as the presence or absence of / in the description may affect operation.
If the Pleasanter screen does not open¶
If the above steps were completed without any errors, but a page such as "Welcome to nginx!" (not an error message) is displayed when you access the page in a browser, the security settings of the browser may be preventing you from transitioning to the Pleasanter login screen.
Please check the security settings of your browser.
Supported Versions¶
| Supported versions | Body |
|---|---|
| 1.4.9.0 and later | Supports MySQL |
| 1.4.10.0 and later | Fixed the issue where Owner and User connections were rejected due to MySQL's access control function *Added a link to "Configure the Web Server and DB Server to Use MySQL Separately" in the notes |
| 1.5.0.0 and later | Compatible with PostgreSQL 18 |
Related Information¶
FAQ: I want to install Pleasanter 1.3.43.0 or earlier in a Linux environment



