Search found 41 matches

by manoj99
12 Jul 2021, 19:46
Forum: Help
Topic: importing tickets to CSV File
Replies: 4
Views: 868

Re: importing tickets to CSV File

Great. Thanks for providing the info
by manoj99
09 Jul 2021, 18:09
Forum: Help
Topic: importing tickets to CSV File
Replies: 4
Views: 868

Re: importing tickets to CSV File

Do we have that in OTRS V5. I don't see any module in OTRS Admin page or am I missing something?

Can you please send any references pertaining to it for OTRS V5.

M.
by manoj99
06 Jul 2021, 20:44
Forum: Help
Topic: importing tickets to CSV File
Replies: 4
Views: 868

importing tickets to CSV File

Hi,

I'm trying to import OTRS V5 tickets to CSV File. Is there any command that can run through OTRS Admin Console or is that done through SQL query.

Please let me know your inputs.

Thanks,
M.
by manoj99
12 Apr 2021, 21:27
Forum: Help
Topic: OTRS temp files permissions
Replies: 2
Views: 1355

Re: OTRS temp files permissions

Hi Roy, I changed apache to be the primary group of otrs user but still see the write permissions error on /opt/otrs/var/tmp/CacheFileStorable/*/* [root@hostname]# id apache uid=297(apache) gid=394(apache) groups=394(apache),48(apache) [root@hostnamef]# id otrs uid=1343(otrs) gid=394(apache) groups=...
by manoj99
12 Apr 2021, 17:59
Forum: Help
Topic: OTRS 5 shm error log
Replies: 8
Views: 2475

Re: OTRS 5 shm error log

Thank you Roy. That should help.
by manoj99
12 Apr 2021, 17:56
Forum: Help
Topic: OTRS temp files permissions
Replies: 2
Views: 1355

OTRS temp files permissions

Hello, I'm currently running OTRS 5 on CentOS + mod_perl + httpd + SeLinux enabled. I have been getting permissions issues Can't write /opt/otrs/var/tmp/CacheFileStorable/User/4/3/43756e2a56122933ea501d9067d74c58 if the user permissions are otrs:apache then it is able to write but the permissions ch...
by manoj99
12 Apr 2021, 17:44
Forum: Help
Topic: OTRS 5 shm error log
Replies: 8
Views: 2475

Re: OTRS 5 shm error log

Hi Roy,

Sorry for the trouble, Like what in general do you mean by SeLinux profile. Is it a local policy?

Can you provide an example.

Thanks,
M
by manoj99
08 Apr 2021, 21:21
Forum: Help
Topic: OTRS 5 shm error log
Replies: 8
Views: 2475

Re: OTRS 5 shm error log

Hi Roy,

So with SeLinux enabled, how would we create a profile or what exact label and which specific dir path should have it for share memory?

Thanks,
M
by manoj99
26 Mar 2021, 19:50
Forum: Help
Topic: OTRS 5 shm error log
Replies: 8
Views: 2475

Re: OTRS 5 shm error log

Hi Roy, Thanks for the reply. I'm acutally looking for a permanent sol than just setting it to permissive. However, I couldn't find any SeLinux denials messages with journalctl -t setroubleshoot. Would like to know if that's a bug in OTRS with SeLinux enabled for shared memory or something else. Tha...
by manoj99
23 Mar 2021, 18:30
Forum: Help
Topic: OTRS 5 shm error log
Replies: 8
Views: 2475

OTRS 5 shm error log

Hello, We recently migrate our OTRS application to CentOS 7 from SUSE 11. Our new environment stack - CentOS 7 + SeLinux + httpd + mod_perl. I have recently found that, when a system reboot occurs, we see the below error on logs which would in turn make system log, Agents, Groups and Fetch Mail stop...
by manoj99
10 Dec 2020, 17:41
Forum: General
Topic: OTRS Ticket Size
Replies: 5
Views: 1232

Re: OTRS Ticket Size

Hi Emin,

I was able to retrieve the size per year through a similar query

Code: Select all

select extract(year from create_time) YEAR ,SUM((length(content)/1024/1024)) SIZEINMB FROM article_attachment GROUP BY extract(year from create_time);
Thanks,
Manoj.
by manoj99
09 Dec 2020, 21:53
Forum: General
Topic: OTRS Ticket Size
Replies: 5
Views: 1232

Re: OTRS Ticket Size

Hi Emin,

We store Articles in DB

Thanks,
Manoj.
by manoj99
09 Dec 2020, 18:23
Forum: General
Topic: OTRS Ticket Size
Replies: 5
Views: 1232

OTRS Ticket Size

Hi all,

Is there any way we could search the Ticket's size for an year.

Let say, if I wanted to know the Tickets for 2020. Can I get tickets size for that particular year from OTRS Admin interface or from cli.

Any help is appreciated.

Thanks,
Manoj.
by manoj99
26 Oct 2020, 21:41
Forum: General
Topic: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS
Replies: 9
Views: 3054

Re: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS

Manoj, I just checked your post again and have some questions: 1.) You wrote "Also, I see /opt/otrs/var/article filled with all the attachments." and I assume the data was properly migrated. 2.) When you said "I noticed that the Article table was shrunk drastically but not the articl...
by manoj99
26 Oct 2020, 21:28
Forum: General
Topic: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS
Replies: 9
Views: 3054

Re: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS

Permissions should only be set with the otrs.SetPermissions.pl script unless you know you're doing. Don't change the Config.pm. Use the system configuration instead for these kinds of settings. StorageModule is for new articles. Even if set wrong, it wouldn't explain why the articles don't move whe...
by manoj99
26 Oct 2020, 21:21
Forum: General
Topic: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS
Replies: 9
Views: 3054

Re: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS

Hi Manoj, What is the output if you just start migrating old tickets: bin/otrs.Console.pl Admin::Article::StorageSwitch --tickets-closed-before-days 1000 --target ArticleStorageFS --tolerant Please adjust the 1000 to a value what matches your system. - Roy Hi Roy, I have executed the script you men...
by manoj99
26 Oct 2020, 20:02
Forum: General
Topic: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS
Replies: 9
Views: 3054

Re: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS

Thanks Emin for the response. I have 750 permissions on /opt/otrs/var with otrs as user and apache as the group On article folder I have sticky bit.. so seems like the permissions are fine. Like I mentioned earlier, the debug statement mentions ArticleStorageDB, though I have given ArticleStorageFS ...
by manoj99
26 Oct 2020, 18:24
Forum: General
Topic: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS
Replies: 9
Views: 3054

Re: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS

Hi, I retried to move Article Storage from ArticleStorageDB to ArticleStorageFS using the following script by cleaning up the previously moved articles. shell> bin/otrs.Console.pl Admin::Article::StorageSwitch --target ArticleStorageFS. I have mentioned below modules in config.pm and the GUI sysconf...
by manoj99
25 Sep 2020, 18:34
Forum: General
Topic: OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS
Replies: 9
Views: 3054

OTRS V5 Ticket::StorageModule Migration from ArticleStorageDB to ArticleStorageFS

Hello, I'm trying to migrate Article Storage from DB to FS and I ran the below script shell> bin/otrs.Console.pl Admin::Article::StorageSwitch --target ArticleStorageFS It took my almost half a day to get this script done. However, I noticed that, the Article table was shrunk drastically but not the...
by manoj99
24 Aug 2020, 22:24
Forum: Help
Topic: OTRS Upgrade v5 to v6
Replies: 0
Views: 12002

OTRS Upgrade v5 to v6

Our current stack is as follows - CentOS 7.8 with Oracle 19c version. We had issues migrating from v5 to v6 and we fixed them for the migration to complete: 1. LOB extension 2. uncomment Timzone in /opt/otrs/scripts/DBUpdateTo6/TaskConfig/MigrateTimeZoneConfiguration.yml 3. rename triggers and seque...
by manoj99
03 Aug 2020, 23:07
Forum: Help
Topic: Perl Modules
Replies: 3
Views: 1721

Re: Perl Modules

Thank you. I was able to compile the DataTime::TimeZone but the perl modules still shows missing on the support data collector though I have cleaned the cache using bin/otrs.Console.pl Maint::Cache::Delete I have attached screenshots for ref where it shows I have everything needed on the box but sho...
by manoj99
30 Jul 2020, 17:16
Forum: Help
Topic: Perl Modules
Replies: 3
Views: 1721

Perl Modules

Hello, I've recently installed OTRS V6. When I run the CheckModules.pl from the cli , I see all the required perl modules are installed but The support data collector on admin page shows missing perl modules though I have compiled modules and installed locally on the box. I suspect I'm missing some ...
by manoj99
11 May 2020, 15:24
Forum: General
Topic: MailAccountFetch
Replies: 2
Views: 1095

Re: MailAccountFetch

Thanks Flo. That worked.
by manoj99
24 Apr 2020, 18:31
Forum: General
Topic: Module FAQ Error
Replies: 7
Views: 2159

Re: Module FAQ Error

Hello Emin,

I tried installing and installing the FAQ Module but still throws an error even after running Cache Delete and Rebuild after uninstalling.

2. I dont have any SysConfig for FAQAcces/FAQ.

Please advice

Thanks,
M.
by manoj99
17 Apr 2020, 20:00
Forum: General
Topic: MailAccountFetch
Replies: 2
Views: 1095

MailAccountFetch

Hello, By any chance is there a way to change the MailAccountFetch Daemon execution time. I know its for every 10 minutes by default, but wanted it for every 5 minutes. And Also I noticed that it is not fetching emails which are arrived until 6th minute per execution period. For instance, if its bet...
by manoj99
17 Apr 2020, 18:52
Forum: General
Topic: Kernel Version
Replies: 8
Views: 2376

Re: Kernel Version

I was missing including /usr/bin in envt variable under /etc/sysconfig/httpd for apache to access the OS Libraries.

Thanks everyone and sorry for updating so late.

Best,
M.
by manoj99
03 Apr 2020, 17:45
Forum: General
Topic: Module FAQ Error
Replies: 7
Views: 2159

Re: Module FAQ Error

Hello Mano, Try to execute this command as the OTRS user: /opt/otrs/bin/otrs.Console.pl Maint::Config::Rebuild --cleanup and restart the web server. Best regards Emin Edit: Just saw that you're using OTRS 5. Try to remove the parameter. Hello Emin, I have tried using without parameter, but I still ...
by manoj99
31 Mar 2020, 18:37
Forum: General
Topic: Module FAQ Error
Replies: 7
Views: 2159

Re: Module FAQ Error

Thanks for the response. Its still the same. I have ran the command and deleted the binary files that are being created by apache. But stilll I find that in logs. Is there anything else that I can try. FYI, command - bin/otrs.Console.pl Maint::Config::Rebuild --cleanup-user-config for V5 OTRS. Best,...
by manoj99
31 Mar 2020, 16:09
Forum: Help
Topic: FAQ Module Error
Replies: 0
Views: 1350

FAQ Module Error

Hello, I wanted to completely get rid of FAQ Module so I have uninstalled FAQ Package from the admin page which also said that it deletes the tables. But, even after deleting the cache from otrs shell (bin/otrs.Console.pl Maint::Cache::Delete) and restarting the apache ,I still see the error in my o...
by manoj99
31 Mar 2020, 16:07
Forum: Help
Topic: shm error
Replies: 1
Views: 481

shm error

Hello, Im currently running OTRS 5 with SeLinux enabled on CentOS. When I visit Agents ,Groups, Roles I have this error popping up on the OTRS Admin page. Can't use an undefined value as a SCALAR reference at /opt/otrs//Kernel/Output/HTML/Layout.pm line 1651. and in the otrs logs I see this --> [Err...
by manoj99
31 Mar 2020, 15:18
Forum: General
Topic: Module FAQ Error
Replies: 7
Views: 2159

Module FAQ Error

Hello, I wanted to completely get rid of FAQ Module so I have uninstalled FAQ Package from the admin page which also said that it deletes the tables. But, even after deleting the cache from otrs shell (bin/otrs.Console.pl Maint::Cache::Delete) and restarting the apache ,I still see the error in my o...
by manoj99
28 Mar 2020, 18:26
Forum: General
Topic: OTRS 5 shm error
Replies: 0
Views: 1442

OTRS 5 shm error

Hello, I'm currently running OTRS 5 with SeLinux enabled on CentOS7. When I visit Agents ,Groups, Roles I have this error popping up on the OTRS Admin page. Can't use an undefined value as a SCALAR reference at /opt/otrs//Kernel/Output/HTML/Layout.pm line 1651. and in the otrs logs I see this --> [E...
by manoj99
04 Mar 2020, 16:52
Forum: General
Topic: OTRS 5 & 6 EOL
Replies: 7
Views: 3700

Re: OTRS 5 & 6 EOL

Thanks for your response.
by manoj99
04 Mar 2020, 15:31
Forum: General
Topic: OTRS 5 & 6 EOL
Replies: 7
Views: 3700

OTRS 5 & 6 EOL

Hello,

When is OTRS v5 and OTRS v6 EOL ?

Thanks,
Manoj
by manoj99
07 Feb 2020, 15:32
Forum: Developers
Topic: Regex
Replies: 4
Views: 2345

Re: Regex

Yes, under /opt/otrs , the directory permissions are 750 and files has 640 with otrs as an user and apache as a admin and webgroup. So, I think OTRS is happy with the permissions.

All I need is a solution for the use case mentioned above.
by manoj99
06 Feb 2020, 23:29
Forum: Developers
Topic: Regex
Replies: 4
Views: 2345

Re: Regex

Thanks for the reply Emin. thats actually a good solution but Im setting up SeLinx labels: For, Home dir (/opt/otrs) it needs sys_content(read only) excluding some folders under /opt/otrs/var that needs rw_content and .pl files that need exec permissions. So, if I use skip-regex that would intent to...
by manoj99
06 Feb 2020, 20:05
Forum: Developers
Topic: Regex
Replies: 4
Views: 2345

Regex

Hello, I'm trying to develop a simple if condition clause for my otrs.SetPermissions.pl file so that it would set permissions for /opt/otrs/ exlucding or ignoring few paths i.e /opt/otrs/scripts /opt/otrs/var/tmp/Article /opt/otrs/var/tmp/Ticket .. .. or may be passing a variable that matches to ign...
by manoj99
24 Jan 2020, 18:06
Forum: General
Topic: Kernel Version
Replies: 8
Views: 2376

Re: Kernel Version

Im using CentOS7 with SeLinux on permissive mode(dealing with Permissions to get it on enforcing mode simultaneously). Current folder permissions, drwxr-x---. otrs apache system_u:object_r:httpd_sys_content_t:s0 Custom drwxr-x---. otrs apache system_u:object_r:httpd_sys_content_t:s0 doc drwxr-x---. ...
by manoj99
23 Jan 2020, 23:17
Forum: General
Topic: Kernel Version
Replies: 8
Views: 2376

Re: Kernel Version

Those two commands were able to execute from the shell. When I clicked on Support Data Collector from the OTRS Admin page, I see these logs on apache Can't exec "df": No such file or directory at /opt/otrs//Kernel/System/SupportDataCollector/Plugin/OS/DiskSpacePartitions.pm line 41. -e: Ca...
by manoj99
22 Jan 2020, 23:34
Forum: General
Topic: Kernel Version
Replies: 8
Views: 2376

Re: Kernel Version

Yes. But, how do we get that info from . Should we have some perl module or configure anything at OS level or within OTRS source code ? If so, where exactly should we do that to get that info
by manoj99
22 Jan 2020, 16:43
Forum: General
Topic: Kernel Version
Replies: 8
Views: 2376

Kernel Version

Hello,

How can we load Kernel Version in Operating System section for DataSupportCollector for OTRS v6? In other words, what part of the source code has to be manipulated to fetch Kernel Version details.

Thanks,
Manoj.